Carta CRM の資金調達レコード(企業の資金調達に関する情報)を更新します。 次のような場合に使用: ユーザーが「資金調達を更新する」「資金調達を編集する」「資金調達の詳細を更新する」「資金調達の段階を変更する」「資金調達の項目を更新する」などと言ったとき、または「/update-fundraising」というコマンドが実行されたとき 資金調達 ID または名前を指定できます。ID が提供されない場合は検索を行います。指定された項目のみが変更され、その他のすべての項目は変わりません。
Updates an existing fundraising record in the Carta CRM. Use this skill when the user says things like "update a fundraising", "edit fundraising", "update fundraising details", "change fundraising stage", "update fundraising fields", or "/update-fundraising". Accepts a fundraising ID or name (will search if no ID provided). Only the fields explicitly provided are changed — all other fields are left untouched.
<!-- carta:instrumentation-fallback -->
<重要>
_instrumentation_v2 は匿名のCarta(スキル使用状況の記録機能)です。Carta MCPツール呼び出しの引数に必ず含めるようにしてください。プラグインのフックが実行時にこれを上書きするため、常に送信しても安全です。形式:
_instrumentation_v2: {"skills": ["<プラグイン>:<スキル>", ...], "model": "<モデルID>", "surface": "<値>"}
skills はセッション全体の累積リストです。これまでに読み込まれたCart aスキルをすべて列挙してください(この呼び出しを実行しているスキルだけではなく)。各エントリは"プラグイン:スキル"という形式で、古い順に並べ、最も最近使用したスキルを最後に置いてください。Cartaスキルのみを列挙してください(carta-cap-table:*、carta-crm:*、carta-investors:*)。Carta以外のプラグインのスキルは含めません。
surface はあなたが実行しているClaudeの環境を示します。"chat"(claude.aiまたはClaudアプリ、通常のチャット)、"cowork"(Cowork モード)、"code-terminal"、"code-desktop"、または"excel"です。該当するものがないか判断できない場合は、この項目を完全に省略してください。推測や独自の値の作成はしないでください。
</重要>
既存の資金調達情報を部分的に更新します。提供されたフィールドのみが変更されます。全置き換えではなく、部分更新です。まず資金調達IDを確認し、変更内容を整理してから、更新ツールを呼び出します。
ユーザーが資金調達IDを直接指定した場合は、それを使用してステップ3にスキップしてください。
名前やキーワードのみが示された場合は、まず検索してください:
crm_call_tool({ "name": "crm:search_fundraising", "arguments": { query: "<名前>", limit: 10 } })
複数の資金調達がマッチした場合は、リストを表示し、どれを更新するか確認するようユーザーに尋ねてください(各項目の名前とIDを示す)。
ユーザーに何を変更したいのかを尋ねてください:
get_fundraising_stagesを呼び出して名前→IDを解決)ユーザーがステージ名で移動したい場合は、ステージを取得して名前→IDを解決してください:
crm_call_tool({ "name": "crm:get_fundraising_stages", "arguments": {} })
ユーザーがカスタムフィールドを更新したいが、フィールドIDが不明な場合は、まずスキーマ(情報構造の定義)を取得してください:
crm_call_tool({ "name": "crm:get_fundraising_custom_fields", "arguments": {} })
重要: 明確に変更されるフィールドのみを含めてください。その他はすべて省略してください。
以下を呼び出してください:
crm_call_tool({
"name": "crm:update_fundraising",
"arguments": {
id: "<資金調達ID>",
name: "<更新後の名前>",
stageId: "<ステージID>",
fields: {
"<フィールドID>": "<値>"
}
}
})
更新されないキーは省略してください。
成功時は、何が変更されたかの概要を返答してください:
「資金調達**{名前}**を更新しました(ID:
{ID})。変更内容: [変更されたフィールドのリスト]」
エラーの場合は、エラーメッセージを表示し、以下を提案してください:
/search-fundraisingsを実行して確認してくださいget_fundraising_stagesを実行してオプションを確認してくださいユーザーが同じ変更を複数の資金調達に適用したい場合は、各項目についてステップ1とステップ3〜4を繰り返してください。最後に概要をまとめてください:
「N件の資金調達を更新しました: [名前のリスト]」
<!-- 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>
Partially update an existing fundraising. Only fields provided are modified — this is a partial update, not a replacement. First resolve the fundraising ID, collect what to change, then call the update tool.
If the user provided a fundraising ID directly, use it and skip to Step 3.
If only a name or keyword was given, search first:
crm_call_tool({ "name": "crm:search_fundraising", "arguments": { query: "<name>", limit: 10 } })
If multiple fundraisings match, present the list and ask the user to confirm which one to update (show name and ID for each).
Ask the user what they want to change:
get_fundraising_stages to resolve name → ID)If the user wants to move to a stage by name, fetch the stages to resolve name → ID:
crm_call_tool({ "name": "crm:get_fundraising_stages", "arguments": {} })
If the user wants to update custom fields but isn't sure of field IDs, fetch the schema first:
crm_call_tool({ "name": "crm:get_fundraising_custom_fields", "arguments": {} })
Important: Only include fields that are explicitly being changed. Omit everything else.
Call:
crm_call_tool({
"name": "crm:update_fundraising",
"arguments": {
id: "<fundraising id>",
name: "<updated name>",
stageId: "<stage id>",
fields: {
"<field_id>": "<value>"
}
}
})
Omit any key that is not being updated.
On success, respond with a summary of what changed:
"Fundraising {name} updated (ID:
{id}). Changed: [list of changed fields]"
On error, show the error message and suggest:
/search-fundraisings to find itget_fundraising_stages to list optionsIf the user wants to apply the same change to multiple fundraisings, repeat Steps 1 and 3–4 for each. Summarize at the end:
"Updated N fundraisings: [list of names]"
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。