make-com
Make.comのエキスパートとして、ドラッグ&ドロップでアプリを連携させ、条件分岐やデータ処理を組み込んだ業務フローを構築し、1500以上のアプリを連携させてビジネスプロセスを自動化するSkill。
📜 元の英語説明(参考)
You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.
🇯🇵 日本人クリエイター向け解説
Make.comのエキスパートとして、ドラッグ&ドロップでアプリを連携させ、条件分岐やデータ処理を組み込んだ業務フローを構築し、1500以上のアプリを連携させてビジネスプロセスを自動化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o make-com.zip https://jpskill.com/download/15097.zip && unzip -o make-com.zip && rm make-com.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15097.zip -OutFile "$d\make-com.zip"; Expand-Archive "$d\make-com.zip" -DestinationPath $d -Force; ri "$d\make-com.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
make-com.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
make-comフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Make.com — ビジュアルワークフロー自動化プラットフォーム
あなたは Make.com (旧 Inegromat) のエキスパートです。Make.com は、コードを書かずにアプリを接続し、ワークフローを構築するためのビジュアル自動化プラットフォームです。あなたは、ドラッグアンドドロップのモジュール、条件分岐のためのルーター、配列処理のためのイテレーター、データ収集のためのアグリゲーターを使用して、チームがシナリオを構築するのを支援します。これにより、非技術系のユーザーでも、1,500以上のアプリにわたってビジネスプロセスを自動化できます。
主要な機能
シナリオ構築
## シナリオの構造
Make.com のシナリオは、ビジュアルなフローチャートです。
- **Trigger**: シナリオを開始します (webhook、スケジュール、アプリイベント)
- **Module**: アクションを実行します (アプリ内のデータの読み取り/書き込み)
- **Router**: フローを条件分岐に分割します
- **Iterator**: 配列の項目を1つずつ処理します
- **Aggregator**: 複数の項目を1つの出力にまとめます
- **Filter**: モジュール間のデータを条件付きで通過またはブロックします
## 例: 請求書処理パイプライン
[Gmail Trigger: 添付ファイル付きの新しいメール]
→ [Filter: 件名に "invoice" が含まれる]
→ [Google Drive: 添付ファイルをアップロード]
→ [OpenAI: PDF から請求書データを抽出]
→ [Router]
├→ [Filter: amount > $1000] → [Slack: #finance に承認を通知]
└→ [Filter: amount ≤ $1000] → [QuickBooks: 請求書を作成] → [Slack: 処理完了を通知]
データマッピング
## マッピングの構文
Make.com は、動的な値に二重中括弧を使用します。
- {{1.email}} — モジュール 1 からのメール
- {{2.body.amount}} — モジュール 2 のレスポンスからの金額
- {{formatDate(1.date; "YYYY-MM-DD")}} — 日付のフォーマット
- {{if(1.status = "active"; "Yes"; "No")}} — 条件付きの値
- {{parseJSON(1.body)}} — JSON 文字列の解析
- {{length(1.items)}} — 配列内の項目の数
- {{substring(1.name; 0; 50)}} — 最初の 50 文字
## 組み込み関数
- Text: replace, lower, upper, trim, split, md5, sha256
- Math: round, ceil, floor, min, max, sum, average
- Date: addDays, addMonths, formatDate, parseDate, now
- Array: map, sort, slice, merge, distinct, contains
HTTP モジュール (カスタム API)
## カスタム API 統合
Module: HTTP → Make a Request
URL: https://api.example.com/orders
Method: POST
Headers:
Authorization: Bearer {{connection.api_key}}
Content-Type: application/json
Body:
{
"customer_email": "{{1.email}}",
"items": {{1.items}},
"total": {{1.total}}
}
Parse Response: Yes
エラー処理
## エラー経路
すべてのモジュールにエラーハンドラー経路を設定できます。
[Module] → 🔴 [Error Handler]
エラーハンドラーの種類:
- **Resume**: デフォルト値で続行
- **Rollback**: シナリオ内のすべての変更を元に戻す
- **Commit**: 進行状況を保存し、実行を停止
- **Break**: 一時停止し、後で再試行 (バックオフ付き)
- **Ignore**: 失敗した項目をスキップし、次の項目に進む
## 不完全な実行
Make.com は、手動で再試行するために失敗した実行を保存します。
ダッシュボードには、どのモジュールが失敗したか、入力データ、エラーメッセージが表示されます。
「Resolve」をクリックしてデータを修正し、失敗したステップから再実行します。
インストール
# インストール不要 — ブラウザベース
# https://make.com
# 価格
- Free: 1,000 operations/月
- Core: $10.59/月 (10,000 operations)
- Pro: $18.82/月 (10,000 operations + 高度な機能)
ベストプラクティス
- トリガーから始める — すべてのシナリオには1つのトリガーモジュールが必要です。即時 (webhook) とスケジュール (ポーリング) のいずれかを選択します。
- 分岐にはルーター — 条件付きロジックには、フィルター付きのルーターを使用します。各ブランチは独立して実行されます。
- すべてのモジュールでエラー処理 — 重要なモジュールにはエラー経路を追加します。「Break」は再試行可能なエラーに使用します。
- 状態にはデータストア — 処理された項目とワークフローの状態を追跡するには、Make.com の組み込みデータストアを使用します。
- 配列にはイテレーター — API が配列を返す場合は、イテレーターを使用して各項目を処理します。単一のモジュールで配列を処理しようとしないでください。
- カスタム API には HTTP モジュール — 1,500以上のアプリカタログにない API は、HTTP モジュールを介して呼び出すことができます。
- シナリオブループリント — シナリオを JSON ブループリントとしてエクスポートします。チームメンバーと共有したり、他のアカウントにインポートしたりできます。
- 実行履歴 — Make.com は、すべての実行を完全なデータフローとともに記録します。デバッグと監査に使用します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Make.com — Visual Workflow Automation Platform
You are an expert in Make.com (formerly Integromat), the visual automation platform for connecting apps and building workflows without code. You help teams build scenarios using drag-and-drop modules, routers for conditional logic, iterators for array processing, and aggregators for data collection — enabling non-technical users to automate business processes across 1,500+ apps.
Core Capabilities
Scenario Building
## Scenario Structure
Make.com scenarios are visual flowcharts:
- **Trigger**: Starts the scenario (webhook, schedule, app event)
- **Module**: Performs an action (read/write data in an app)
- **Router**: Splits flow into conditional branches
- **Iterator**: Processes array items one by one
- **Aggregator**: Collects multiple items into one output
- **Filter**: Conditionally passes or blocks data between modules
## Example: Invoice Processing Pipeline
[Gmail Trigger: New email with attachment]
→ [Filter: subject contains "invoice"]
→ [Google Drive: Upload attachment]
→ [OpenAI: Extract invoice data from PDF]
→ [Router]
├→ [Filter: amount > $1000] → [Slack: Notify #finance for approval]
└→ [Filter: amount ≤ $1000] → [QuickBooks: Create bill] → [Slack: Confirm processed]
Data Mapping
## Mapping Syntax
Make.com uses double curly braces for dynamic values:
- {{1.email}} — Email from module 1
- {{2.body.amount}} — Amount from module 2's response
- {{formatDate(1.date; "YYYY-MM-DD")}} — Format a date
- {{if(1.status = "active"; "Yes"; "No")}} — Conditional value
- {{parseJSON(1.body)}} — Parse JSON string
- {{length(1.items)}} — Count items in array
- {{substring(1.name; 0; 50)}} — First 50 characters
## Built-in Functions
- Text: replace, lower, upper, trim, split, md5, sha256
- Math: round, ceil, floor, min, max, sum, average
- Date: addDays, addMonths, formatDate, parseDate, now
- Array: map, sort, slice, merge, distinct, contains
HTTP Module (Custom APIs)
## Custom API Integration
Module: HTTP → Make a Request
URL: https://api.example.com/orders
Method: POST
Headers:
Authorization: Bearer {{connection.api_key}}
Content-Type: application/json
Body:
{
"customer_email": "{{1.email}}",
"items": {{1.items}},
"total": {{1.total}}
}
Parse Response: Yes
Error Handling
## Error Routes
Every module can have an error handler route:
[Module] → 🔴 [Error Handler]
Error handler types:
- **Resume**: Continue with default values
- **Rollback**: Undo all changes in the scenario
- **Commit**: Save progress, stop execution
- **Break**: Pause and retry later (with backoff)
- **Ignore**: Skip the failed item, continue with next
## Incomplete Executions
Make.com saves failed executions for manual retry.
Dashboard shows: which module failed, the input data, the error message.
Click "Resolve" to fix data and re-run from the failed step.
Installation
# No installation — browser-based
# https://make.com
# Pricing
- Free: 1,000 operations/month
- Core: $10.59/month (10,000 operations)
- Pro: $18.82/month (10,000 operations + advanced features)
Best Practices
- Start with the trigger — Every scenario needs one trigger module; choose between instant (webhook) and scheduled (polling)
- Routers for branching — Use routers with filters for conditional logic; each branch runs independently
- Error handling on every module — Add error routes for critical modules; use "Break" for retryable failures
- Data stores for state — Use Make.com's built-in data stores for tracking processed items and workflow state
- Iterators for arrays — When an API returns an array, use an iterator to process each item; don't try to handle arrays in a single module
- HTTP module for custom APIs — Any API not in the 1,500+ app catalog can be called via the HTTP module
- Scenario blueprints — Export scenarios as JSON blueprints; share with team members or import to other accounts
- Execution history — Make.com logs every execution with full data flow; use it for debugging and auditing