make-scenario-builder

make-scenario-builder is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 82 tokens per session (1,870 once invoked), scanned A, original, MIT.

A guide to creating visual automation scenarios in Make, formerly called Integromat. It explains modules, routers, iterators, webhooks, and data stores for passing information between services.

In plain words
What is it for?
Use it to connect applications, process batches of records, branch workflows, store data between runs, and call services without a native integration.
Why use it?
It helps structure multi-step processes, choose between polling and instant webhooks, and estimate operation usage before deployment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to connect applications, process batches of records, branch workflows, store data between runs, and call services without a native integration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/make-scenario-builder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add khalilbenaz/claude-skills-collection --skill make-scenario-builder
Clone the repo
git clone --depth 1 https://github.com/khalilbenaz/claude-skills-collection

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for make-scenario-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/make-scenario-builder/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/make-scenario-builder)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/make-scenario-builder"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/make-scenario-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for make-scenario-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/make-scenario-builder"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/make-scenario-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,870 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.01870
Opus 5 $0.00041 $0.00935
Sonnet 5 $0.00016 $0.00374
Haiku 4.5 $0.00008 $0.00187

Measured 9d ago against content hash bce708836682, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

make-scenario-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

automation-skills/make-scenario-builder/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Make Scenario Builder

Étape 1 — Cadrage du scénario

Questions à poser avant de toucher l'éditeur :

Question Décision
Délai acceptable entre événement et action ? < 1 min → webhook instant ; sinon polling
Volume mensuel d'opérations estimé ? < 10 k → Free ; < 150 k → Core ; au-delà → Pro/Teams
Les deux apps sont-elles dans le catalogue Make ? Oui → module natif ; Non → HTTP / Webhook générique
Données à stocker entre exécutions ? Oui → Data Store ; Non → traitement stateless

Estimation rapide des opérations :

opérations = nb_exécutions × nb_modules_actifs × taille_collection_moyenne
Exemple : 500 leads/jour × 6 modules × 1 = 3 000 ops/jour → ~90 k/mois (plan Core suffit)

Étape 2 — Trigger

Polling (Watch)

  • Intervalle minimum : 1 min (plan payant), 15 min (Free).
  • Configurer Max results : commencer à 10, augmenter en production.
  • Cocher Process all cycles pour ne pas sauter de lots en cas de retard.

Webhook instant

URL générée : https://hook.eu2.make.com/xxxxxxxxxxxx
Header recommandé : X-Secret-Token: <votre_token>
  • Cliquer Redéfinir la structure de données après le premier appel test pour inférer automatiquement le schéma.
  • Toujours répondre avec un Webhook Response (200 + corps JSON) sinon l'appelant retente.
{ "status": "ok", "received": true }

Étape 3 — Mapping et transformations

Fonctions utiles copiables dans le panneau de mapping :

# Date ISO → format lisible
{{formatDate(1.created_at; "DD/MM/YYYY HH:mm"; "UTC")}}

# Valeur par défaut si vide
{{ifempty(1.email; "[email protected]")}}

# Extraction de domaine email
{{replace(1.email; "/^.*@/"; "")}}

# Parsing JSON embarqué
{{parseJSON(1.metadata)}}

# Troncature de texte
{{substring(1.description; 0; 255)}}

Règle : mapper à partir des sorties du module précédent (panneau gauche) plutôt que taper en dur — les valeurs hardcodées cassent silencieusement si le schéma source change.

Read the full file on GitHub · 192 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 192 lines · 82 tokens per session scan A bce708836682

Subscribe to this mod's changes

make-scenario-builder is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 19d ago), licensed MIT. It adds 82 tokens to every session and 1,870 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.