📊carta-round-history
- プラグイン
- carta-cap-table
- ソース
- GitHub で見る ↗
説明
企業の資金調達ラウンド履歴 — 各プライスドラウンドの実施日、発行された株式クラス、1株あたりの価格、調達総額、および参加した投資家の情報を含みます。 企業の資金調達履歴全体にわたり、いつ・誰から・いくら調達したかを網羅します。
原文を表示
Financing round history for a company — each priced round with its date, share class issued, price per share, total cash raised, and the investors who participated. Covers what was raised and from whom across the company's funding history.
ユースケース
- ✓企業の資金調達ラウンドの実施日を確認したい
- ✓各ラウンドで発行された株式クラスを調べたい
- ✓1株あたりの価格を把握したい
- ✓ラウンド別の調達総額を確認したい
- ✓資金調達に参加した投資家情報を確認したい
本文(日本語訳)
ラウンド履歴
資金調達の履歴を取得してラウンド別にまとめます。または、株式クラス別のキャップテーブルを使って概要をすばやく確認することもできます。
次のような場合に使用
- 「資金調達の履歴を見せて」
- 「この会社はどんなラウンドで資金調達した?」
- 「シリーズAで調達した資本はいくら?」
- 「すべての資金調達ラウンドを一覧表示して」
- 「各ラウンドに誰が投資した?」
- 「シードの1株あたりの価格は?」
前提条件
corporation_id が必要です。
持っていない場合は list_accounts から取得してください。
データの取得
詳細モード: このコマンドは
detail=summary(ラウンド数・総調達額・ラウンド別内訳 — 高速)とdetail=full(投資家ごとのデータ・発行日・1株あたり価格を含む個別証券レコード)をサポートしています。 ユーザーの意図に基づいて最初から適切なモードを選んでください — 後述のワークフローを参照。
並び順: サーバーサイドのソートには
orderingを渡します — 例: 最大投資額順なら-cash_paid。 使用できるフィールド:issue_date、quantity、stakeholder_name、cash_paid、prefix_number。 「上位N名の投資家」クエリにはdetail=fullと組み合わせてください。それ以外はデフォルト(時系列順)で問題ありません。
call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id}})
これはアプリ内の「Financing History」タブと同じデータです。
代替手段: 資金調達履歴を呼び出さずに概要だけ確認したい場合は、株式クラス別のキャップテーブルを使用してください:
call_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}})
優先株式クラスがそれぞれ1つのラウンドを表します。 より高速ですが詳細は省略されます: 個別の投資家情報・発行日・1株あたり価格は含まれません。
主要フィールド
round_name: 資金調達ラウンドの名称(例: "Series A Preferred")issue_date: 証券の発行日cash_paid: 投資家がこの証券に支払った金額quantity: 発行された株式数issue_price: 1株あたりの価格stakeholder_name: 投資家名label: 証券ラベル(例: "PB-9")is_grant: オプショングラントの場合は true(価格設定されたラウンドではない)is_canceled: 証券がキャンセルされた場合は true — 集計から除外することis_converted: 証券がコンバートされた場合は true(例: SAFE → 優先株式)
レスポンス形式
{
"count": 120,
"results": [
{
"id": 666,
"pk_key": "certificate_pk",
"stakeholder_name": "Example Holder",
"currency": "USD",
"label": "PB-9",
"round_name": "Series B Preferred",
"quantity": 180000.0,
"issue_date": "2014-09-14",
"cash_paid": 219600.0,
"issue_price": "1.22",
"is_grant": false,
"is_canceled": false,
"is_converted": false
}
]
}
ワークフロー
ステップ1 — 資金調達履歴の取得
ユーザーの意図に基づいて詳細モードを選択してください — まずsummaryで取得してから再取得するのは避けてください:
-
概要の質問(「資金調達の履歴を見せて」「この会社はどんなラウンドで調達した?」「いくら調達した?」など):
detailを省略します — summaryモードはラウンド数・総調達額・ラウンド別内訳を即座に返します。 テーブルと棒グラフで提示してください(後述のプレゼンテーションセクションを参照)。call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id}}) -
ラウンドごとの詳細(「各ラウンドに誰が投資した?」「1株あたりの価格は?」「ラウンド別に投資家を一覧表示して」など、投資家名・発行日・1株あたり価格を求めるリクエストすべて): 直接
detail=fullを使用します。call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id, "detail": "full"}})
迷ったときは、資金調達履歴にはsummaryで十分なことがほとんどです — ラウンド名・日付・合計金額はすでに含まれています。
detail=full で取得した後は、ラウンドごとに集計してください:
round_nameでresultsをグループ化する- 各ラウンドで以下を集計する:
cash_paidの合計、quantityの合計、投資家数、最も早いissue_date - キャンセルされていないエントリの
issue_priceを1株あたりの価格として使用する is_canceledが true のエントリを除外する
ゲート(必須確認事項)
必須入力: corporation_id。
未取得の場合は、処理を進める前に AskUserQuestion を呼び出してください(carta-interaction-reference §4.1 参照)。
AI演算: なし — このスキルはCartaのデータをそのまま提示します(集計は機械的なグループ化であり、モデルによる出力ではありません)。
プレゼンテーション
形式: テーブル + ASCIIバーチャート
BLUF(結論ファースト): テーブルを表示する前に、ラウンド総数と総調達額を最初に述べてください。
並び順: issue_date の昇順(時系列順)。
日付形式: MMM d, yyyy(例: "Jan 15, 2026")。
| ラウンド | クローズ日 | 1株あたり価格 | 投資家数 | 発行株式数 | 調達額 |
|---|---|---|---|---|---|
| Series Seed Preferred | Jun 30, 2013 | $0.27 | 5 | 1,422,435 | $383,380 |
| Series A Preferred | Nov 15, 2013 | $0.44 | 8 | 3,697,191 | $1,645,250 |
テーブルの後に、ラウンドごとの調達額をASCIIバーチャートで表示してください(時系列順)。 バーの最大幅は40文字にスケーリングします。 調達額がゼロのラウンド(オプショングラントなど)は除外してください。
Cash Raised by Round
Series Seed Preferred ████ $383K
Series A Preferred ████████████████ $1.6M
Series B Preferred ████████████████████████████████████████ $3.7M
バーの幅 = (cash_raised / max_cash_raised) × 40、最も近い整数に丸める。 大きな数値は読みやすさのために $XM または $XK 形式でフォーマットしてください。
注意事項
is_canceled: trueのエントリはすべての集計から除外しなければなりません。- コンバートされた証券(
is_converted: true)は、コンバート後のエントリと並んで表示される場合があります — 株式数や調達額を合計する際に二重計上しないように注意してください。 - オプショングラント(
is_grant: true)は資金調達履歴に表示されますが、価格設定されたラウンドではありません — 調達額のバーチャートからは除外してください。 - クイックサマリー(オプション2)には、投資家ごとの詳細・発行日・1株あたり価格は含まれません。
原文(English)を表示
<!-- Part of the official Carta AI Agent Plugin -->
Round History
Fetch financing history and summarize by round, or use the cap table by share class for a quick overview.
When to Use
- "Show me the funding history"
- "What rounds has this company raised?"
- "How much capital was raised in the Series A?"
- "List all financing rounds"
- "Who invested in each round?"
- "What was the price per share for the seed?"
Prerequisites
You need the corporation_id. Get it from list_accounts if you don't have it.
Data Retrieval
Detail mode: This command supports
detail=summary(round count, total cash raised, by-round breakdown — fast) anddetail=full(individual security records with per-investor data, issue dates, price per share). Choose the right mode upfront based on user intent — see Workflow.
Ordering: Pass
orderingto sort server-side — e.g.-cash_paidfor largest investments first. Fields:issue_date,quantity,stakeholder_name,cash_paid,prefix_number. Combine withdetail=fullfor "top N investors" queries; otherwise the default (chronological) order is fine.
call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id}})
This is the same data that powers the in-app "Financing History" tab.
Alternative: For a quick overview without any financing history call, use the cap table by share class:
call_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}})
Each preferred share class represents a round. Faster but less detail: no individual investors, no issue dates, no price per share.
Key Fields
round_name: name of the financing round (e.g. "Series A Preferred")issue_date: date the security was issuedcash_paid: amount paid by the investor for this securityquantity: number of shares issuedissue_price: price per sharestakeholder_name: investor namelabel: security label (e.g. "PB-9")is_grant: true if this is an option grant (not a priced round)is_canceled: true if the security was canceled — exclude from aggregatesis_converted: true if the security converted (e.g. SAFE → preferred)
Response Format
{
"count": 120,
"results": [
{
"id": 666,
"pk_key": "certificate_pk",
"stakeholder_name": "Example Holder",
"currency": "USD",
"label": "PB-9",
"round_name": "Series B Preferred",
"quantity": 180000.0,
"issue_date": "2014-09-14",
"cash_paid": 219600.0,
"issue_price": "1.22",
"is_grant": false,
"is_canceled": false,
"is_converted": false
}
]
}
Workflow
Step 1 — Fetch Financing History
Choose detail mode based on the user's intent — do NOT default to summary then re-fetch:
-
Overview questions ("show me the funding history", "what rounds has this company raised?", "how much capital was raised?"): omit
detail— summary mode returns round count, total cash raised, and a by-round breakdown instantly. Present with the table and bar chart (see Presentation section).call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id}}) -
Per-round details ("who invested in each round?", "what was the price per share?", "list all investors by round", any request for investor names, issue dates, or price per share): use
detail=fulldirectly.call_tool({"name": "cap_table__get__financing_history", "arguments": {"corporation_id": corporation_id, "detail": "full"}})
When in doubt, summary is usually sufficient for financing history — it already includes round names, dates, and totals.
After fetching with detail=full, aggregate by round:
- Group results by
round_name - For each round, aggregate: total
cash_paid, totalquantity, count of investors, earliestissue_date - Use
issue_pricefrom any non-canceled entry as the price per share - Filter out entries where
is_canceledis true
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 (aggregation is mechanical grouping, not modeled output).
Presentation
Format: Table + ASCII bar chart
BLUF lead: Lead with the total number of rounds and total cash raised before showing the table.
Sort order: By issue_date ascending (chronological order).
Date format: MMM d, yyyy (e.g. "Jan 15, 2026").
| Round | Close Date | Price/Share | Investors | Shares Issued | Cash Raised |
|---|---|---|---|---|---|
| Series Seed Preferred | Jun 30, 2013 | $0.27 | 5 | 1,422,435 | $383,380 |
| Series A Preferred | Nov 15, 2013 | $0.44 | 8 | 3,697,191 | $1,645,250 |
After the table, render an ASCII bar chart of cash raised per round (chronological order). Scale bars to max width 40 chars. Exclude rounds with zero cash raised (e.g. option grants).
Cash Raised by Round
Series Seed Preferred ████ $383K
Series A Preferred ████████████████ $1.6M
Series B Preferred ████████████████████████████████████████ $3.7M
Each bar width = (cash_raised / max_cash_raised) * 40, rounded to nearest integer. Format large numbers as $XM or $XK for readability.
Caveats
- Entries with
is_canceled: truemust be excluded from all aggregates. - Converted securities (
is_converted: true) may appear alongside their post-conversion entries — avoid double-counting when summing shares or cash. - Option grants (
is_grant: true) appear in financing history but are not priced rounds — exclude from the cash-raised bar chart. - The quick summary (Option 2) lacks per-investor detail, issue dates, and price per share.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。