Make.com — Visual Workflow Automation Platform

You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.

25 stars

Best use case

Make.com — Visual Workflow Automation Platform is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.

Teams using Make.com — Visual Workflow Automation Platform should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/make-com/SKILL.md --create-dirs "https://raw.githubusercontent.com/ComeOnOliver/skillshub/main/skills/TerminalSkills/skills/make-com/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/make-com/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Make.com — Visual Workflow Automation Platform Compares

Feature / AgentMake.com — Visual Workflow Automation PlatformStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Make.com — Visual Workflow Automation Platform

You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.

## Core Capabilities

### Scenario Building

```markdown
## Scenario Structure

Make.com scenarios are visual flowcharts:
- **Trigger**: Starts the scenario (webhook, schedule, app event)
- **Module**: Performs an action (read/write data in an app)
- **Router**: Splits flow into conditional branches
- **Iterator**: Processes array items one by one
- **Aggregator**: Collects multiple items into one output
- **Filter**: Conditionally passes or blocks data between modules

## Example: Invoice Processing Pipeline

[Gmail Trigger: New email with attachment]
    → [Filter: subject contains "invoice"]
    → [Google Drive: Upload attachment]
    → [OpenAI: Extract invoice data from PDF]
    → [Router]
        ├→ [Filter: amount > $1000] → [Slack: Notify #finance for approval]
        └→ [Filter: amount ≤ $1000] → [QuickBooks: Create bill] → [Slack: Confirm processed]
```

### Data Mapping

```markdown
## Mapping Syntax

Make.com uses double curly braces for dynamic values:
- {{1.email}} — Email from module 1
- {{2.body.amount}} — Amount from module 2's response
- {{formatDate(1.date; "YYYY-MM-DD")}} — Format a date
- {{if(1.status = "active"; "Yes"; "No")}} — Conditional value
- {{parseJSON(1.body)}} — Parse JSON string
- {{length(1.items)}} — Count items in array
- {{substring(1.name; 0; 50)}} — First 50 characters

## Built-in Functions
- Text: replace, lower, upper, trim, split, md5, sha256
- Math: round, ceil, floor, min, max, sum, average
- Date: addDays, addMonths, formatDate, parseDate, now
- Array: map, sort, slice, merge, distinct, contains
```

### HTTP Module (Custom APIs)

```markdown
## Custom API Integration

Module: HTTP → Make a Request

URL: https://api.example.com/orders
Method: POST
Headers:
  Authorization: Bearer {{connection.api_key}}
  Content-Type: application/json
Body:
  {
    "customer_email": "{{1.email}}",
    "items": {{1.items}},
    "total": {{1.total}}
  }
Parse Response: Yes
```

### Error Handling

```markdown
## Error Routes

Every module can have an error handler route:
[Module] → 🔴 [Error Handler]

Error handler types:
- **Resume**: Continue with default values
- **Rollback**: Undo all changes in the scenario
- **Commit**: Save progress, stop execution
- **Break**: Pause and retry later (with backoff)
- **Ignore**: Skip the failed item, continue with next

## Incomplete Executions
Make.com saves failed executions for manual retry.
Dashboard shows: which module failed, the input data, the error message.
Click "Resolve" to fix data and re-run from the failed step.
```

## Installation

```markdown
# No installation — browser-based
# https://make.com

# Pricing
- Free: 1,000 operations/month
- Core: $10.59/month (10,000 operations)
- Pro: $18.82/month (10,000 operations + advanced features)
```

## Best Practices

1. **Start with the trigger** — Every scenario needs one trigger module; choose between instant (webhook) and scheduled (polling)
2. **Routers for branching** — Use routers with filters for conditional logic; each branch runs independently
3. **Error handling on every module** — Add error routes for critical modules; use "Break" for retryable failures
4. **Data stores for state** — Use Make.com's built-in data stores for tracking processed items and workflow state
5. **Iterators for arrays** — When an API returns an array, use an iterator to process each item; don't try to handle arrays in a single module
6. **HTTP module for custom APIs** — Any API not in the 1,500+ app catalog can be called via the HTTP module
7. **Scenario blueprints** — Export scenarios as JSON blueprints; share with team members or import to other accounts
8. **Execution history** — Make.com logs every execution with full data flow; use it for debugging and auditing

Related Skills

neurodivergent-visual-org

25
from ComeOnOliver/skillshub

Creates ADHD-friendly visual organizational tools using Mermaid diagrams optimized for neurodivergent thinking patterns. Auto-detects overwhelm, provides compassionate task breakdowns with realistic time estimates. Use when creating visual task breakdowns, decision trees, or organizational diagrams for neurodivergent users or accessibility-focused projects. Trigger with 'neurodivergent', 'visual', 'org'.

n8n-workflow-generator

25
from ComeOnOliver/skillshub

N8N Workflow Generator - Auto-activating skill for Business Automation. Triggers on: n8n workflow generator, n8n workflow generator Part of the Business Automation skill category.

makefile-generator

25
from ComeOnOliver/skillshub

Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.

make-scenario-creator

25
from ComeOnOliver/skillshub

Make Scenario Creator - Auto-activating skill for Business Automation. Triggers on: make scenario creator, make scenario creator Part of the Business Automation skill category.

jira-workflow-creator

25
from ComeOnOliver/skillshub

Jira Workflow Creator - Auto-activating skill for Enterprise Workflows. Triggers on: jira workflow creator, jira workflow creator Part of the Enterprise Workflows skill category.

google-sheets-automation

25
from ComeOnOliver/skillshub

Google Sheets Automation - Auto-activating skill for Business Automation. Triggers on: google sheets automation, google sheets automation Part of the Business Automation skill category.

building-gitops-workflows

25
from ComeOnOliver/skillshub

This skill enables Claude to construct GitOps workflows using ArgoCD and Flux. It is designed to generate production-ready configurations, implement best practices, and ensure a security-first approach for Kubernetes deployments. Use this skill when the user explicitly requests "GitOps workflow", "ArgoCD", "Flux", or asks for help with setting up a continuous delivery pipeline using GitOps principles. The skill will generate the necessary configuration files and setup code based on the user's specific requirements and infrastructure.

git-workflow-manager

25
from ComeOnOliver/skillshub

Git Workflow Manager - Auto-activating skill for DevOps Basics. Triggers on: git workflow manager, git workflow manager Part of the DevOps Basics skill category.

fathom-core-workflow-b

25
from ComeOnOliver/skillshub

Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".

fathom-core-workflow-a

25
from ComeOnOliver/skillshub

Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".

exa-core-workflow-b

25
from ComeOnOliver/skillshub

Execute Exa findSimilar, getContents, answer, and streaming answer workflows. Use when finding pages similar to a URL, retrieving content for known URLs, or getting AI-generated answers with citations. Trigger with phrases like "exa find similar", "exa get contents", "exa answer", "exa similarity search", "findSimilarAndContents".

exa-core-workflow-a

25
from ComeOnOliver/skillshub

Execute Exa neural search with contents, date filters, and domain scoping. Use when building search features, implementing RAG context retrieval, or querying the web with semantic understanding. Trigger with phrases like "exa search", "exa neural search", "search with exa", "exa searchAndContents", "exa query".