A curated collection of ready-to-use Make.com automations designed to help you automate content creation, social media, Shopify, AI workflows, lead generation, and more. Each recipe includes step-by-step instructions, JSON blueprints, and beginner-friendly explanations so you can deploy powerful automations in minutes . not hours.
git clone https://github.com/cporter202/make-com-automation-recipes.gitMake.com Automation Recipes is a curated collection of pre-built automations designed to streamline marketing and business workflows. Each recipe includes step-by-step instructions, JSON blueprints, and beginner-friendly explanations for quick deployment. The collection covers content creation, social media automation, Shopify integration, AI workflows, and lead generation. Users can deploy powerful automations in minutes without requiring advanced technical knowledge. This skill is ideal for marketers, e-commerce operators, and business teams looking to save time on repetitive tasks.
[{"step":"Identify Your Goal","action":"Decide what you want to automate (e.g., 'auto-post Shopify product updates to Instagram'). Use the prompt template to generate a customized recipe request.","tip":"Start with a single workflow (e.g., lead capture to CRM) before combining multiple steps."},{"step":"Copy-Paste the JSON Blueprint","action":"Paste the provided JSON into Make.com’s scenario editor. Replace all placeholder values (e.g., spreadsheet IDs, API keys) with your actual credentials.","tip":"Use Make.com’s 'Import Scenario' feature to avoid manual JSON entry."},{"step":"Configure Connections","action":"Authorize Make.com to access the required platforms (e.g., Google Sheets, LinkedIn, Shopify) via OAuth or API keys. Test each connection individually.","tip":"Use Make.com’s 'Test' button after each module to verify connectivity."},{"step":"Customize the Workflow","action":"Adjust the JSON blueprint or scenario steps to fit your specific needs (e.g., change the AI prompt, modify scheduling times, or add error-handling paths).","tip":"Use Make.com’s 'Run Once' feature to test small batches before automating live data."},{"step":"Deploy and Monitor","action":"Activate the scenario and monitor the first few runs in Make.com’s 'Executions' tab. Check the output logs for errors and adjust as needed.","tip":"Set up Make.com’s error notifications to alert you via email or Slack if the scenario fails."}]
Automate social media posting and content distribution across multiple platforms
Create AI-powered content workflows for marketing campaigns
Automate Shopify product updates and order management
Generate and qualify leads with automated workflows
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/cporter202/make-com-automation-recipesCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I need a Make.com automation recipe to [GOAL]. The recipe should include [SPECIFIC_TOOLS_OR_PLATFORMS], handle [KEY_DATA_POINTS], and trigger on [EVENT_OR_CONDITION]. Provide the JSON blueprint, step-by-step instructions, and a brief explanation of how it works. Focus on [BEGINNER_FRIENDLY_OR_ADVANCED] implementation.
Here’s a ready-to-deploy Make.com automation recipe to **automatically create and schedule LinkedIn posts from a Google Sheet** every Monday at 9 AM. This recipe pulls content ideas, images, and hashtags from a Google Sheet, formats them into a polished LinkedIn post using AI (via Make’s built-in AI tools), and schedules the post using LinkedIn’s native scheduler. It also logs the post metadata (e.g., scheduled time, engagement metrics) back into the Google Sheet for tracking.
**JSON Blueprint (Copy-Paste into Make.com):**
```json
{
"scenario": {
"name": "LinkedIn Post Scheduler from Google Sheet",
"modules": [
{
"id": "1",
"type": "google-sheets",
"operation": "get",
"spreadsheet_id": "[YOUR_SPREADSHEET_ID]",
"range": "A:D",
"options": {
"header_row": 1
}
},
{
"id": "2",
"type": "ai",
"model": "gpt-4",
"prompt": "Format the following LinkedIn post content into a professional, engaging post. Include emojis and 3-5 relevant hashtags. Content: {{1.text}} {{1.image_url}} {{1.hashtags}}"
},
{
"id": "3",
"type": "linkedin",
"operation": "schedule_post",
"content": "{{2.output}}",
"scheduled_time": "{{formatDateTime(addDays(now; 1); 'yyyy-MM-dd')T09:00:00Z')}"
},
{
"id": "4",
"type": "google-sheets",
"operation": "append",
"spreadsheet_id": "[YOUR_SPREADSHEET_ID]",
"range": "E:F",
"values": [
["{{3.post_id}}", "{{formatDateTime(now; 'yyyy-MM-dd HH:mm')}}"]
]
}
]
}
}
```
**Step-by-Step Instructions:**
1. **Set Up Google Sheet**: Create a sheet with columns for `text`, `image_url`, `hashtags`, and `status` (e.g., "Pending", "Posted").
2. **Add Make.com Scenario**: Paste the JSON blueprint into Make.com’s scenario editor. Replace `[YOUR_SPREADSHEET_ID]` with your actual Google Sheet ID.
3. **Configure AI Module**: Ensure your Make.com account has access to the AI module (GPT-4 or similar). Adjust the AI prompt if needed.
4. **Connect LinkedIn**: Authorize Make.com to post to your LinkedIn page via the LinkedIn module.
5. **Test & Schedule**: Run a test post to verify the workflow, then set the scenario to run weekly (e.g., every Monday at 9 AM).
**How It Works:**
- The scenario starts by fetching new rows from the Google Sheet where `status = "Pending"`.
- The AI module formats the raw content into a polished LinkedIn post.
- The post is scheduled using LinkedIn’s API, and the `post_id` + timestamp are logged back into the sheet.
- The `status` column auto-updates to "Posted" (you can add a webhook to trigger this if needed).
**Pro Tip**: Add a filter module after the Google Sheets step to only process rows where `status = "Pending"`. This avoids reprocessing old posts.Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan