Skill · em Automatizar e estender

zapier-workflows

Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.

Procedência

Antes de instalar

4 arquivos · 23,9 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/zapier-workflows/.

d=".claude/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Global: instala em ~/.claude/skills/zapier-workflows/.

d="$HOME/.claude/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Codex

Neste projeto: instala em .agents/skills/zapier-workflows/.

d=".agents/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Global: instala em ~/.agents/skills/zapier-workflows/.

d="$HOME/.agents/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Antigravity

Neste projeto: instala em .agents/skills/zapier-workflows/.

d=".agents/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Global: instala em ~/.gemini/antigravity-cli/skills/zapier-workflows/.

d="$HOME/.gemini/antigravity-cli/skills/zapier-workflows"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/zapier-workflows"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE.txt" "$u/LICENSE.txt" \
  -o "$d/references/mcp-patterns.md" "$u/references/mcp-patterns.md" \
  -o "$d/references/zaps.md" "$u/references/zaps.md"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.zapier-workflows

Prévia do SKILL.md

---
name: zapier-workflows
description: Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.
---

# Zapier Workflows Skill

## The Problem This Solves

**Zapier MCP gives Claude access to 8,000+ individual tools** (every Zapier action), but there are critical limitations:

❌ **No memory** - Claude doesn't remember which tools YOU use or why
❌ **No context** - Doesn't know when to use specific tools for your workflows
❌ **Only one-off actions** - Can't trigger your complex, multi-step Zaps
❌ **Fresh start every session** - All context lost between conversations

### The Two Types of Zapier Automation

**1. MCP Tools (One-Off Actions)**
- Individual Zapier actions (Add row to sheet, Send email, etc.)
- Available via Zapier MCP at https://mcp.zapier.com/mcp/servers
- Great for flexible, on-the-fly automation
- **Problem:** 8,000+ choices with no guidance on which to use or when

**2. Multi-Step Zaps (Webhook-Triggered)**
- Complex workflows you've built in Zapier dashboard
- Multiple actions chained together, pre-optimized
- Triggered via webhook URL (POST request)
- **Problem:** Claude can't trigger these - they're not in the MCP

## What This Skill Does

**This skill solves both problems** by giving Claude persistent memory for your Zapier workflows:

✅ **Remembers your MCP tool preferences** - "Use Google Sheets for expenses, Notion for tasks"
✅ **Knows when/why to use each tool** - "Search with Perplexity when researching, not Google"
✅ **Triggers multi-step Zaps** - "Run my daily digest" = webhook POST to your complex Zap
✅ **Self-learning** - Claude updates the skill as you teach it, never forgets
✅ **Cross-session persistence** - Works across all conversations (global install)
…

Ver todo o marketplace