jpskill.com
🛠️ 開発・MCP コミュニティ

zapier

Zapierは、ユーザーがコードを書かずにアプリ同士を連携させたり、繰り返しの作業を自動化したり、データ同期やノーコード連携を構築したりする際に、業務効率化を支援するSkill。

📜 元の英語説明(参考)

Automate workflows between apps with Zapier. Use when a user asks to connect apps without code, automate repetitive tasks, sync data between services, or build no-code integrations between SaaS tools.

🇯🇵 日本人クリエイター向け解説

一言でいうと

Zapierは、ユーザーがコードを書かずにアプリ同士を連携させたり、繰り返しの作業を自動化したり、データ同期やノーコード連携を構築したりする際に、業務効率化を支援するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o zapier.zip https://jpskill.com/download/15588.zip && unzip -o zapier.zip && rm zapier.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15588.zip -OutFile "$d\zapier.zip"; Expand-Archive "$d\zapier.zip" -DestinationPath $d -Force; ri "$d\zapier.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して zapier.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → zapier フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Zapier

概要

Zapier は、自動化されたワークフロー (Zaps) で 6000 以上のアプリを接続します。トリガー → アクションの連鎖:あるアプリで何かが起こると、別のアプリで何かが起こります。基本的な自動化にはコードは不要です。複雑なロジックのためのコードステップをサポートします。

手順

ステップ 1: 一般的な Zap パターン

トリガー → アクションの例:
1. 新しい Stripe の支払い → Google Sheets に行を追加 → Slack 通知を送信
2. 新しいフォーム送信 (Typeform) → HubSpot でコンタクトを作成 → 歓迎メールを送信
3. 新しい GitHub issue → Trello カードを作成 → Discord で通知
4. 添付ファイル付きの新しいメール (Gmail) → Google Drive に保存 → Slack で通知
5. スケジュール (毎日午前 9 時) → API からデータを取得 → Slack に概要を投稿

ステップ 2: Webhooks (カスタムトリガー)

// webhook 経由でアプリから Zap をトリガー
await fetch('https://hooks.zapier.com/hooks/catch/123456/abcdef/', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    event: 'order_completed',
    customer_email: 'john@example.com',
    order_total: 99.99,
    product: 'Premium Plan',
  }),
})
// Zapier はこれを受信し、接続されたワークフローを実行します

ステップ 3: コードステップ (JavaScript)

// Zapier コードステップ — アプリ間でデータを変換
const inputData = inputData    // 前のステップからのデータ

// パースして変換
const fullName = `${inputData.firstName} ${inputData.lastName}`
const isVIP = parseFloat(inputData.totalSpent) > 1000

output = [{
  fullName,
  email: inputData.email.toLowerCase(),
  isVIP,
  segment: isVIP ? 'vip' : 'regular',
}]

ステップ 4: Zapier 連携を構築する

// あなたのアプリを Zapier のディレクトリに表示させたい場合
// Zapier Platform CLI を使用してカスタム連携を構築します

// index.ts — アプリのトリガーとアクションを定義
const App = {
  triggers: {
    newOrder: {
      display: { label: 'New Order', description: 'Triggers when a new order is created' },
      operation: {
        perform: async (z, bundle) => {
          const response = await z.request('https://api.myapp.com/orders?since=' + bundle.meta.page)
          return response.data
        },
      },
    },
  },
  actions: {
    createContact: {
      display: { label: 'Create Contact' },
      operation: {
        perform: async (z, bundle) => {
          return z.request({
            method: 'POST',
            url: 'https://api.myapp.com/contacts',
            body: { email: bundle.inputData.email, name: bundle.inputData.name },
          })
        },
      },
    },
  },
}

ガイドライン

  • 無料プラン: 100 tasks/月、5 Zaps。スターター ($19.99/月): 750 tasks、20 Zaps。
  • "Tasks" = 実行される各アクションステップ。5 ステップの Zap は、トリガーごとに 5 tasks を使用します。
  • セルフホストの代替手段として、n8n (無料、無制限) または Activepieces を使用します。
  • 条件付きロジックには Paths (分岐) を使用します — データに基づいた異なるアクション。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Zapier

Overview

Zapier connects 6000+ apps with automated workflows (Zaps). Trigger → Action chains: when something happens in one app, do something in another. No code required for basic automation; supports code steps for complex logic.

Instructions

Step 1: Common Zap Patterns

Trigger → Action examples:
1. New Stripe payment → Add row to Google Sheets → Send Slack notification
2. New form submission (Typeform) → Create contact in HubSpot → Send welcome email
3. New GitHub issue → Create Trello card → Notify on Discord
4. New email (Gmail) with attachment → Save to Google Drive → Notify on Slack
5. Scheduled (every day 9 AM) → Pull data from API → Post summary to Slack

Step 2: Webhooks (Custom Triggers)

// Trigger a Zap from your app via webhook
await fetch('https://hooks.zapier.com/hooks/catch/123456/abcdef/', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    event: 'order_completed',
    customer_email: 'john@example.com',
    order_total: 99.99,
    product: 'Premium Plan',
  }),
})
// Zapier receives this and runs the connected workflow

Step 3: Code Steps (JavaScript)

// Zapier Code step — transform data between apps
const inputData = inputData    // data from previous step

// Parse and transform
const fullName = `${inputData.firstName} ${inputData.lastName}`
const isVIP = parseFloat(inputData.totalSpent) > 1000

output = [{
  fullName,
  email: inputData.email.toLowerCase(),
  isVIP,
  segment: isVIP ? 'vip' : 'regular',
}]

Step 4: Build a Zapier Integration

// If you want YOUR app to appear in Zapier's directory
// Use Zapier Platform CLI to build a custom integration

// index.ts — Define triggers and actions for your app
const App = {
  triggers: {
    newOrder: {
      display: { label: 'New Order', description: 'Triggers when a new order is created' },
      operation: {
        perform: async (z, bundle) => {
          const response = await z.request('https://api.myapp.com/orders?since=' + bundle.meta.page)
          return response.data
        },
      },
    },
  },
  actions: {
    createContact: {
      display: { label: 'Create Contact' },
      operation: {
        perform: async (z, bundle) => {
          return z.request({
            method: 'POST',
            url: 'https://api.myapp.com/contacts',
            body: { email: bundle.inputData.email, name: bundle.inputData.name },
          })
        },
      },
    },
  },
}

Guidelines

  • Free tier: 100 tasks/month, 5 Zaps. Starter ($19.99/mo): 750 tasks, 20 Zaps.
  • "Tasks" = each action step that runs. A 5-step Zap uses 5 tasks per trigger.
  • For self-hosted alternative, use n8n (free, unlimited) or Activepieces.
  • Use Paths (branching) for conditional logic — different actions based on data.