claude-skills/

Anthropic公式スキル・プラグインの日本語ディレクトリ

last sync 22h ago
スキルOfficialproductivity

🔍carta-discover-commands

プラグイン
carta-cap-table

説明

メタディスカバリー専用 — ユーザーが利用可能なツールやコマンドを把握できていない場合に、「どのようなキャップテーブル関連のツールやコマンドが存在するか」という問いに答えるためのSkillです。 ステークホルダー、グラント、ベスティング、SAFE、ノート、バリュエーション、オーナーシップ、ウォーターフォール、ファイナンシング、エクスポージャーなど、**キャップテーブルに関するトピックが明示されているリクエストには絶対に使用しないでください**。 そのようなリクエストは、ユーザーの表現が曖昧であっても、常に直接的なデータリクエストとして扱われます。 対応する専門のSkillが存在する場合、そちらが必ず優先されます。

原文を表示

META-DISCOVERY ONLY — answers the question "what cap-table tools or commands exist?" when the user is lost about what's available. NEVER use this skill for any request that names a cap-table topic (stakeholders, grants, vesting, SAFEs, notes, valuations, ownership, waterfall, financing, exposure, etc.) — those are always direct data requests, even if the user phrases them vaguely. The matching specialist skill wins every time over this one.

ユースケース

  • 利用可能なツールやコマンドを把握したいとき
  • キャップテーブル関連の機能全体を知りたいとき
  • どのようなSkillが存在するか確認するとき

本文(日本語訳)

<!-- Carta AI Agent Pluginの公式ドキュメントの一部 -->

コマンドを探す

特定のスキルがユーザーのリクエストに対応していない場合に、search_tools を使用して利用可能なコマンドを探します。

ステップ 1 — 関連コマンドを検索する

search_tools({"query": "<ユーザーリクエストのキーワード>"})

ユーザーの意図を捉えたキーワードを使用してください (例: "valuation"、"grant"、"safe"、"stakeholder" など)。

ステップ 2 — 最適なコマンドを選ぶ

返されたツールの一覧を確認します。各ツールには以下の情報が含まれています:

  • name: call_tool に渡すツール名(例: cap_table__get__stakeholders
  • description: そのツールが返す内容
  • inputSchema: 必須パラメータおよびオプションパラメータ

ステップ 3 — 実行する

call_tool({"name": "<tool_name>", "arguments": { ...params }})

ほとんどのコマンドには引き続き corporation_id が必要です。 手元にない場合は、list_accounts から取得してください。

原文(English)を表示

<!-- Part of the official Carta AI Agent Plugin -->

Discover Commands

Use search_tools to find available commands when no specific skill covers the user's request.

Step 1 — Search for Relevant Commands

search_tools({"query": "<keyword from user's request>"})

Use a keyword that captures the user's intent (e.g. "valuation", "grant", "safe", "stakeholder").

Step 2 — Pick the Best Match

Review the returned tools. Each has:

  • name: the tool name to pass to call_tool (e.g. cap_table__get__stakeholders)
  • description: what it returns
  • inputSchema: the required and optional parameters

Step 3 — Execute

call_tool({"name": "<tool_name>", "arguments": { ...params }})

You still need corporation_id for most commands — get it from list_accounts if you don't have it.

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