📊carta-valuation-history
- プラグイン
- carta-cap-table
- ソース
- GitHub で見る ↗
説明
企業の409A評価履歴および現在の公正市場価値(FMV)を取得します。 次のような場合に使用: 409A評価、FMV、行使価格、普通株価格、または評価の有効期限について質問された場合。 複数企業にまたがるポートフォリオ全体のFMV比較には使用しないでください — その場合は portfolio-benchmarks スキルを優先してください。
原文を表示
Fetch 409A valuation history and current fair market value (FMV) for a company. Use when asked about 409A valuations, FMV, exercise prices, common stock price, or valuation expiration dates. Do NOT use for cross-portfolio FMV comparisons across companies — prefer a portfolio-benchmarks skill.
ユースケース
- ✓409A評価について質問された場合
- ✓公正市場価値(FMV)について質問された場合
- ✓行使価格について質問された場合
- ✓普通株価格について質問された場合
- ✓評価の有効期限について質問された場合
本文(日本語訳)
409A バリュエーション履歴
企業の 409A 公正市場価値(FMV)履歴を取得します。
次のような場合に使用
- 「現在の 409A バリュエーションは?」
- 「FMV の履歴を表示して」
- 「409A の有効期限はいつ?」
- 「普通株式のエクササイズ価格は?」
- 「FMV は最近変わった?」
- 「409A バリュエーションはまだ有効?」
前提条件
corporation_id が必要です。
お持ちでない場合は list_accounts から取得してください。
データ取得
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
オプションパラメータ:
share_class_id: 特定の株式クラスに絞り込むreport_id: 特定のバリュエーションレポートに絞り込む
レスポンス形式
FMV レコードの JSON 配列:
[
{
"id": 484,
"effective_date": "04/25/2024",
"expiration_date": "04/24/2025",
"stale_date": null,
"price": "12.610000000000",
"report_id": 472,
"share_class_id": 9,
"name": "Common",
"common": true,
"corporation_id": 7
}
]
主要フィールド
effective_date: 409A バリュエーションの発効日expiration_date: バリュエーションの有効期限(通常は発効日から 1 年後)stale_date: バリュエーションが陳腐化したとみなされる日(該当する場合)price: 1 株あたりの FMV(文字列形式、例:"12.610000000000")name: 株式クラス名(例: "Common")common: 普通株式の FMV である場合は truereport_id: 409A レポートの IDshare_class_id: 株式クラスの ID
ワークフロー
ステップ 1 — バリュエーションの取得
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
ステップ 2 — 現在のバリュエーションの特定
effective_date の降順でソートし、最新のエントリを現在の 409A として強調表示します。
ステップ 3 — 有効期限の確認
expiration_dateが今日から 90 日以内の場合 — 単なるデータポイントではなく、時間的に緊急なアクション項目としてフラグを立てる: 太字で表示し、残り日数を明示した上で、直ちに更新手続きの開始を推奨します(特にファイナンシングラウンドが進行中の場合、クロージングが有効期限を超える可能性が高いため要注意)。expiration_dateが過去の場合 — 「期限切れ」としてフラグを立てます。
ステップ 4 — 結果の表示
履歴テーブルとトレンドサマリーを表示します(プレゼンテーションセクション参照)。
ゲート条件
必須入力: corporation_id。
未指定の場合は、処理を進める前に AskUserQuestion を呼び出してください(carta-interaction-reference §4.1 参照)。
AI による計算: なし — このスキルは Carta のデータをそのまま提示します。
プレゼンテーション
形式: テーブル+トレンドサマリー
BLUF リード: 履歴テーブルを表示する前に、現在の 1 株あたり FMV とその発効日・有効期限を冒頭に記載します。
ソート順: effective_date の降順(最新を先頭)。
日付形式: MMM d, yyyy(例: "Jan 15, 2026")。
price は通貨形式(例: "$12.61/share")で表示し、末尾のゼロは省略します。
| 発効日 | 有効期限 | FMV/株 | 株式クラス | ステータス |
|---|---|---|---|---|
| Apr 25, 2024 | Apr 24, 2025 | $12.61 | Common | 現在有効 |
| Mar 31, 2023 | Apr 24, 2024 | $10.33 | Common | 期限切れ |
FMV 履歴の棒グラフは表示しないでください — 成熟した企業では値が最大値付近に集中するため、棒グラフは情報量が低くなります(すべての棒がほぼ同じ幅に見えてしまいます)。 テーブルで十分です。 代わりに、テーブルの後に 1 行のトレンドサマリーを追加します:
FMV は YYYY 年から N 倍に成長し、[year] 年以降は[加速/安定した成長]を見せています。
複数の株式クラスが存在する場合は、テーブル内で株式クラス名ごとにグループ化します。
注意事項
priceフィールドは末尾に多数のゼロを含む文字列です — 表示前に必ず解析し、通貨形式にフォーマットしてください。expiration_dateが過去のバリュエーションは、新規グラント価格の設定には絶対に使用しないでください。目立つ形でフラグを立ててください。stale_dateフィールドは null の場合があります。値が存在する場合、正式な有効期限より前にバリュエーションが陳腐化しているとみなされることを示します。- 409A バリュエーションは特定時点のスナップショットです — 重要なイベント(例: 新たなファイナンシングラウンド)が発生した場合、有効期限前であっても現在のバリュエーションが無効となる場合があります。
原文(English)を表示
<!-- Part of the official Carta AI Agent Plugin -->
409A Valuation History
Fetch 409A fair market value (FMV) history for a company.
When to Use
- "What's the current 409A valuation?"
- "Show me the FMV history"
- "When does the 409A expire?"
- "What's the exercise price for common stock?"
- "Has the FMV changed recently?"
- "Is the 409A valuation still valid?"
Prerequisites
You need the corporation_id. Get it from list_accounts if you don't have it.
Data Retrieval
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
Optional params:
share_class_id: filter to a specific share classreport_id: filter to a specific valuation report
Response Format
JSON array of FMV records:
[
{
"id": 484,
"effective_date": "04/25/2024",
"expiration_date": "04/24/2025",
"stale_date": null,
"price": "12.610000000000",
"report_id": 472,
"share_class_id": 9,
"name": "Common",
"common": true,
"corporation_id": 7
}
]
Key Fields
effective_date: date the 409A valuation became effectiveexpiration_date: date the valuation expires (typically 1 year after effective)stale_date: date after which the valuation is considered stale (if applicable)price: FMV per share as a string (e.g."12.610000000000")name: share class name (e.g. "Common")common: true if this is the common stock FMVreport_id: ID of the 409A reportshare_class_id: ID of the share class
Workflow
Step 1 — Fetch Valuations
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
Step 2 — Identify Current Valuation
Sort by effective_date descending. The most recent entry is the current 409A — highlight it.
Step 3 — Check Expiration
- If
expiration_dateis within 90 days of today — flag as a time-sensitive action item, not just a data point: bold it, call out the exact days remaining, and recommend initiating renewal immediately (especially if a financing round is in progress, as closing will likely push past the expiry date). - If
expiration_dateis in the past — flag as "expired".
Step 4 — Present Results
Show the history table and trend summary (see Presentation section).
Gates
Required inputs: corporation_id.
If missing, call AskUserQuestion before proceeding (see carta-interaction-reference §4.1).
AI computation: No — this skill presents Carta data directly.
Presentation
Format: Table + trend summary
BLUF lead: Lead with the current FMV per share and its effective/expiration dates before showing the history table.
Sort order: By effective_date descending (most recent first).
Date format: MMM d, yyyy (e.g. "Jan 15, 2026").
Format price as currency (e.g. "$12.61/share"), trimming trailing zeros.
| Effective | Expires | FMV/Share | Share Class | Status |
|---|---|---|---|---|
| Apr 25, 2024 | Apr 24, 2025 | $12.61 | Common | Current |
| Mar 31, 2023 | Apr 24, 2024 | $10.33 | Common | Expired |
Do not render a bar chart for FMV history — values in mature companies cluster near the maximum, making bars uninformative (all bars look the same width). The table is sufficient. Instead, after the table, add a one-line trend summary:
FMV has grown Nx since YYYY, with [acceleration/steady growth] since [year].
If multiple share classes exist, group by share class name in the table.
Caveats
- The
pricefield is a string with many trailing zeros — always parse and format as currency before displaying. - A valuation with a past
expiration_dateshould never be used for new grant pricing. Flag it prominently. - The
stale_datefield may be null; when present, it indicates the valuation is considered stale before its formal expiration. - 409A valuations are point-in-time snapshots — a material event (e.g., new financing round) can invalidate the current valuation even before its expiration date.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。