💼 Kommo Automation
Kommo (コモ) という顧客管理システム (CRM
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate Kommo CRM operations -- manage leads, pipelines, pipeline stages, tasks, and custom fields -- using natural language through the Composio MCP integration.
🇯🇵 日本人クリエイター向け解説
Kommo (コモ) という顧客管理システム (CRM
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o kommo-automation.zip https://jpskill.com/download/1773.zip && unzip -o kommo-automation.zip && rm kommo-automation.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1773.zip -OutFile "$d\kommo-automation.zip"; Expand-Archive "$d\kommo-automation.zip" -DestinationPath $d -Force; ri "$d\kommo-automation.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
kommo-automation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
kommo-automationフォルダができる - 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-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Kommo Automation で、私のビジネスを分析して改善案を3つ提案して
- › Kommo Automation を使って、来週の会議用の資料を作って
- › Kommo Automation で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Kommo Automation
Kommo CRM の営業パイプラインを管理します。リードのリスト表示とフィルタリング、パイプラインステージの移動、取引の作成と更新、タスクの割り当て、カスタムフィールドの操作を、すべて自然言語コマンドで行えます。
ツールキットのドキュメント: composio.dev/toolkits/kommo
セットアップ
- クライアント設定に Composio MCP サーバーを追加します。
https://rube.app/mcp - プロンプトが表示されたら Kommo アカウントを接続します (OAuth 認証)。
- 自然言語コマンドを発行して CRM の管理を開始します。
コアワークフロー
1. パイプラインとステージのナビゲート
すべてのリードパイプラインをリスト表示し、特定のパイプラインステージを掘り下げて営業ファネルの構造を理解します。
ツール: KOMMO_LIST_LEADS_PIPELINES、KOMMO_LIST_PIPELINE_STAGES
プロンプトの例:
"Show all my Kommo pipelines and the stages in my main sales pipeline"
パイプラインリスト表示の主要パラメーター: 不要です。
ステージリスト表示の主要パラメーター:
pipeline_id(必須) -- ステージをリスト表示するパイプラインの IDwith_description-- 応答にステージの説明を含めるかどうか (ブール値)
2. リードのリスト表示とフィルタリング
パイプライン、ステータス、日付範囲、担当ユーザー、価格などによる強力なフィルタリングでリードを取得します。
ツール: KOMMO_LIST_LEADS
プロンプトの例:
"Show all leads in pipeline 12345 created this week, sorted by newest first"
主要パラメーター:
query-- すべての入力済みフィールドに対するフリーテキスト検索filter_pipeline_ids-- パイプライン ID でフィルタリング (整数の配列)filter_status-- パイプライン内のステータスでフィルタリング:{"pipeline_id": 123, "status_id": 456}filter_responsible_user_ids-- 割り当てられたユーザー ID でフィルタリングfilter_names-- リード名でフィルタリングfilter_price-- 取引額でフィルタリングfilter_created_at-- 日付範囲:{"from": <unix_timestamp>, "to": <unix_timestamp>}filter_updated_at-- 最終更新の日付範囲filter_closed_at-- クローズの日付範囲order_by_created_at-- ソート: "asc" または "desc"order_by_updated_at-- 更新日でソートlimit-- 1ページあたり最大250件page-- ページネーションのページ番号with_params-- 追加データ: "contacts", "loss_reason", "catalog_elements", "source_id"
3. 新規リードの作成
カスタムフィールド、タグ、パイプライン配置を使用して、Kommo パイプラインに新しい取引を追加します。
ツール: KOMMO_CREATE_LEAD
プロンプトの例:
"Create a new lead called 'Acme Corp Deal' worth $50,000 in pipeline 12345"
主要パラメーター:
name(必須) -- リード/取引の名前price-- 取引額 (整数)pipeline_id-- リードを追加するパイプラインstatus_id-- パイプライン内のステージ (メインパイプラインの最初のステージがデフォルト)responsible_user_id-- 割り当てられたユーザー IDcustom_fields_values-- カスタムフィールド値オブジェクトの配列tags_to_add-- タグの配列 (名前または ID)created_by-- 作成者のユーザー ID (ロボットの場合は 0)loss_reason_id-- 損失の理由 (該当する場合)
4. 既存リードの更新
リードのプロパティ (名前、価格、パイプラインステージ、担当ユーザー、タグ、カスタムフィールドなど) を変更します。
ツール: KOMMO_UPDATE_LEAD
プロンプトの例:
"Move lead 789 to stage 456 in pipeline 123 and update the price to $75,000"
主要パラメーター:
- リード ID (必須)
- 以下の任意の組み合わせ:
name、price、pipeline_id、status_id、responsible_user_id、tags_to_add、tags_to_delete、custom_fields_values
5. タスクの作成
リード、連絡先、または会社にリンクされたフォローアップタスクを割り当てます。
ツール: KOMMO_CREATE_TASK
プロンプトの例:
"Create a follow-up call task for lead 789 due tomorrow assigned to user 42"
主要パラメーター:
- タスクのテキスト/説明
- エンティティタイプと ID (リード、連絡先、会社)
- 担当ユーザー ID
- 期日 (Unix タイムスタンプ)
- タスクタイプ
6. カスタムフィールドの検出
リード、連絡先、または会社のすべてのカスタムフィールドをリスト表示し、CRM スキーマを理解します。
ツール: KOMMO_LIST_CUSTOM_FIELDS
プロンプトの例:
"What custom fields are available for leads in Kommo?"
主要パラメーター:
- エンティティタイプ (leads, contacts, companies)
既知の落とし穴
- 日付フィルターは Unix タイムスタンプを使用します: すべての日付範囲フィルター (
filter_created_at、filter_updated_at、filter_closed_at) は、ISO8601 文字列ではなく、{"from": <timestamp>, "to": <timestamp>}構造の Unix タイムスタンプ形式を必要とします。 - パイプラインとステージ ID が必須です: ステータスでリードをフィルタリングするには、
pipeline_idとstatus_idの両方が必要です。有効な ID を検出するために、常に最初にKOMMO_LIST_LEADS_PIPELINESとKOMMO_LIST_PIPELINE_STAGESを呼び出してください。 - 1ページあたり最大250リード:
limitパラメーターは250に制限されています。大規模なデータセットの場合は、pageパラメーターを使用してページネーションを実装してください。 - カスタムフィールド値の形式: カスタムフィールドは特定のネストされたオブジェクト形式を使用します。値を設定する前に、
KOMMO_LIST_CUSTOM_FIELDSを使用してフィールド ID と期待される値の形式を検出してください。 - ステータスフィルターには両方の ID が必要です:
filter_statusパラメーターは、pipeline_idとstatus_idの両方を結合されたオブジェクトとして必要とします。ステータスのみでフィルタリングすることはできません。 - Created_by 0 はロボットを意味します:
created_byまたはupdated_byを 0 に設定すると、アクションは人間ユーザーではなく、ロボット/自動化に帰属します。
クイックリファレンス
| アクション | ツールスラッグ | 必須パラメーター |
|---|---|---|
| パイプラインをリスト表示 | KOMMO_LIST_LEADS_PIPELINES |
なし |
| パイプラインステージをリスト表示 | KOMMO_LIST_PIPELINE_STAGES |
pipeline_id |
| リードをリスト表示 | KOMMO_LIST_LEADS |
なし (オプションのフィルター) |
| リードを作成 | KOMMO_CREATE_LEAD |
name |
| リードを更新 | KOMMO_UPDATE_LEAD |
リード ID |
| タスクを作成 | KOMMO_CREATE_TASK |
タスクの詳細 |
| カスタムフィールドをリスト表示 | KOMMO_LIST_CUSTOM_FIELDS |
エンティティタイプ |
Powered by Composio
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Kommo Automation
Manage your Kommo CRM sales pipeline -- list and filter leads, navigate pipeline stages, create and update deals, assign tasks, and work with custom fields -- all through natural language commands.
Toolkit docs: composio.dev/toolkits/kommo
Setup
- Add the Composio MCP server to your client configuration:
https://rube.app/mcp - Connect your Kommo account when prompted (OAuth authentication).
- Start issuing natural language commands to manage your CRM.
Core Workflows
1. Navigate Pipelines and Stages
List all lead pipelines, then drill into specific pipeline stages to understand your sales funnel structure.
Tools: KOMMO_LIST_LEADS_PIPELINES, KOMMO_LIST_PIPELINE_STAGES
Example prompt:
"Show all my Kommo pipelines and the stages in my main sales pipeline"
Key parameters for List Pipelines: None required.
Key parameters for List Stages:
pipeline_id(required) -- The pipeline ID to list stages forwith_description-- Include stage descriptions in the response (boolean)
2. List and Filter Leads
Retrieve leads with powerful filtering by pipeline, status, date ranges, responsible users, price, and more.
Tool: KOMMO_LIST_LEADS
Example prompt:
"Show all leads in pipeline 12345 created this week, sorted by newest first"
Key parameters:
query-- Free-text search across all filled fieldsfilter_pipeline_ids-- Filter by pipeline IDs (array of integers)filter_status-- Filter by status within a pipeline:{"pipeline_id": 123, "status_id": 456}filter_responsible_user_ids-- Filter by assigned user IDsfilter_names-- Filter by lead namesfilter_price-- Filter by deal valuefilter_created_at-- Date range:{"from": <unix_timestamp>, "to": <unix_timestamp>}filter_updated_at-- Date range for last updatefilter_closed_at-- Date range for closureorder_by_created_at-- Sort: "asc" or "desc"order_by_updated_at-- Sort by update datelimit-- Max 250 per pagepage-- Page number for paginationwith_params-- Additional data: "contacts", "loss_reason", "catalog_elements", "source_id"
3. Create New Leads
Add new deals to your Kommo pipeline with custom fields, tags, and pipeline placement.
Tool: KOMMO_CREATE_LEAD
Example prompt:
"Create a new lead called 'Acme Corp Deal' worth $50,000 in pipeline 12345"
Key parameters:
name(required) -- Name of the lead/dealprice-- Deal value (integer)pipeline_id-- Pipeline to add the lead tostatus_id-- Stage within the pipeline (defaults to first stage of main pipeline)responsible_user_id-- Assigned user IDcustom_fields_values-- Array of custom field value objectstags_to_add-- Array of tags (by name or ID)created_by-- User ID of creator (0 for robot)loss_reason_id-- Reason for loss (if applicable)
4. Update Existing Leads
Modify lead properties including name, price, pipeline stage, responsible user, tags, and custom fields.
Tool: KOMMO_UPDATE_LEAD
Example prompt:
"Move lead 789 to stage 456 in pipeline 123 and update the price to $75,000"
Key parameters:
- Lead ID (required)
- Any combination of:
name,price,pipeline_id,status_id,responsible_user_id,tags_to_add,tags_to_delete,custom_fields_values
5. Create Tasks
Assign follow-up tasks linked to leads, contacts, or companies.
Tool: KOMMO_CREATE_TASK
Example prompt:
"Create a follow-up call task for lead 789 due tomorrow assigned to user 42"
Key parameters:
- Task text/description
- Entity type and ID (lead, contact, company)
- Responsible user ID
- Due date (Unix timestamp)
- Task type
6. Discover Custom Fields
List all custom fields for leads, contacts, or companies to understand your CRM schema.
Tool: KOMMO_LIST_CUSTOM_FIELDS
Example prompt:
"What custom fields are available for leads in Kommo?"
Key parameters:
- Entity type (leads, contacts, companies)
Known Pitfalls
- Date filters use Unix timestamps: All date range filters (
filter_created_at,filter_updated_at,filter_closed_at) require Unix timestamp format in{"from": <timestamp>, "to": <timestamp>}structure, not ISO8601 strings. - Pipeline and stage IDs are required: To filter leads by status, you need both
pipeline_idandstatus_id. Always callKOMMO_LIST_LEADS_PIPELINESandKOMMO_LIST_PIPELINE_STAGESfirst to discover valid IDs. - Max 250 leads per page: The
limitparameter caps at 250. For large datasets, implement pagination using thepageparameter. - Custom field values format: Custom fields use a specific nested object format. Use
KOMMO_LIST_CUSTOM_FIELDSto discover field IDs and expected value formats before setting values. - Status filter requires both IDs: The
filter_statusparameter requires bothpipeline_idandstatus_idas a combined object -- you cannot filter by status alone. - Created_by 0 means robot: When setting
created_byorupdated_byto 0, the action is attributed to a robot/automation, not a human user.
Quick Reference
| Action | Tool Slug | Required Params |
|---|---|---|
| List pipelines | KOMMO_LIST_LEADS_PIPELINES |
None |
| List pipeline stages | KOMMO_LIST_PIPELINE_STAGES |
pipeline_id |
| List leads | KOMMO_LIST_LEADS |
None (optional filters) |
| Create lead | KOMMO_CREATE_LEAD |
name |
| Update lead | KOMMO_UPDATE_LEAD |
Lead ID |
| Create task | KOMMO_CREATE_TASK |
Task details |
| List custom fields | KOMMO_LIST_CUSTOM_FIELDS |
Entity type |
Powered by Composio