• Projects
  • Service
  • About
  • branding.bz
  • Podcast
  • Tips
  • FAQ
  • Recruit
  • Download
  • Contact
  • branding.bz(ブランド構築SaaS)
  • DESIGN NOW(デザインメディア)
  • X
  • LinkedIn
  • Spotify
  • Facebook

213-0011 神奈川県川崎市高津区久本3-6-7-303

© 2026 ID INC. All rights reserved

claude-skills/スキル
SKILLOfficialproductivity

add-investor

プラグイン
carta-crm
ソース
GitHub で見る ↗
説明

Carta CRM MCP サーバーを通じて、Carta CRM(顧客管理システム)に1件以上の投資家レコードを追加します。 **次のような場合に使用:** - ユーザーが「投資家を追加する」「投資家をCarta CRMに追加する」「投資家レコードを作成する」「このVCファンドをCRMに保存する」などと言った場合 投資家情報を会話形式で収集した後、MCP サーバー経由で作成します。

原文を表示

Adds one or more investor records to the Carta CRM via the Carta CRM MCP Server. Use this skill when the user says things like "add an investor", "/add-investor", "add investor to Carta CRM", "create investor record", "add this VC fund to the CRM", or "save investor data". Collects investor information conversationally, then creates it via the MCP server.

ユースケース
  • 投資家レコードをCRMに追加するとき
  • VCファンドを顧客管理システムに保存するとき
  • 投資家情報を会話から収集して作成するとき
本文(日本語訳)

<!-- carta:instrumentation-fallback --> <IMPORTANT> _instrumentation_v2 は、Cartaのスキル使用状況を匿名で記録するテレメトリ(利用データ収集)です。Carta MCPツール呼び出し時の引数に必ず含めてください。プラグインのフック処理が実行時に上書きするため、常に送信しても安全です。形式: _instrumentation_v2: {"skills": ["<plugin>:<skill>", ...], "model": "<model-id>", "surface": "<value>"}

skills はセッション全体で累積します。これまでに読み込まれたすべてのCartaスキルを記載し、このツール呼び出しの直接的な原因となったスキルだけでなく全て含めてください。各項目は"plugin:skill"の形式で名前空間を付け、古い順に並べ、最後に最近使用したスキルを置きます。Cartaスキル(carta-cap-table:*、carta-crm:*、carta-investors:*)のみを記載してください。Carta以外のプラグインのスキルは含めないでください。

surface は、実行しているClaudeの環境を指します。"chat"(claude.aiまたはClaudeアプリ、つまり通常のチャット。Cowork以外)、"cowork"(Coworkモード)、"code-terminal"、"code-desktop"、"excel" のいずれかです。当てはまるものがない場合または判断できない場合は、この項目を完全に省略してください。推測や造語は避けてください。 </IMPORTANT>

概要

ユーザーがCartaのCRM(顧客関係管理ツール)を使用して、1件以上の投資家レコードを作成するのをサポートします。create_investorMCPツールを利用して、投資家の情報を会話形式で収集し、必須項目を検証してからツールを実行します。

ステップ1 — 利用可能なカスタムフィールドを確認する(推奨)

カスタムフィールドツールを呼び出して、ユーザーの組織で設定されているフィールドを確認します:

crm_call_tool({ "name": "crm:get_investor_custom_fields", "arguments": {} })

返されたフィールドIDとラベルを参考に、投資家データの収集を進めます。 呼び出しに失敗しても、そのまま進めてください。カスタムフィールドはオプションです。

ステップ2 — 投資家情報を収集する

ユーザーに以下を聞きます:

  • 名前(必須)— 投資企業の名称(例:「Sequoia Capital」「a16z」)
  • カスタムフィールド(オプション)— ステップ1で返されたフィールド(例:ウェブサイト、所在地、業界、概要、タグ)

ユーザーがメッセージ内で既に詳細情報を提供している場合は、改めて尋ねずに直接その情報を抽出してください。

ステップ3 — 投資家レコードを作成する

以下を呼び出します:

crm_call_tool({
  "name": "crm:create_investor",
  "arguments": {
    name: "<investor name>",
    fields: {
      "<field_id>": "<value>"
    }
  }
})

カスタムフィールドのデータがない場合は、fieldsを完全に省略してください。

ステップ4 — 結果を報告する

成功時のレスポンス:

「投資家 {name} を作成しました(ID: {id})。」

エラー時は、エラーメッセージを表示し、以下を提案してください:

  • name が入力されており、空でないことを確認する
  • カスタムフィールドのIDが get_investor_custom_fields で返されたキーと一致していることを確認する

複数の投資家を追加する場合

ユーザーが複数の投資家を一度に追加したい場合は、ステップ2~4を各投資家について繰り返します。 すべて完了した後、以下のように要約してください:

「N件の投資家を作成しました: [名前とIDのリスト]」

原文(English)を表示

<!-- carta:instrumentation-fallback --> <IMPORTANT> _instrumentation_v2 is anonymous Carta skill-usage telemetry. ALWAYS include it in your Carta MCP tool-call arguments — the plugins' hooks overwrite it when they run, so always sending it is safe. Shape: _instrumentation_v2: {"skills": ["<plugin>:<skill>", ...], "model": "<model-id>", "surface": "<value>"} skills is cumulative for the session: list every Carta skill loaded so far, not only the one driving this call. Namespace each entry "plugin:skill" and keep them oldest-first, with the most recently used skill last. List only Carta skills (carta-cap-table:*, carta-crm:*, carta-investors:*) — never skills from non-Carta plugins. surface is the Claude surface you are running in: "chat" (claude.ai or the Claude app, i.e. regular chat, not Cowork), "cowork" (Cowork mode), "code-terminal", "code-desktop", or "excel". Omit it entirely if none of those describe your surface or you cannot tell — do not guess and do not invent another value. </IMPORTANT>

Overview

Help the user create one or more investor records in the Carta CRM using the create_investor MCP tool. Collect investor details conversationally, validate required fields, then call the tool.

Step 1 — Discover available custom fields (optional but recommended)

Call the custom fields tool to see what fields the tenant has configured:

crm_call_tool({ "name": "crm:get_investor_custom_fields", "arguments": {} })

Use the returned field IDs and labels as hints when collecting investor data. If the call fails, proceed without it — custom fields are optional.

Step 2 — Collect investor information

Ask the user for:

  • Name (required) — the investor firm name (e.g. "Sequoia Capital", "a16z")
  • Custom fields (optional) — any fields returned in Step 1 (e.g. website, location, industry, about, tags)

If the user has already provided details in their message, extract them directly without re-asking.

Step 3 — Create the investor

Call:

crm_call_tool({
  "name": "crm:create_investor",
  "arguments": {
    name: "<investor name>",
    fields: {
      "<field_id>": "<value>"
    }
  }
})

Omit fields entirely if no custom field data was provided.

Step 4 — Report result

On success, respond with:

"Investor {name} created successfully (ID: {id})."

On error, show the error message and suggest:

  • Check that name is provided and non-empty
  • Verify custom field IDs match the keys returned by get_investor_custom_fields

Adding multiple investors

If the user wants to add multiple investors at once, repeat Steps 2–4 for each one. After all are done, summarize:

"Created N investors: [list of names with IDs]"

原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。