zapier-patterns

zapier-patterns is a skill for Claude Code, Codex from oyi77/1ai-skills. It costs 34 tokens per session (1,405 once invoked), scanned A, original, MIT.

A guide to building Zapier automations, called Zaps, that connect apps through triggers, actions, filters, data formatting, branches, and optional code steps. Zapier is a no-code service for linking online tools into workflows.

In plain words
What is it for?
Use it to connect SaaS apps, webhooks, and schedules; control which data continues; format data; create conditional paths; and add small code steps to multi-step workflows.
Why use it?
It helps turn repetitive work between online services into repeatable workflows without writing a full integration. It also clarifies when Zapier is unsuitable, such as for real-time processing or complex custom logic.

Skill for Claude CodeCodex

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

Part of the 1ai-skills plugin — 209 skills, 4 commands shipped together

Good fit Use it to connect SaaS apps, webhooks, and schedules; control which data continues; format data; create conditional paths; and add small code steps to multi-step workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/zapier-patterns
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 oyi77/1ai-skills --skill zapier-patterns
Clone the repo
git clone --depth 1 https://github.com/oyi77/1ai-skills

Made for: Claude Code, Codex.

Or install 1ai-skills, the plugin that ships this one along with the rest of its 209 skills, 4 commands.

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-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyi77/1ai-skills/zapier-patterns/github.svg)](https://agentmods.dev/skills/oyi77/1ai-skills/zapier-patterns)
Your own site
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/zapier-patterns"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/zapier-patterns/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-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/zapier-patterns"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/zapier-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,405 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: 1 finding, 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 191
    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.00034 $0.01405
Opus 5 $0.00017 $0.00702
Sonnet 5 $0.00007 $0.00281
Haiku 4.5 $0.00003 $0.00140

Measured 11d ago against content hash 5e153d312046, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

zapier-patterns 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 11d 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.

curl -X POST "https://hooks.zapier.com/hooks/catch/123456/abcdef/" \
automation/zapier-patterns/SKILL.md · 244 lines

How it starts

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

Overview

Zapier is the most popular no-code automation platform with 7000+ app integrations. It uses Zaps (workflows) with triggers, actions, filters, formatters, paths, and code steps.

Capabilities

  • Build Zaps with 7000+ app integrations
  • Use triggers from apps, webhooks, or schedules
  • Add filters to control data flow
  • Format data with built-in Formatter
  • Use Paths for conditional branching
  • Write custom code with Code by Zapier
  • Create multi-step Zaps with 100+ steps

When to Use

Trigger phrases:

  • "zapier patterns"

  • "Automating repetitive business tasks"

  • "Connecting SaaS tools without coding"

  • "Building simple data pipelines"

  • Automating repetitive business tasks

  • Connecting SaaS tools without coding

  • Building simple data pipelines

  • Needing the largest app integration ecosystem

  • Non-technical users building automations

When NOT to Use

  • Task requires custom code (use Pipedream or n8n)
  • You need complex branching logic (use Make)
  • Task is about data processing, not automation
  • You don't have Zapier account or app connections
  • Task requires real-time processing (use streaming tools)
  • You need to build a custom API (use development tools)

Pseudo Code

Implementation patterns for common use cases with this skill.

Zap Structure

Trigger → Filter → Formatter → Action 1 → Action 2
                              ↘ Path A → Action A
                               ↘ Path B → Action B

Trigger Types

Type Example
App Event New email, New row in spreadsheet
Webhook Catch Hook (custom URL)
Schedule Every hour, Daily at 9am
RSS New feed item

Filter

{
  "filter": {
    "conditions": [
      {
        "field": "status",
        "operator": "str",
        "value": "active"
      },
      {
        "field": "amount",
        "operator": "number_greater",
        "value": "100"
      }
    ]
  }
}

Formatter (Data Transformation)

// Text
{{formatter.text.uppercase(input)}}
{{formatter.text.replace(input, "old", "new")}}
{{formatter.text.substring(input, 0, 10)}}

// Number
{{formatter.number.round(input, 2)}}
{{formatter.number.formatCurrency(input, "USD")}}

// Date
{{formatter.date.format(input, "YYYY-MM-DD")}}
{{formatter.date.addDays(input, 7)}}

// Utilities
{{formatter.utilities.lookup(input, lookupTable)}}

Read the full file on GitHub · 244 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. 11d ago First seen · 244 lines · 34 tokens per session scan A 5e153d312046

Subscribe to this mod's changes

zapier-patterns is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 1,405 once invoked, about $0.0002 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-08-30.