@intentsolutionsio/make-scenario-builder 1.0.0 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -12
- package/agents/make-expert.md +57 -1
- package/commands/make-builder.md +31 -18
- package/package.json +1 -1
- package/skills/skill-adapter/references/README.md +0 -1
- package/skills/skill-adapter/references/examples.md +6 -0
- package/skills/skill-adapter/scripts/validation.sh +0 -32
package/README.md
CHANGED
|
@@ -6,12 +6,12 @@ Create visual Make.com automation scenarios with AI assistance - perfect for no-
|
|
|
6
6
|
|
|
7
7
|
Make.com (formerly Integromat) is a powerful visual automation platform:
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
9
|
+
- **Visual Design** - See your entire workflow at a glance
|
|
10
|
+
- **1000+ Integrations** - Connect virtually any app
|
|
11
|
+
- **No-Code** - Build complex automations without coding
|
|
12
|
+
- **Powerful Features** - Routers, filters, error handlers
|
|
13
|
+
- **Affordable** - More cost-effective than Zapier
|
|
14
|
+
- **Scalable** - Handle complex multi-step workflows
|
|
15
15
|
- ️ **Built-in Error Handling** - Visual error routes
|
|
16
16
|
|
|
17
17
|
## FREE Alternative: Use n8n + Ollama (Self-Hosted)
|
|
@@ -34,6 +34,7 @@ Make.com (formerly Integromat) is a powerful visual automation platform:
|
|
|
34
34
|
### Why n8n + Ollama?
|
|
35
35
|
|
|
36
36
|
**n8n (Self-Hosted Automation)**:
|
|
37
|
+
|
|
37
38
|
- Visual workflow builder (same as Make.com)
|
|
38
39
|
- 400+ integrations (vs Make's 1000+, but covers 90% of use cases)
|
|
39
40
|
- Advanced error handling
|
|
@@ -41,6 +42,7 @@ Make.com (formerly Integromat) is a powerful visual automation platform:
|
|
|
41
42
|
- Open-source = community support
|
|
42
43
|
|
|
43
44
|
**Ollama (Local LLM)**:
|
|
45
|
+
|
|
44
46
|
- Runs Llama 3.2, Mistral, CodeLlama locally
|
|
45
47
|
- No API keys required
|
|
46
48
|
- Privacy-first (data never leaves your machine)
|
|
@@ -87,7 +89,7 @@ curl -fsSL https://ollama.com/install.sh | sh
|
|
|
87
89
|
ollama pull llama3.2
|
|
88
90
|
```
|
|
89
91
|
|
|
90
|
-
See
|
|
92
|
+
See ollama-local-ai plugin for detailed setup.
|
|
91
93
|
|
|
92
94
|
#### 3. Connect Ollama to n8n
|
|
93
95
|
|
|
@@ -140,12 +142,14 @@ Action: Google Sheets Add Row (n8n)
|
|
|
140
142
|
### Real Use Case: AI Email Assistant
|
|
141
143
|
|
|
142
144
|
#### Make.com + OpenAI Version
|
|
145
|
+
|
|
143
146
|
- Make.com Core: $9/mo
|
|
144
147
|
- OpenAI API: ~$30/mo (1000 emails)
|
|
145
148
|
- **Total: $39/mo**
|
|
146
149
|
|
|
147
150
|
#### n8n + Ollama Version
|
|
148
|
-
|
|
151
|
+
|
|
152
|
+
```text
|
|
149
153
|
// n8n HTTP Request Node
|
|
150
154
|
{
|
|
151
155
|
"method": "POST",
|
|
@@ -157,6 +161,7 @@ Action: Google Sheets Add Row (n8n)
|
|
|
157
161
|
}
|
|
158
162
|
}
|
|
159
163
|
```
|
|
164
|
+
|
|
160
165
|
- n8n (self-hosted): $0
|
|
161
166
|
- Ollama (local): $0
|
|
162
167
|
- **Total: $0/mo**
|
|
@@ -165,7 +170,8 @@ Action: Google Sheets Add Row (n8n)
|
|
|
165
170
|
|
|
166
171
|
### n8n Workflow Templates
|
|
167
172
|
|
|
168
|
-
**Available in
|
|
173
|
+
**Available in n8n-workflow-designer plugin:**
|
|
174
|
+
|
|
169
175
|
- AI email automation
|
|
170
176
|
- Lead scoring & routing
|
|
171
177
|
- Content distribution
|
|
@@ -185,12 +191,14 @@ Action: Google Sheets Add Row (n8n)
|
|
|
185
191
|
### When to Use Make.com vs n8n
|
|
186
192
|
|
|
187
193
|
**Use Make.com if:**
|
|
194
|
+
|
|
188
195
|
- You need 1000+ integrations (vs n8n's 400+)
|
|
189
196
|
- You prefer managed hosting (no DevOps)
|
|
190
197
|
- Your team is non-technical
|
|
191
198
|
- Budget allows $39-89/month
|
|
192
199
|
|
|
193
200
|
**Use n8n + Ollama if:**
|
|
201
|
+
|
|
194
202
|
- You want unlimited operations
|
|
195
203
|
- You need privacy/compliance (HIPAA, GDPR)
|
|
196
204
|
- You have basic Docker skills
|
|
@@ -199,9 +207,9 @@ Action: Google Sheets Add Row (n8n)
|
|
|
199
207
|
### Resources
|
|
200
208
|
|
|
201
209
|
- **n8n Docs:** [docs.n8n.io](https://docs.n8n.io)
|
|
202
|
-
- **Ollama Setup:** Use `/setup-ollama` command from
|
|
203
|
-
- **n8n Workflows:** Install
|
|
204
|
-
- **Migration Guide:**
|
|
210
|
+
- **Ollama Setup:** Use `/setup-ollama` command from ollama-local-ai plugin
|
|
211
|
+
- **n8n Workflows:** Install n8n-workflow-designer plugin
|
|
212
|
+
- **Migration Guide:** n8n vs Make.com
|
|
205
213
|
|
|
206
214
|
**Bottom Line:** If you're comfortable with Docker and want to save $468+/year, n8n + Ollama is the superior choice.
|
|
207
215
|
|
|
@@ -217,6 +225,7 @@ Action: Google Sheets Add Row (n8n)
|
|
|
217
225
|
## Features
|
|
218
226
|
|
|
219
227
|
### Scenario Design
|
|
228
|
+
|
|
220
229
|
- **Visual Workflows** - Clear module-by-module design
|
|
221
230
|
- **Routers & Filters** - Conditional logic and branching
|
|
222
231
|
- **Data Mapping** - Transform data between apps
|
|
@@ -225,12 +234,14 @@ Action: Google Sheets Add Row (n8n)
|
|
|
225
234
|
- **Aggregators** - Combine multiple items
|
|
226
235
|
|
|
227
236
|
### AI Integration
|
|
237
|
+
|
|
228
238
|
- **OpenAI** - Native GPT integration
|
|
229
239
|
- **Anthropic Claude** - Via HTTP module
|
|
230
240
|
- **Custom AI** - Connect any AI API
|
|
231
241
|
- **Prompt Design** - Optimized prompts included
|
|
232
242
|
|
|
233
243
|
### Module Types
|
|
244
|
+
|
|
234
245
|
- **Triggers** - Webhooks, scheduled, polling
|
|
235
246
|
- **Actions** - Create, update, search, delete
|
|
236
247
|
- **Tools** - Router, iterator, aggregator, filter
|
|
@@ -246,6 +257,7 @@ Action: Google Sheets Add Row (n8n)
|
|
|
246
257
|
## Example Scenarios
|
|
247
258
|
|
|
248
259
|
### 1. AI Email Assistant
|
|
260
|
+
|
|
249
261
|
```
|
|
250
262
|
Gmail Trigger → OpenAI Response → Send Reply → Log to Sheets
|
|
251
263
|
```
|
|
@@ -255,6 +267,7 @@ Gmail Trigger → OpenAI Response → Send Reply → Log to Sheets
|
|
|
255
267
|
**Setup Time:** 15 minutes
|
|
256
268
|
|
|
257
269
|
### 2. Lead Qualification
|
|
270
|
+
|
|
258
271
|
```
|
|
259
272
|
Webhook → AI Scoring → Router → [High/Medium/Low] → Actions
|
|
260
273
|
```
|
|
@@ -264,6 +277,7 @@ Webhook → AI Scoring → Router → [High/Medium/Low] → Actions
|
|
|
264
277
|
**Setup Time:** 20 minutes
|
|
265
278
|
|
|
266
279
|
### 3. Content Distribution
|
|
280
|
+
|
|
267
281
|
```
|
|
268
282
|
RSS Feed → AI Rewrite → Iterator → Post to Social Platforms
|
|
269
283
|
```
|
|
@@ -273,6 +287,7 @@ RSS Feed → AI Rewrite → Iterator → Post to Social Platforms
|
|
|
273
287
|
**Setup Time:** 25 minutes
|
|
274
288
|
|
|
275
289
|
### 4. Document Processing
|
|
290
|
+
|
|
276
291
|
```
|
|
277
292
|
Drive Trigger → OCR → AI Extract → Sheets Log → Email Summary
|
|
278
293
|
```
|
|
@@ -282,6 +297,7 @@ Drive Trigger → OCR → AI Extract → Sheets Log → Email Summary
|
|
|
282
297
|
**Setup Time:** 30 minutes
|
|
283
298
|
|
|
284
299
|
### 5. Support Automation
|
|
300
|
+
|
|
285
301
|
```
|
|
286
302
|
Ticket Created → AI Classify → Router → Route by Priority
|
|
287
303
|
```
|
|
@@ -293,18 +309,22 @@ Ticket Created → AI Classify → Router → Route by Priority
|
|
|
293
309
|
## Getting Started
|
|
294
310
|
|
|
295
311
|
### 1. Install the Plugin
|
|
312
|
+
|
|
296
313
|
```bash
|
|
297
314
|
/plugin install make-scenario-builder
|
|
298
315
|
```
|
|
299
316
|
|
|
300
317
|
### 2. Describe Your Scenario
|
|
318
|
+
|
|
301
319
|
```
|
|
302
320
|
I need to automatically process new Google Drive PDFs,
|
|
303
321
|
extract data with OCR, and log it to a spreadsheet.
|
|
304
322
|
```
|
|
305
323
|
|
|
306
324
|
### 3. Get Complete Design
|
|
325
|
+
|
|
307
326
|
The plugin provides:
|
|
327
|
+
|
|
308
328
|
- Visual workflow diagram
|
|
309
329
|
- Module-by-module configuration
|
|
310
330
|
- Data mapping instructions
|
|
@@ -313,6 +333,7 @@ The plugin provides:
|
|
|
313
333
|
- Cost estimates
|
|
314
334
|
|
|
315
335
|
### 4. Build in Make
|
|
336
|
+
|
|
316
337
|
1. Log into [make.com](https://make.com)
|
|
317
338
|
2. Create new scenario
|
|
318
339
|
3. Add modules as described
|
|
@@ -334,25 +355,31 @@ The plugin provides:
|
|
|
334
355
|
## Real-World Use Cases
|
|
335
356
|
|
|
336
357
|
### Agency: Client Onboarding
|
|
358
|
+
|
|
337
359
|
**Scenario:** New client signup → Create folders → Send contracts → Schedule calls → Update CRM
|
|
338
360
|
|
|
339
361
|
**Results:**
|
|
362
|
+
|
|
340
363
|
- Time saved: 3 hours per client
|
|
341
364
|
- Setup time: 45 minutes
|
|
342
365
|
- ROI: Positive after 1 client
|
|
343
366
|
|
|
344
367
|
### SaaS: User Activation
|
|
368
|
+
|
|
345
369
|
**Scenario:** New signup → Welcome email → Monitor usage → Trigger onboarding → Alert sales
|
|
346
370
|
|
|
347
371
|
**Results:**
|
|
372
|
+
|
|
348
373
|
- Activation rate: +18%
|
|
349
374
|
- Setup time: 1 hour
|
|
350
375
|
- Cost: $0.004 per user
|
|
351
376
|
|
|
352
377
|
### E-commerce: Order Fulfillment
|
|
378
|
+
|
|
353
379
|
**Scenario:** Order received → Inventory check → Payment processing → Fulfillment → Tracking
|
|
354
380
|
|
|
355
381
|
**Results:**
|
|
382
|
+
|
|
356
383
|
- Error reduction: 75%
|
|
357
384
|
- Setup time: 2 hours
|
|
358
385
|
- Payback: 2 weeks
|
|
@@ -374,6 +401,7 @@ The plugin provides:
|
|
|
374
401
|
## Best Practices
|
|
375
402
|
|
|
376
403
|
### Design Principles
|
|
404
|
+
|
|
377
405
|
1. **Start simple** - Build incrementally
|
|
378
406
|
2. **Use routers wisely** - Keep logic clear
|
|
379
407
|
3. **Add error handlers** - Always plan for failures
|
|
@@ -381,6 +409,7 @@ The plugin provides:
|
|
|
381
409
|
5. **Document scenarios** - Use Notes modules
|
|
382
410
|
|
|
383
411
|
### Performance Tips
|
|
412
|
+
|
|
384
413
|
1. **Filter early** - Reduce unnecessary operations
|
|
385
414
|
2. **Use aggregators** - Batch API calls
|
|
386
415
|
3. **Optimize data mapping** - Only map needed fields
|
|
@@ -388,6 +417,7 @@ The plugin provides:
|
|
|
388
417
|
5. **Schedule wisely** - Spread load across time
|
|
389
418
|
|
|
390
419
|
### Security
|
|
420
|
+
|
|
391
421
|
1. **Use connections** - Don't hardcode API keys
|
|
392
422
|
2. **Validate webhooks** - Verify request sources
|
|
393
423
|
3. **Limit data exposure** - Only map necessary fields
|
|
@@ -397,7 +427,9 @@ The plugin provides:
|
|
|
397
427
|
## Advanced Features
|
|
398
428
|
|
|
399
429
|
### Routers
|
|
430
|
+
|
|
400
431
|
Create conditional branches:
|
|
432
|
+
|
|
401
433
|
```
|
|
402
434
|
Input → Router
|
|
403
435
|
├─ High priority → Immediate action
|
|
@@ -406,20 +438,26 @@ Input → Router
|
|
|
406
438
|
```
|
|
407
439
|
|
|
408
440
|
### Iterators
|
|
441
|
+
|
|
409
442
|
Process arrays:
|
|
443
|
+
|
|
410
444
|
```
|
|
411
445
|
Get list of items → Iterator → Process each → Aggregate results
|
|
412
446
|
```
|
|
413
447
|
|
|
414
448
|
### Error Handlers
|
|
449
|
+
|
|
415
450
|
Graceful failure management:
|
|
451
|
+
|
|
416
452
|
```
|
|
417
453
|
API Call → [Success] → Continue
|
|
418
454
|
→ [Error] → Retry → Fallback → Notify
|
|
419
455
|
```
|
|
420
456
|
|
|
421
457
|
### Data Stores
|
|
458
|
+
|
|
422
459
|
Temporary storage:
|
|
460
|
+
|
|
423
461
|
```
|
|
424
462
|
Store data → Process → Retrieve → Continue workflow
|
|
425
463
|
```
|
|
@@ -429,18 +467,23 @@ Store data → Process → Retrieve → Continue workflow
|
|
|
429
467
|
### Common Issues
|
|
430
468
|
|
|
431
469
|
**"Not enough operations"**
|
|
470
|
+
|
|
432
471
|
- Solution: Upgrade plan or optimize scenario
|
|
433
472
|
|
|
434
473
|
**"Connection error"**
|
|
474
|
+
|
|
435
475
|
- Solution: Reauthorize app connection
|
|
436
476
|
|
|
437
477
|
**"Data mapping error"**
|
|
478
|
+
|
|
438
479
|
- Solution: Check field names and data types
|
|
439
480
|
|
|
440
481
|
**"Timeout error"**
|
|
482
|
+
|
|
441
483
|
- Solution: Reduce batch size or add delays
|
|
442
484
|
|
|
443
485
|
**"Incomplete execution"**
|
|
486
|
+
|
|
444
487
|
- Solution: Review error logs and add error handlers
|
|
445
488
|
|
|
446
489
|
## Requirements
|
|
@@ -463,6 +506,7 @@ MIT - See LICENSE file
|
|
|
463
506
|
## Contributing
|
|
464
507
|
|
|
465
508
|
Contributions welcome! Submit PRs with:
|
|
509
|
+
|
|
466
510
|
- New scenario templates
|
|
467
511
|
- Module configurations
|
|
468
512
|
- Use case examples
|
package/agents/make-expert.md
CHANGED
|
@@ -1,11 +1,39 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: make-expert
|
|
3
3
|
description: Expert Make.com scenario designer for visual automation
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
15
|
+
model: sonnet
|
|
16
|
+
color: green
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- ai-agency
|
|
21
|
+
- make
|
|
22
|
+
disallowedTools: []
|
|
23
|
+
skills: []
|
|
24
|
+
background: false
|
|
25
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
26
|
+
# effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
|
|
27
|
+
# maxTurns: 50 # cap the agentic loop (omit = engine default)
|
|
28
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
29
|
+
# isolation: worktree # run in an isolated git worktree
|
|
30
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
31
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
4
32
|
---
|
|
5
|
-
|
|
6
33
|
# Make.com Scenario Expert
|
|
7
34
|
|
|
8
35
|
You are an expert Make.com (formerly Integromat) scenario designer who helps build visual automation workflows. Make.com excels at:
|
|
36
|
+
|
|
9
37
|
- Visual workflow design
|
|
10
38
|
- Rich app integrations (1000+)
|
|
11
39
|
- Powerful data mapping
|
|
@@ -21,6 +49,7 @@ Help design their Make scenario with these capabilities:
|
|
|
21
49
|
Make scenarios consist of modules connected by routes:
|
|
22
50
|
|
|
23
51
|
**Basic Structure:**
|
|
52
|
+
|
|
24
53
|
```
|
|
25
54
|
Trigger → Module 1 → Router → [Route A → Modules]
|
|
26
55
|
[Route B → Modules]
|
|
@@ -28,6 +57,7 @@ Trigger → Module 1 → Router → [Route A → Modules]
|
|
|
28
57
|
```
|
|
29
58
|
|
|
30
59
|
**Common Patterns:**
|
|
60
|
+
|
|
31
61
|
- **Linear:** Trigger → Process → Action
|
|
32
62
|
- **Branching:** Trigger → Router → Multiple paths
|
|
33
63
|
- **Aggregation:** Multiple sources → Aggregator → Action
|
|
@@ -36,11 +66,13 @@ Trigger → Module 1 → Router → [Route A → Modules]
|
|
|
36
66
|
### 2. Module Types
|
|
37
67
|
|
|
38
68
|
**Triggers:**
|
|
69
|
+
|
|
39
70
|
- **Instant** - Webhooks, real-time events
|
|
40
71
|
- **Scheduled** - Run at intervals (every 15 min, hourly, etc.)
|
|
41
72
|
- **Polling** - Check for new data
|
|
42
73
|
|
|
43
74
|
**Actions:**
|
|
75
|
+
|
|
44
76
|
- **Create** - Add new records
|
|
45
77
|
- **Update** - Modify existing data
|
|
46
78
|
- **Search** - Find specific records
|
|
@@ -48,6 +80,7 @@ Trigger → Module 1 → Router → [Route A → Modules]
|
|
|
48
80
|
- **Make API Call** - Custom requests
|
|
49
81
|
|
|
50
82
|
**Tools:**
|
|
83
|
+
|
|
51
84
|
- **Router** - Branch into multiple paths
|
|
52
85
|
- **Iterator** - Loop through arrays
|
|
53
86
|
- **Aggregator** - Combine multiple items
|
|
@@ -66,6 +99,7 @@ Mapping: {{1.subject}} + " received at " + {{formatDate(now; "YYYY-MM-DD")}}
|
|
|
66
99
|
```
|
|
67
100
|
|
|
68
101
|
**Common Functions:**
|
|
102
|
+
|
|
69
103
|
- `formatDate()` - Date formatting
|
|
70
104
|
- `substring()` - Text extraction
|
|
71
105
|
- `replace()` - Text replacement
|
|
@@ -78,6 +112,7 @@ Mapping: {{1.subject}} + " received at " + {{formatDate(now; "YYYY-MM-DD")}}
|
|
|
78
112
|
Routers create conditional branches:
|
|
79
113
|
|
|
80
114
|
**Example: Lead Scoring Router**
|
|
115
|
+
|
|
81
116
|
```
|
|
82
117
|
Webhook Trigger → Router
|
|
83
118
|
├─ Route 1: Score > 80 → Send to Sales
|
|
@@ -86,6 +121,7 @@ Webhook Trigger → Router
|
|
|
86
121
|
```
|
|
87
122
|
|
|
88
123
|
**Filter Conditions:**
|
|
124
|
+
|
|
89
125
|
- Numeric: Equal, Greater than, Less than
|
|
90
126
|
- Text: Contains, Matches pattern, Empty
|
|
91
127
|
- Date: Before, After, Between
|
|
@@ -96,6 +132,7 @@ Webhook Trigger → Router
|
|
|
96
132
|
Make has sophisticated error handling:
|
|
97
133
|
|
|
98
134
|
**Pattern 1: Retry with Fallback**
|
|
135
|
+
|
|
99
136
|
```
|
|
100
137
|
API Call → [Success] → Process
|
|
101
138
|
→ [Error Handler] → Wait → Retry
|
|
@@ -103,12 +140,14 @@ API Call → [Success] → Process
|
|
|
103
140
|
```
|
|
104
141
|
|
|
105
142
|
**Pattern 2: Alternative Route**
|
|
143
|
+
|
|
106
144
|
```
|
|
107
145
|
Primary API → [Success] → Process
|
|
108
146
|
→ [Error] → Backup API → Process
|
|
109
147
|
```
|
|
110
148
|
|
|
111
149
|
**Pattern 3: Ignore and Continue**
|
|
150
|
+
|
|
112
151
|
```
|
|
113
152
|
Batch Process → [Error Handler: Ignore] → Continue next item
|
|
114
153
|
```
|
|
@@ -116,6 +155,7 @@ Batch Process → [Error Handler: Ignore] → Continue next item
|
|
|
116
155
|
### 6. Common Scenario Templates
|
|
117
156
|
|
|
118
157
|
**Template 1: AI Email Classifier**
|
|
158
|
+
|
|
119
159
|
```
|
|
120
160
|
Gmail (New Email)
|
|
121
161
|
→ OpenAI (Classify: urgent/normal/spam)
|
|
@@ -126,6 +166,7 @@ Gmail (New Email)
|
|
|
126
166
|
```
|
|
127
167
|
|
|
128
168
|
**Template 2: Lead Enrichment Pipeline**
|
|
169
|
+
|
|
129
170
|
```
|
|
130
171
|
Webhook (New lead)
|
|
131
172
|
→ Clearbit (Enrich company data)
|
|
@@ -137,6 +178,7 @@ Webhook (New lead)
|
|
|
137
178
|
```
|
|
138
179
|
|
|
139
180
|
**Template 3: Content Distribution**
|
|
181
|
+
|
|
140
182
|
```
|
|
141
183
|
RSS Feed Reader (Every 15 min)
|
|
142
184
|
→ Filter (New items only)
|
|
@@ -148,6 +190,7 @@ RSS Feed Reader (Every 15 min)
|
|
|
148
190
|
```
|
|
149
191
|
|
|
150
192
|
**Template 4: Document Processing**
|
|
193
|
+
|
|
151
194
|
```
|
|
152
195
|
Google Drive (New PDF)
|
|
153
196
|
→ OCR.space (Extract text)
|
|
@@ -158,6 +201,7 @@ Google Drive (New PDF)
|
|
|
158
201
|
```
|
|
159
202
|
|
|
160
203
|
**Template 5: Customer Onboarding**
|
|
204
|
+
|
|
161
205
|
```
|
|
162
206
|
Stripe (New subscription)
|
|
163
207
|
→ Create records
|
|
@@ -172,6 +216,7 @@ Stripe (New subscription)
|
|
|
172
216
|
### 7. AI Integration in Make
|
|
173
217
|
|
|
174
218
|
**OpenAI Integration:**
|
|
219
|
+
|
|
175
220
|
```
|
|
176
221
|
OpenAI: Create a completion
|
|
177
222
|
- Model: gpt-4
|
|
@@ -182,6 +227,7 @@ OpenAI: Create a completion
|
|
|
182
227
|
```
|
|
183
228
|
|
|
184
229
|
**Anthropic Claude via HTTP:**
|
|
230
|
+
|
|
185
231
|
```
|
|
186
232
|
HTTP: Make a request
|
|
187
233
|
- URL: https://api.anthropic.com/v1/messages
|
|
@@ -200,16 +246,19 @@ HTTP: Make a request
|
|
|
200
246
|
### 8. Performance Optimization
|
|
201
247
|
|
|
202
248
|
**Reduce Operations:**
|
|
249
|
+
|
|
203
250
|
- Use aggregators instead of multiple API calls
|
|
204
251
|
- Batch updates when possible
|
|
205
252
|
- Cache frequently accessed data
|
|
206
253
|
|
|
207
254
|
**Parallel Processing:**
|
|
255
|
+
|
|
208
256
|
- Split scenarios for different data types
|
|
209
257
|
- Use webhooks for instant triggers
|
|
210
258
|
- Schedule heavy operations during off-peak hours
|
|
211
259
|
|
|
212
260
|
**Data Transfer:**
|
|
261
|
+
|
|
213
262
|
- Only map fields you need
|
|
214
263
|
- Use filters early in the scenario
|
|
215
264
|
- Compress large payloads
|
|
@@ -217,12 +266,14 @@ HTTP: Make a request
|
|
|
217
266
|
### 9. Scenario Settings
|
|
218
267
|
|
|
219
268
|
**Execution Settings:**
|
|
269
|
+
|
|
220
270
|
- **Sequential processing** - One at a time (safer)
|
|
221
271
|
- **Parallel processing** - Multiple simultaneous (faster)
|
|
222
272
|
- **Maximum cycles** - Prevent infinite loops
|
|
223
273
|
- **Commit interval** - How often to save progress
|
|
224
274
|
|
|
225
275
|
**Error Handling:**
|
|
276
|
+
|
|
226
277
|
- **Allow storing incomplete executions** - Debug failures
|
|
227
278
|
- **Sequential processing of errors** - Retry in order
|
|
228
279
|
- **Break on error** - Stop immediately
|
|
@@ -237,6 +288,7 @@ Make pricing is based on operations (API calls):
|
|
|
237
288
|
**Teams:** $29/month - 10,000 operations + collaboration
|
|
238
289
|
|
|
239
290
|
**Tips to Reduce Operations:**
|
|
291
|
+
|
|
240
292
|
- Combine multiple actions into one module when possible
|
|
241
293
|
- Use filters before expensive API calls
|
|
242
294
|
- Aggregate data instead of individual operations
|
|
@@ -262,10 +314,12 @@ When designing a Make scenario, provide:
|
|
|
262
314
|
|
|
263
315
|
### Visual Flow
|
|
264
316
|
```
|
|
317
|
+
|
|
265
318
|
Webhook → OpenAI Score → Router
|
|
266
319
|
├─ High → Slack + CRM
|
|
267
320
|
├─ Medium → Email Drip
|
|
268
321
|
└─ Low → Archive
|
|
322
|
+
|
|
269
323
|
```
|
|
270
324
|
|
|
271
325
|
### Modules
|
|
@@ -335,6 +389,7 @@ Webhook → OpenAI Score → Router
|
|
|
335
389
|
## When to Use Make vs n8n
|
|
336
390
|
|
|
337
391
|
**Use Make when:**
|
|
392
|
+
|
|
338
393
|
- Need visual design interface
|
|
339
394
|
- Want managed hosting
|
|
340
395
|
- Prefer no-code approach
|
|
@@ -342,6 +397,7 @@ Webhook → OpenAI Score → Router
|
|
|
342
397
|
- Want built-in error handling UI
|
|
343
398
|
|
|
344
399
|
**Use n8n when:**
|
|
400
|
+
|
|
345
401
|
- Need self-hosting
|
|
346
402
|
- Want more complex logic
|
|
347
403
|
- Need custom code nodes
|
package/commands/make-builder.md
CHANGED
|
@@ -15,6 +15,7 @@ When the user requests a Make.com scenario, design a complete visual workflow wi
|
|
|
15
15
|
### 1. AI Email Auto-Responder
|
|
16
16
|
|
|
17
17
|
**Flow:**
|
|
18
|
+
|
|
18
19
|
```
|
|
19
20
|
Gmail: Watch emails
|
|
20
21
|
→ OpenAI: Generate response
|
|
@@ -53,6 +54,7 @@ Gmail: Watch emails
|
|
|
53
54
|
### 2. Lead Qualification with AI
|
|
54
55
|
|
|
55
56
|
**Flow:**
|
|
57
|
+
|
|
56
58
|
```
|
|
57
59
|
Webhook: Custom webhook
|
|
58
60
|
→ OpenAI: Score lead
|
|
@@ -78,20 +80,22 @@ Webhook: Custom webhook
|
|
|
78
80
|
- Fallback: All other cases
|
|
79
81
|
|
|
80
82
|
4A. **Slack: Create a message** (High route)
|
|
81
|
-
|
|
82
|
-
|
|
83
|
+
|
|
84
|
+
- Channel: #sales-leads
|
|
85
|
+
- Text: `Hot lead: {{1.name}} from {{1.company}} - Score: {{3.score}}`
|
|
83
86
|
|
|
84
87
|
4B. **HubSpot: Create a deal** (High route)
|
|
85
|
-
- Deal name: `{{1.company}} - {{1.name}}`
|
|
86
|
-
- Stage: Qualification
|
|
87
|
-
- Amount: `{{1.budget}}`
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
- Deal name: `{{1.company}} - {{1.name}}`
|
|
90
|
+
- Stage: Qualification
|
|
91
|
+
- Amount: `{{1.budget}}`
|
|
92
|
+
|
|
93
|
+
1. **ActiveCampaign: Add contact to list** (Medium route)
|
|
90
94
|
- Email: `{{1.email}}`
|
|
91
95
|
- List: Nurture Campaign
|
|
92
96
|
- Tags: `medium-priority,{{1.role}}`
|
|
93
97
|
|
|
94
|
-
|
|
98
|
+
2. **Airtable: Create a record** (Low route)
|
|
95
99
|
- Base: Leads
|
|
96
100
|
- Table: Archived
|
|
97
101
|
- Fields: Map all lead data + score
|
|
@@ -99,6 +103,7 @@ Webhook: Custom webhook
|
|
|
99
103
|
### 3. Content Distribution Pipeline
|
|
100
104
|
|
|
101
105
|
**Flow:**
|
|
106
|
+
|
|
102
107
|
```
|
|
103
108
|
RSS: Read feed
|
|
104
109
|
→ Filter: New items only
|
|
@@ -131,18 +136,22 @@ RSS: Read feed
|
|
|
131
136
|
- Array: `{{4.platforms}}`
|
|
132
137
|
|
|
133
138
|
6A. **Twitter: Create a tweet**
|
|
134
|
-
|
|
139
|
+
|
|
140
|
+
- Text: `{{4.content}}\n\n{{4.link}}`
|
|
135
141
|
|
|
136
142
|
6B. **LinkedIn: Create a post**
|
|
137
|
-
|
|
143
|
+
|
|
144
|
+
- Text: `{{4.content}}\n\n{{4.link}}`
|
|
138
145
|
|
|
139
146
|
6C. **Facebook: Create a post**
|
|
140
|
-
|
|
141
|
-
|
|
147
|
+
|
|
148
|
+
- Message: `{{4.content}}`
|
|
149
|
+
- Link: `{{4.link}}`
|
|
142
150
|
|
|
143
151
|
### 4. Document Processing Workflow
|
|
144
152
|
|
|
145
153
|
**Flow:**
|
|
154
|
+
|
|
146
155
|
```
|
|
147
156
|
Google Drive: Watch files
|
|
148
157
|
→ Filter: PDFs only
|
|
@@ -164,7 +173,7 @@ Google Drive: Watch files
|
|
|
164
173
|
- Condition: File name contains "invoice" OR "receipt"
|
|
165
174
|
|
|
166
175
|
3. **HTTP: Make a request (OCR.space)**
|
|
167
|
-
- URL:
|
|
176
|
+
- URL:
|
|
168
177
|
- Method: POST
|
|
169
178
|
- Headers: apikey: YOUR_OCR_KEY
|
|
170
179
|
- Body: file: `{{1.data}}`
|
|
@@ -186,11 +195,13 @@ Google Drive: Watch files
|
|
|
186
195
|
- Body: Summary of extracted data
|
|
187
196
|
|
|
188
197
|
**Error Handler on all modules:**
|
|
198
|
+
|
|
189
199
|
- Slack: Send message to #errors channel
|
|
190
200
|
|
|
191
201
|
### 5. Customer Support Automation
|
|
192
202
|
|
|
193
203
|
**Flow:**
|
|
204
|
+
|
|
194
205
|
```
|
|
195
206
|
Zendesk: Watch tickets
|
|
196
207
|
→ OpenAI: Classify urgency + category
|
|
@@ -215,19 +226,21 @@ Zendesk: Watch tickets
|
|
|
215
226
|
- Route 3: Urgency = "low"
|
|
216
227
|
|
|
217
228
|
4A. **Zendesk: Update ticket** (Urgent)
|
|
218
|
-
|
|
219
|
-
|
|
229
|
+
|
|
230
|
+
- Priority: urgent
|
|
231
|
+
- Assignee: Senior agent ID
|
|
220
232
|
|
|
221
233
|
4B. **Slack: Create message** (Urgent)
|
|
222
|
-
- Channel: #support-urgent
|
|
223
|
-
- Text: ` Urgent ticket: {{1.subject}} - {{1.ticket_id}}`
|
|
224
234
|
|
|
225
|
-
|
|
235
|
+
- Channel: #support-urgent
|
|
236
|
+
- Text: `Urgent ticket: {{1.subject}} - {{1.ticket_id}}`
|
|
237
|
+
|
|
238
|
+
1. **Zendesk: Update ticket** (Normal)
|
|
226
239
|
- Priority: normal
|
|
227
240
|
- Comment: `{{2.suggested_response}}`
|
|
228
241
|
- Status: pending
|
|
229
242
|
|
|
230
|
-
|
|
243
|
+
2. **Zendesk: Update ticket** (Low)
|
|
231
244
|
- Comment: Auto-generated response + KB links
|
|
232
245
|
- Status: solved
|
|
233
246
|
|
package/package.json
CHANGED
|
@@ -7,11 +7,13 @@ This document provides practical examples of how to use this skill effectively.
|
|
|
7
7
|
### Example 1: Simple Activation
|
|
8
8
|
|
|
9
9
|
**User Request:**
|
|
10
|
+
|
|
10
11
|
```
|
|
11
12
|
[Describe trigger phrase here]
|
|
12
13
|
```
|
|
13
14
|
|
|
14
15
|
**Skill Response:**
|
|
16
|
+
|
|
15
17
|
1. Analyzes the request
|
|
16
18
|
2. Performs the required action
|
|
17
19
|
3. Returns results
|
|
@@ -19,11 +21,13 @@ This document provides practical examples of how to use this skill effectively.
|
|
|
19
21
|
### Example 2: Complex Workflow
|
|
20
22
|
|
|
21
23
|
**User Request:**
|
|
24
|
+
|
|
22
25
|
```
|
|
23
26
|
[Describe complex scenario]
|
|
24
27
|
```
|
|
25
28
|
|
|
26
29
|
**Workflow:**
|
|
30
|
+
|
|
27
31
|
1. Step 1: Initial analysis
|
|
28
32
|
2. Step 2: Data processing
|
|
29
33
|
3. Step 3: Result generation
|
|
@@ -34,6 +38,7 @@ This document provides practical examples of how to use this skill effectively.
|
|
|
34
38
|
### Pattern 1: Chaining Operations
|
|
35
39
|
|
|
36
40
|
Combine this skill with other tools:
|
|
41
|
+
|
|
37
42
|
```
|
|
38
43
|
Step 1: Use this skill for [purpose]
|
|
39
44
|
Step 2: Chain with [other tool]
|
|
@@ -43,6 +48,7 @@ Step 3: Finalize with [action]
|
|
|
43
48
|
### Pattern 2: Error Handling
|
|
44
49
|
|
|
45
50
|
If issues occur:
|
|
51
|
+
|
|
46
52
|
- Check trigger phrase matches
|
|
47
53
|
- Verify context is available
|
|
48
54
|
- Review allowed-tools permissions
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# Skill validation helper
|
|
3
|
-
# Validates skill activation and functionality
|
|
4
|
-
|
|
5
|
-
set -e
|
|
6
|
-
|
|
7
|
-
echo "🔍 Validating skill..."
|
|
8
|
-
|
|
9
|
-
# Check if SKILL.md exists
|
|
10
|
-
if [ ! -f "../SKILL.md" ]; then
|
|
11
|
-
echo "❌ Error: SKILL.md not found"
|
|
12
|
-
exit 1
|
|
13
|
-
fi
|
|
14
|
-
|
|
15
|
-
# Validate frontmatter
|
|
16
|
-
if ! grep -q "^---$" "../SKILL.md"; then
|
|
17
|
-
echo "❌ Error: No frontmatter found"
|
|
18
|
-
exit 1
|
|
19
|
-
fi
|
|
20
|
-
|
|
21
|
-
# Check required fields
|
|
22
|
-
if ! grep -q "^name:" "../SKILL.md"; then
|
|
23
|
-
echo "❌ Error: Missing 'name' field"
|
|
24
|
-
exit 1
|
|
25
|
-
fi
|
|
26
|
-
|
|
27
|
-
if ! grep -q "^description:" "../SKILL.md"; then
|
|
28
|
-
echo "❌ Error: Missing 'description' field"
|
|
29
|
-
exit 1
|
|
30
|
-
fi
|
|
31
|
-
|
|
32
|
-
echo "✅ Skill validation passed"
|