zapier-workflow-builder

zapier-workflow-builder is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 80 tokens per session (1,894 once invoked), scanned A, original, MIT.

A guide to building Zapier automations that connect apps and run several actions in sequence. It covers triggers, filters, branching paths, webhooks, and field mapping.

In plain words
What is it for?
Use it to connect SaaS apps, react to events such as a new lead, send data through webhooks, and estimate task usage before choosing a plan.
Why use it?
It helps turn a manual process between online services into a repeatable workflow and clarifies when Zapier may not suit complex or high-volume jobs.

Skill for Claude CodeCodex

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

Good fit Use it to connect SaaS apps, react to events such as a new lead, send data through webhooks, and estimate task usage before choosing a plan.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/zapier-workflow-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 zapier-workflow-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 zapier-workflow-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/zapier-workflow-builder/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/zapier-workflow-builder)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/zapier-workflow-builder"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/zapier-workflow-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 zapier-workflow-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/zapier-workflow-builder"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/zapier-workflow-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,894 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 93
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 130
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00080 $0.01894
Opus 5 $0.00040 $0.00947
Sonnet 5 $0.00016 $0.00379
Haiku 4.5 $0.00008 $0.00189

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

Security

Grade A, and why

zapier-workflow-builder scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

resp = requests.get(
automation-skills/zapier-workflow-builder/SKILL.md · 180 lines

How it starts

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

Zapier Workflow Builder

Workflow

1. Cadrer le besoin avant d'ouvrir Zapier

  • Lister : trigger app + événement, action app(s) + opération, champs à mapper.
  • Vérifier le plan Zapier : Paths et multi-step nécessitent au minimum le plan Starter ; Looping et Code by Zapier nécessitent Professional.
  • Estimer la consommation mensuelle de tâches (= nombre d'exécutions × nombre d'actions par exécution) pour choisir le bon plan.

Critère de décision : Zap ou autre outil ?

Besoin Recommandation
Connecter 2 apps SaaS sans dev Zapier
Logique complexe / boucles imbriquées Make (Integromat) ou n8n
Volume > 50 000 tâches/mois Make ou pipeline dédié
Accès base de données directe n8n + SQL step

2. Configurer le trigger

  1. Choisir l'app source et l'événement (ex. New Lead dans HubSpot).
  2. Connecter le compte OAuth ou API Key — Zapier stocke les credentials chiffrés.
  3. Cliquer Test trigger : récupérer un enregistrement réel pour avoir des données d'exemple dans toutes les étapes suivantes.
  4. Si l'app ne supporte pas le polling : utiliser Webhooks by Zapier → Catch Hook et copier l'URL générée dans l'app source.
URL webhook Zapier exemple :
https://hooks.zapier.com/hooks/catch/123456/abcxyz/

3. Ajouter les étapes de transformation

Formatter by Zapier — transformer sans code :

  • Text → Split Text : découper un champ "Nom Prénom"["Nom", "Prénom"]
  • Numbers → Format Number : 1234.5"1 234,50 €"
  • Date/Time → Format Date : ISO 8601 → DD/MM/YYYY

Filter by Zapier — stopper l'exécution si la condition n'est pas remplie :

Champ : "Statut"   Condition : "exactly matches"   Valeur : "Payé"

Placer les filtres le plus tôt possible dans le Zap pour éviter de consommer des tâches.

Delay by Zapier :

  • Delay For : attendre N minutes/heures.
  • Delay Until : attendre une date/heure issue d'un champ de l'enregistrement.

4. Configurer les actions de destination

Read the full file on GitHub · 180 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 · 180 lines · 80 tokens per session scan A fc297d0b581e

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

instinct-review

Reviews/promotes/removes instincts from .claude/instincts/.md. Triggers: instinct review, curate instincts, manage instincts, promote instinct.

softspark/ai-toolkit · 36 tokens

repeat

Runs prompt/slash command on recurring interval until done or limit. Triggers: repeat, recurring task, poll status, run every N minutes, interval.

softspark/ai-toolkit · 33 tokens

night-watch

Autonomous maintenance (dep updates, dead code, small refactors) in isolated branch, off-hours. Triggers: night watch, autonomous maintenance, dep updates.

softspark/ai-toolkit · 36 tokens

briefing

Executive daily briefing aggregating reports from all agents into decision-focused summary. Triggers: briefing, daily summary, status across system, executive update.

softspark/ai-toolkit · 32 tokens

work-autonomous

Abbruchbedingung für autonome Loops: So weit wie möglich selbständig weiterarbeiten UND einen Loop erst beenden, wenn belegt ist, dass keine autonom ausführbare Aufgabe mehr vorliegt. Der bloße Eindruck "nichts mehr zu tun" reicht NICHT — er löst eine vierstufige Prüfkette aus (think/decide, CONTROL/DECISIONS…

ellmos-ai/skills · 242 tokens

rotation-check

Standard-Gerüst für rotierende Pipeline-Checks: Pro Lauf genau ein Ziel aus einer Menge (Projekte, Ordner, Repos) wählen — bevorzugt das am längsten ungeprüfte —, den Check durchführen, Ergebnis in einer Check-Registry und einem Verlaufslog festhalten. Nutze diesen Skill, wenn ein wiederkehrender Check über viele…

ellmos-ai/skills · 148 tokens