• 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

carta-witness-signatures

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

株式オプション、RSA(制限付き株式ユニット)、PIU(パフォーマンス連動投資ユニット)の証人と配偶者同意署名のリクエストの状態を確認します。誰がまだ署名が必要か、何が署名待ち・署名済み・期限切れの状態にあるかを表示します。1件の報酬、1社、またはポートフォリオ全体を対象に閲覧できます。閲覧のみの機能です。

原文を表示

Status of witness and spousal-consent signature requests on option grants, RSAs, PIUs — who still needs to sign, and what's awaiting signature, signed, or expired. Covers one award, one company, or a whole portfolio. Read-only.

ユースケース
  • 署名状態の進捗を確認するとき
  • 署名待ちの対象者を把握するとき
  • 複数の報酬案件の署名状況を一覧閲覧するとき
本文(日本語訳)

<!-- 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>

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

証人およびパートナー同意署名

一部の株式報酬が完全に確定する前に必要となる追加署名の状況を表示します。

背景

株式報酬が付与される際、受取人以外の人物からの署名が必要になることがあります:

  • 証人署名 — 受取人が署名する様子を見守ったことを確認する第三者による署名。これは一部の地域で法的に求められます。
  • パートナー同意 — 受取人の配偶者が報酬を承認するために署名します。これは婚姻中に得られた株式に対する配偶者の利益を認める地元の法律がある場合に適用されます。

各署名要求は個別の報酬に紐付けられます。要求は以下のステージを経ます:

ステージ 意味
詳細を待機中 要求は存在しますが、証人または配偶者の名前とメールアドレスがまだ追加されていません。
署名を待機中 詳細が入力され、署名リンクが送信されました。証人または配偶者の署名を待っています。
署名済み 完了 — 証人または配偶者が署名しました。
期限切れ 署名リンクの期限が署名される前に過ぎました。署名リンクは送信後約30日で期限切れになります。

次の3種類の報酬が署名要求を含む可能性があります:ストックオプション付与、RSA(制限付き株式報酬)、PIU(利益分配権)。

次のような場合に使用:

  • 「ジョーダンのストックオプションに証人が署名しましたか?」
  • 「どの報酬がまだ署名を待機中ですか?」
  • 「この報酬のパートナー同意は完了していますか?」
  • 「この企業で期限切れの署名リンクを表示してください」
  • 「ポートフォリオ全体で未処理の証人署名をリストアップしてください」

前提条件

  • 1社または1つの報酬 → 企業が必要です。list_accounts から取得してください(企業は corporation_pk: エントリとして表示されます)。
  • 単一の報酬 → その種類(OPTION_GRANT、RSA、PIU)と報酬自体も必要です。以下の企業全体リストがこれらを返すため、既にどの報酬かわからない場合はそこから開始してください。
  • ポートフォリオ → ポートフォリオが必要です。list_accounts から取得してください(ポートフォリオは organization_pk: エントリとして表示されます)。これは投資家またはファーム全体で保有・管理している企業の全体像です。

必須入力がない場合、取得前に AskUserQuestion で確認してください(carta-interaction-reference §4.1 参照)。

データ取得

質問の範囲に一致するコマンドを選択してください。

1社について — 1社の全要求:

call_tool({"name": "cap_table__list__witness_signatures_for_corporation", "arguments": {"corporation_id": corporation_id}})

オプションフィルタ:request_type(WITNESS または SPOUSAL_CONSENT)、status(PENDING、FILLED、SIGNED、EXPIRED のリスト)、page、page_size。

1つの報酬について — 既に特定した単一報酬の全要求:

call_tool({"name": "cap_table__get__witness_signatures_for_security", "arguments": {"corporation_id": corporation_id, "security_type": "OPTION_GRANT", "security_id": security_id}})

security_type は OPTION_GRANT、RSA、PIU のいずれかです。

ポートフォリオについて — ポートフォリオ内のすべての企業にまたがる要求:

call_tool({"name": "cap_table__list__witness_signatures_for_portfolio", "arguments": {"portfolio_id": portfolio_id}})

オプションフィルタ:request_type、status、issuer_id(1社に限定)、page、page_size。

ポートフォリオビューのパートナー同意:ポートフォリオリストは issuer_id で1社に限定しない限り、証人要求のみを返します。パートナー同意要求は、この機能が有効になっている1社についてのみ表示されます。ユーザーがポートフォリオ全体のパートナー同意について質問する場合、1社ずつに限定してください。

デフォルトステータスフィルタ:status を指定しない場合、結果は通常注意が必要な要求を表示します(署名待機中と期限切れ)。詳細待機中または既に署名済みの要求を確認するには、status を明示的に指定してください(例:"status": ["SIGNED"])。

主要フィールド

各要求には以下が含まれます:

  • status:PENDING、FILLED、SIGNED、EXPIRED — 背景情報セクションの表にわかりやすく対応します。
  • request_type:WITNESS または SPOUSAL_CONSENT。
  • expires_at:署名期限。
  • issuer_name:報酬を付与した企業。
  • security_label:報酬の参照(例:「ES-1007」)。
  • security_type:OPTION_GRANT、RSA、PIU。
  • witness_name、witness_email:署名が必要な証人または配偶者(詳細が追加されるまで空白)。
  • acceptance_date:受取人が報酬を受け入れた日付。

制限

必須入力:企業コマンドおよび報酬コマンドの場合は企業(corporation_id)、ポートフォリオコマンドの場合はポートフォリオ(portfolio_id)、さらに単一報酬コマンドの場合は security_type と報酬。欠落している場合は進める前に AskUserQuestion を呼び出してください。

表示

形式:表

冒頭で要点を示す:まず件数を示します — 署名待機中、署名済み、期限切れそれぞれの件数 — その後に表を表示します。

署名要求4件:署名待機中2件、署名済み1件、期限切れ1件。

コードを普通の言葉に変換します。 生のステータス、種類、内部参照を決して表示しないでください。「署名待機中」、「証人」/「パートナー同意」、「ストックオプション」/「RSA」/「PIU」を使用します。各要求を企業、報酬参照、人物の名前で特定してください。内部番号は使用しないでください。

並べ替え順序:署名待機中を最初に、次に期限が最も近い順、期限切れ、最後に署名済み。

日付形式:MMM d, yyyy(例:「Jan 15, 2026」)。

企業 報酬 種類 署名者 ステータス 期限
Acme ES-1007(ストックオプション) 証人 Dana Lee 署名待機中 Jun 1, 2026
Acme PIU-12(利益分配権) パートナー同意 Sam Rivera 署名済み —

単一報酬の場合、報酬と件数をリードしてから、その要求をリストアップします。

次のステップで終わります — 例えば、期限が最も近い要求を指摘するか、リマインダーと期限延長は Carta で処理されることを注記します。

注意事項

  • 閲覧専用:このスキルは詳細の追加、リマインダーの送信、期限の延長はできません。これらは Carta で実行されます。
原文(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>

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

Witness & Spousal-Consent Signatures

Show the status of the extra signatures some equity awards need before they're fully in place.

Background

When someone is granted equity, the award sometimes needs a signature from a person other than the recipient before it's complete:

  • Witness — an independent person who confirms they watched the recipient sign. This is a legal requirement in some markets.
  • Spousal consent — the recipient's spouse signs to acknowledge the award. This applies where local marital-property rules give a spouse an interest in equity earned during the marriage.

Each one is tracked as a signature request tied to a single award. A request moves through these stages:

Stage What it means
Awaiting details The request exists, but the witness or spouse's name and email haven't been added yet.
Awaiting signature Details are in and the signing link has been sent. Waiting on the witness or spouse to sign.
Signed Done — the witness or spouse has signed.
Expired The signing link's deadline passed before it was signed. Signing links expire about 30 days after they're sent.

These three awards can carry signature requests: option grants, RSAS (restricted stock awards), and PIUs (profits interest units).

When to Use

  • "Did the witness sign Jordan's option grant?"
  • "Which grants are still waiting on a signature?"
  • "Is the spousal consent done for this award?"
  • "Show me any expired signing links for this company."
  • "List the outstanding witness signatures across my portfolio."

Prerequisites

  • One company or one award → you need the company. Get it from list_accounts (companies appear as corporation_pk: entries).
  • A single award → you also need its type (OPTION_GRANT, RSA, or PIU) and the award itself. The company-wide list (below) returns these, so start there if you don't already know which award you mean.
  • A portfolio → you need the portfolio. Get it from list_accounts (portfolios appear as organization_pk: entries) — this is the investor or firm view across the companies they hold or manage.

If a required input is missing, ask for it with AskUserQuestion before fetching (see carta-interaction-reference §4.1).

Data Retrieval

Pick the command that matches the scope of the question.

One company — every request for a single company:

call_tool({"name": "cap_table__list__witness_signatures_for_corporation", "arguments": {"corporation_id": corporation_id}})

Optional filters: request_type (WITNESS or SPOUSAL_CONSENT), status (a list of PENDING, FILLED, SIGNED, EXPIRED), page, page_size.

One award — every request on a single award you've already identified:

call_tool({"name": "cap_table__get__witness_signatures_for_security", "arguments": {"corporation_id": corporation_id, "security_type": "OPTION_GRANT", "security_id": security_id}})

security_type is one of OPTION_GRANT, RSA, PIU.

A portfolio — requests across every company in a portfolio:

call_tool({"name": "cap_table__list__witness_signatures_for_portfolio", "arguments": {"portfolio_id": portfolio_id}})

Optional filters: request_type, status, issuer_id (narrow to one company), page, page_size.

Spousal consent in portfolio view: the portfolio list returns witness requests only, unless you narrow it to a single company with issuer_id. Spousal-consent requests appear only for a single company that has the feature turned on. If a user asks about spousal consent across a whole portfolio, narrow to one company at a time.

Default status filter: when you don't pass status, the results show the requests that usually need attention — those awaiting signature and those that have expired. To see requests still awaiting details or already signed, pass status explicitly (e.g. "status": ["SIGNED"]).

Key Fields

Each request carries:

  • status: PENDING, FILLED, SIGNED, or EXPIRED — map to the friendly labels in the Background table.
  • request_type: WITNESS or SPOUSAL_CONSENT.
  • expires_at: the signing deadline.
  • issuer_name: the company that granted the award.
  • security_label: the award's reference (for example, "ES-1007").
  • security_type: OPTION_GRANT, RSA, or PIU.
  • witness_name, witness_email: the witness or spouse who needs to sign (blank until details are added).
  • acceptance_date: when the recipient accepted the award.

Gates

Required inputs: a company (corporation_id) for the company and award commands; a portfolio (portfolio_id) for the portfolio command; plus security_type and the award for the single-award command. If missing, call AskUserQuestion before proceeding.

Presentation

Format: Table.

BLUF lead: Lead with the counts — how many are awaiting signature, signed, and expired — then the table.

4 signature requests: 2 awaiting signature, 1 signed, 1 expired.

Translate codes to plain language. Never show the raw status, type, or any internal reference. Use "Awaiting signature", "Witness" / "Spousal consent", and "Option grant" / "RSA" / "PIU". Identify each request by company, award reference, and the person's name — not by any internal number.

Sort order: Awaiting signature first, then by soonest deadline; expired next; signed last.

Date format: MMM d, yyyy (e.g. "Jan 15, 2026").

Company Award Type Needs to sign Status Deadline
Acme ES-1007 (Option grant) Witness Dana Lee Awaiting signature Jun 1, 2026
Acme PIU-12 (Profits interest unit) Spousal consent Sam Rivera Signed —

For a single award, lead with the award and the count, then list its requests.

End with a next step — for example, point out which requests are closest to expiring, or note that reminders and deadline extensions are handled in Carta.

Caveats

  • Read-only: this skill can't add details, send reminders, or extend deadlines — those are done in Carta.

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