SAFE(シンプル約定書)および転換社債の株式転換を、資金調達クローズ時に計算します。 次のような場合に使用: SAFE の転換、転換社債の転換、転換株数、転換計算、価格設定ラウンドにおける金融商品の転換方法、新しいラウンドのクローズ時に未行使の SAFE および転換社債に何が起こるか、といった質問を受けたとき。 ただし、売却・合併・買収時の退出時ペイアウト(売却価格による)には使用しないでください。それらはウォーターフォール(資金の優先配分順序)シナリオに該当するため、ウォーターフォールシナリオ用のスキルを推奨します。
Calculate SAFE and convertible note conversion into equity at a financing close. Use when asked about SAFE conversion, note conversion, conversion shares, conversion math, how instruments convert in a priced round, or what happens to outstanding SAFEs and notes when a new round closes. Do NOT use for exit/sale/acquisition payouts at a sale price — those are waterfall scenarios, prefer a waterfall-scenarios skill.
SAFEと転換社債がある評価額または1株あたり価格でどの程度の株式に転換されるかを計算します。
以下が必要です:
corporation_id — list_accountsから取得ゲートウェイはリストコマンドでデフォルトの
detail=summaryを使用します。このスキルは個別レコードを必要とするため、"detail": "full"を明示的に渡します。
call_tool({"name": "cap_table__get__convertible_notes", "arguments": {"corporation_id": corporation_id, "detail": "full"}}) — SAFE+転換社債call_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}}) — 現在の完全希薄化後株数call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}}) — 現在のFMV(参考用)転換性融資手段から:
is_debt: false = SAFE、true = 転換社債dollar_amount: 投資元本額price_cap: 評価額上限discount_percent: ディスカウント率(例:"20.00" = 20%)interest_rate: 年利(転換社債のみ)total_with_interest: 元本+発生利息(転換社債の転換に使用)has_most_favored_nation_clause: MFN条項付きSAFE — 最良の後続条件で転換status_explanation: 「Outstanding(未決済)」のみでフィルタリング3つのデータソースすべてを1ターンで取得します(並列ツール呼び出し)— 順次取得しないでください:
call_tool({"name": "cap_table__get__convertible_notes", "arguments": {"corporation_id": corporation_id, "detail": "full"}})
call_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}})
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
status_explanation: "Outstanding"でフィルタリング)totals.total_fully_dilutedから現在の完全希薄化後株数を取得各SAFEについて、両方の方法で株数を計算し、より多くの株式を得られる方を使用します:
評価額上限による転換:
上限価格 = 評価額上限 / 事前評価額時の完全希薄化後株数
株数 = 投資額 / 上限価格
ディスカウント転換:
ディスカウント価格 = ラウンド時1株価格 × (1 - ディスカウント率)
株数 = 投資額 / ディスカウント価格
上限なし、ディスカウント率なし(MFN):
株数 = 投資額 / ラウンド時1株価格
SAFEと同じですが:
total_with_interest(元本+発生利息)を使用interest_rateとmaturity_dateが利用可能でtotal_with_interestがない場合、以下を計算:経過年数 = (転換日 - 発行日) / 365
合計 = 元本 × (1 + 利息率 × 経過年数)
必須入力:corporation_id、事前評価額または1株あたりの価格。
不足している場合は、先に進む前にAskUserQuestionを呼び出します(carta-interaction-reference §4.1を参照)。
AskUserQuestion("転換計算に使用する事前評価額または1株あたりの価格は何ですか?")
AI計算:対応 — SAFE・転換社債の投資額を、評価額上限/ディスカウント計算を使って株式に転換します。 計算した株数、価格、パーセンテージ、または保有比率を出力する前に、AI計算ゲートをトリガーします(carta-interaction-reference §6.2を参照)。
サブエージェント禁止:必須入力がない場合、このスキルをバックグラウンドエージェントに委譲しないでください。サブエージェントはAskUserQuestionを呼び出せません。入力がない場合は停止し、ユーザーに直接確認してください。
形式:融資手段ごとの表+サマリーブロック
先に重要な情報:融資手段ごとの詳細を示す前に、ラウンド時1株価格と総転換株数を冒頭で提示します。
並べ替え順:転換株数の降順(最大転換から順に)
出力ラベル:すべてのAI計算出力に、以下の免責事項の接頭辞を付けます。
| 融資手段 | 投資家 | 金額 | 発生利息 | 合計 | 上限 | ディスカウント | 使用方法 | 1株価格 | 株数 |
|---|---|---|---|---|---|---|---|---|---|
| SAFE-1 | 投資家A | $500,000 | — | $500,000 | $6M | 20% | 上限 | $0.60 | 833,333 |
| SAFE-2 | 投資家B | $250,000 | — | $250,000 | $8M | — | 上限 | $0.80 | 312,500 |
| 転換社債-1 | 投資家C | $500,000 | $240,164 | $740,164 | $8M | 20% | ディスカウント | $0.88 | 840,914 |
ラウンド時1株価格: $1.10
事前評価額時の完全希薄化後株数: 10,000,000株
SAFE転換: 1,145,833株(投資額 $750,000)
- 実効平均価格: $0.65/株(ラウンド価格より41%割引)
転換社債転換: 840,914株(元本 $500,000 + 発生利息 $240,164)
- 実効平均価格: $0.88/株(ラウンド価格より20%割引)
総転換株数: 1,986,747株
転換後の完全希薄化後株数: 11,986,747株
⚠️ Claude による分析 — Cartaに保存されたモデルからではなく、資本構成表データから計算。これらの数字を依拠する前に法務に確認することを推奨します。
<!-- 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 -->
Calculate how SAFEs and convertible notes convert into equity at a given round price or valuation.
You need:
corporation_id — get from list_accountsThe gateway defaults to
detail=summaryfor list commands. This skill needs individual records, so"detail": "full"is passed explicitly.
call_tool({"name": "cap_table__get__convertible_notes", "arguments": {"corporation_id": corporation_id, "detail": "full"}}) — SAFEs + convertible notescall_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}}) — current fully diluted countcall_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}}) — current FMV (for reference)From convertible instruments:
is_debt: false = SAFE, true = convertible notedollar_amount: principal investment amountprice_cap: valuation capdiscount_percent: discount rate (e.g. "20.00" = 20%)interest_rate: annual interest rate (notes only)total_with_interest: principal + accrued interest (use this for note conversions)has_most_favored_nation_clause: MFN SAFE — converts at best subsequent termsstatus_explanation: filter to "Outstanding" onlyFetch all three data sources in a single turn (parallel tool calls) — do NOT fetch them sequentially:
call_tool({"name": "cap_table__get__convertible_notes", "arguments": {"corporation_id": corporation_id, "detail": "full"}})
call_tool({"name": "cap_table__get__cap_table_by_share_class", "arguments": {"corporation_id": corporation_id}})
call_tool({"name": "cap_table__get__409a_valuations", "arguments": {"corporation_id": corporation_id}})
status_explanation: "Outstanding")totals.total_fully_dilutedFor each SAFE, compute shares under both methods, use the one giving MORE shares:
Cap conversion:
cap_price = valuation_cap / pre_money_fully_diluted_shares
shares = investment_amount / cap_price
Discount conversion:
discount_price = round_price_per_share * (1 - discount_rate)
shares = investment_amount / discount_price
No cap, no discount (MFN):
shares = investment_amount / round_price_per_share
Same as SAFE but:
total_with_interest (principal + accrued interest) instead of investment amountinterest_rate and maturity_date are available and total_with_interest is not, calculate:years = (conversion_date - issue_date) / 365
total = principal * (1 + interest_rate * years)
Required inputs: corporation_id, pre-money valuation or price per share.
If missing, call AskUserQuestion before proceeding (see carta-interaction-reference §4.1).
AskUserQuestion("What pre-money valuation or price per share should I use for the conversion calculation?")
AI computation: Yes — converts SAFE and note investment amounts into equity shares using cap/discount math. Trigger the AI computation gate (see carta-interaction-reference §6.2) before outputting any computed shares, prices, percentages, or ownership figures.
Subagent prohibition: Do NOT delegate this skill to a background agent if required inputs are missing. A subagent cannot call AskUserQuestion. If inputs are absent, stop and ask the user directly first.
Format: Per-instrument table + summary block
BLUF lead: Lead with the round price per share and total conversion shares before showing the per-instrument breakdown.
Sort order: By conversion shares descending (largest conversion first).
Output label: All AI-computed output must be prefixed with the disclaimer below.
| Instrument | Investor | Amount | Accrued Interest | Total | Cap | Discount | Method Used | Price/Share | Shares |
|---|---|---|---|---|---|---|---|---|---|
| SAFE-1 | Investor A | $500,000 | — | $500,000 | $6M | 20% | Cap | $0.60 | 833,333 |
| SAFE-2 | Investor B | $250,000 | — | $250,000 | $8M | — | Cap | $0.80 | 312,500 |
| CN-1 | Investor C | $500,000 | $240,164 | $740,164 | $8M | 20% | Discount | $0.88 | 840,914 |
Round price per share: $1.10
Pre-money fully diluted: 10,000,000 shares
SAFE conversions: 1,145,833 shares ($750,000 invested)
- Effective avg price: $0.65/share (41% discount to round price)
Note conversions: 840,914 shares ($500,000 principal + $240,164 interest)
- Effective avg price: $0.88/share (20% discount to round price)
Total conversion shares: 1,986,747
Post-conversion fully diluted: 11,986,747
⚠️ Claude's analysis — computed from cap table data, not from a saved Carta model. Verify with counsel before relying on these numbers.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。