• 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/スキル
SKILLKnowledge Workproductivity

carta-reporting-excel

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

Carta報告用の内部スキルです。Carta報告データをブランド対応したExcelファイルにエクスポート(書き出し)します。 以下のいずれかの場合に起動します: - ユーザーがExcel形式での出力をリクエストした時点で、carta-reporting または carta-reporting-markdown スキルが呼び出す - メインスキルが「Generate Carta Excel —」で始まるメッセージを受け取った場合(アーティファクト・プロンプト・バーのペイロード(入力データ)経由)

原文を表示

Internal subskill for carta-reporting. Exports Carta report data to a branded Excel file. Invoked by carta-reporting or carta-reporting-markdown when the user requests Excel output. Also the entry point when the main skill receives a message starting with "Generate Carta Excel —" (the artifact prompt bar payload).

ユースケース
  • Carta報告データをExcel形式で出力する
  • ブランド対応したExcelファイルにエクスポートする
本文(日本語訳)

Excel 書き出し

このスキルを実行する前にセッションに必要な情報:

  • user_report_pk — キャッシュされたレポートファイルの確認と、ファイルが無い場合の新しいダウンロードURLの取得に必要
  • corporation_id — reporting__get__download_url ツール呼び出しに必要
  • 列設定 — アーティファクト(入力欄)のペイロード(Claude Desktop)から解析するか、Carta 報告書マークダウンの「カスタマイズ確認ステップ」(Claude Code)で確認
  • 企業の正式名、対象日付、利用者の氏名 — Excel 書き出しスクリプトの引数(--title など)として使用

列の情報源:Claude Desktop(アーティファクトペイロード)

ユーザーがアーティファクトペイロードを貼り付けると、Generate Carta Excel — で始まる完全な指示として到着します:

Generate Carta Excel —
Corporation: Meetly, Inc. (ID: 7)
Columns:
  Equity Grants: columns: Grant ID, Award Type, Exercise Price; sorted by: Grant Date desc
  Vesting Schedule: columns: Grant ID, Vest Date, Shares Vested; totals: Shares Vested sum

Corporation: の行を確認して、どの企業の書き出しかを判定します。Columns: の下の各行が 1 つのシートタブです。このエクスプレスで必ず1 つの Excel ファイルが生成され、各シートが 1 タブになります。各シート行を解析し、すべてのシートを 1 回の実行でレポート処理スクリプトに渡します。追加の確認は不要です。

アーティファクトの列リストは最終的なもので、それ以前の会話の内容と統合したり上書きしたりしないでください。

ペイロードのフィールドをレポート処理スクリプトの設定に変換:

ペイロードのフィールド スクリプトの設定キー
columns: A, B, C "columns": ["A", "B", "C"]
sorted by: Col asc "sort": [{"column": "Col", "direction": "asc"}]
totals: Col sum, Col2 avg "aggregations": {"type": "summary", "columns": {"Col": "sum", "Col2": "avg"}}

totals: は必ず aggregations に変換してください — これが Excel の計算式(=SUM(...) など)を生成する唯一の方法です。aggregations がなければ、合計行の値はハードコードされた API の値となり、自動更新されません。

ユーザーがペイロードなしで Excel 書き出しをリクエストした場合は、「アーティファクトの下部にある Excel 書き出しバーをクリックしてそこから選択し、コピーして貼り付けてください。そのとおりの列で Excel を生成します」と案内してください。

列の情報源:Claude Code

カスタマイズ確認ステップで確認された列リストを使用します。

書き出しの実行

/tmp/carta_report_<user_report_pk>.json が利用可能かチェック(このセッションの user_report_pk を使用):

  • ファイルが準備完了 → レポート処理スクリプトに "local_file" として渡す
  • 準備ができていない → call_tool({"name": "reporting__get__download_url", "arguments": { user_report_pk, corporation_id }}) を呼び出して新しい署名付きURL を取得し、代わりに "download_url" として渡す

データサイズや複雑さに関わらず、必ずレポート処理スクリプト → Excel 書き出しスクリプトへと順序立てて処理してください。 openpyxl などで直接 Excel ファイルを作成しないでください。スクリプトが Carta のロゴ、ヘッダー、フォント、数値形式などの書式を適用しており、独自の実装では欠落します。これはデータが少ない場合(例:3 行)やシートを統合する必要がある場合にも適用されます。

複数のシートを 1 タブに統合する場合は、レポート処理スクリプト呼び出しで merge_sheets を使用します。

すべてのシートを 1 回で sheets 辞書形式で渡し、Excel 書き出しスクリプトにパイプします。親セッションが解決済みの場合は、キャッシュされた _report_processor_path を再利用してください(新しい Generate Carta Excel — ペイロード経由のパスではセットされていない可能性があり、find フォールバックが対応します):

UV_PYTHON_DOWNLOADS=never uv run "${_report_processor_path:-$(find ~ -name "report_processor.py" -path "*/carta-reporting/scripts/*" 2>/dev/null | head -1)}" <<'EOF' | \
    UV_PYTHON_DOWNLOADS=never uv run "$(find ~ -name "excel_exporter.py" -path "*/carta-reporting-excel/scripts/*" 2>/dev/null | head -1)" \
        --title "Securities Ledger Report" \
        --as-of-date 2024-01-15 \
        --generated-by "Jane Doe" \
        --output ./{report-slug}.xlsx
{
  "local_file": "<path or use download_url if file not ready>",
  "sheets": {
    "Equity Grants":    {"columns": ["Grant ID", "Award Type", "Exercise Price"],
                         "aggregations": {"type": "summary", "columns": {"Exercise Price": "sum"}}},
    "Vesting Schedule": {"columns": ["Grant ID", "Vest Date", "Shares Vested"],
                         "sort": [{"column": "Vest Date", "direction": "asc"}]}
  }
}
EOF

スクリプトが成功時に絶対パスを出力します。クリック可能なリンクとして表示します:computer://<絶対パス>(例:computer:///Users/jane/meetly-equity-grants.xlsx)。ファイルが準備完了し開く準備ができていることをユーザーに伝えた後、次のステップを提案します:

  • 別のレポートを実行 — 別の企業またはレポートタイプ向け
  • このエクスプレスをカスタマイズ — フィルター、列、または計算式を調整
  • 日付範囲またはフィルターを変更 — 異なるパラメーターで再実行

Carta Excel の書式規則

要素 値
ヘッダー背景色 #c6ebf4
ヘッダーフォント Arial 12pt 太字、#2f3943
ロゴ <スキル基本フォルダ>/assets/Carta_Logo.png、セル A2、120×50px
タイトル セル B2、Arial 16pt 太字
サブタイトル セル B3、Arial 10pt、#666666 — "As of MMM d, yyyy • Generated with Claude AI by {user} at MMM d, yyyy h:mm:ss AM/PM TZ • Date format: MMM D, YYYY"
ヘッダー行 5 行目、自動フィルター付き;ペイン固定は A6 から;データは 6 行目から開始

列タイプ → 数値形式:money → $#,##0.00 · percentage → 0.00% · integer → #,##0 · date → mmm d, yyyy · decimal → #,##0.0000

列幅:文字列/日付 → 35、数値型 → 18

原文(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>

Excel Export

Context expected from the calling skill (must be in session before this skill is invoked):

  • user_report_pk — needed to check for the cached report file and to fetch a fresh download URL if the file is absent
  • corporation_id — needed for call_tool({"name": "reporting__get__download_url", ...})
  • Column config — either parsed from the artifact prompt bar payload (Claude Desktop) or confirmed during the Customization Checkpoint in carta-reporting-markdown (Claude Code)
  • Corporation legal name, as_of_date, user full name — used as --title, --as-of-date, --generated-by args to excel_exporter.py

Column source (Claude Desktop — artifact prompt bar)

When the user pastes an artifact prompt bar payload, it arrives as a complete instruction starting with Generate Carta Excel —:

Generate Carta Excel —
Corporation: Meetly, Inc. (ID: 7)
Columns:
  Equity Grants: columns: Grant ID, Award Type, Exercise Price; sorted by: Grant Date desc
  Vesting Schedule: columns: Grant ID, Vest Date, Shares Vested; totals: Shares Vested sum

Use the Corporation: line to confirm which company the export is for. Each indented line under Columns: is one sheet tab. This is always one Excel file with one tab per sheet. Parse each sheet line and pass all sheets to report_processor.py in a single run using the per-sheet sheets dict format. No further questions needed.

The column list from the artifact is authoritative; do not merge with or override it from the earlier conversation.

Parsing segment fields into report_processor.py config:

Prompt bar field report_processor.py per-sheet key
columns: A, B, C "columns": ["A", "B", "C"]
sorted by: Col asc "sort": [{"column": "Col", "direction": "asc"}]
totals: Col sum, Col2 avg "aggregations": {"type": "summary", "columns": {"Col": "sum", "Col2": "avg"}}

totals: must become aggregations — this is the only way Excel formulas (=SUM(...), =AVERAGE(...)) are generated. If aggregations is omitted, any total rows in the output are hardcoded API values, not live formulas.

If the user asks for Excel without pasting a payload, ask: "Click the Excel export bar at the bottom of the artifact to select it, copy and paste it here — I'll generate the Excel with exactly those columns."

Column source (Claude Code)

Use the column list confirmed during the Customization Checkpoint (resolved in carta-reporting-markdown).

Running the export

Check if /tmp/carta_report_<user_report_pk>.json is available (use user_report_pk from this session):

  • File ready → pass it as "local_file" to report_processor.py.
  • Not ready → call call_tool({"name": "reporting__get__download_url", "arguments": { user_report_pk, corporation_id }}) to get a fresh presigned URL and pass it as "download_url" instead.

Always pipe through report_processor.py → excel_exporter.py, regardless of data size or complexity. Never write Excel files directly with openpyxl or any other library — the scripts handle Carta branding (logo, header, fonts, number formats) that will be missing from any ad-hoc implementation. This applies even when the dataset is small (e.g. 3 rows) or when sheets need to be combined.

For combining sheets into one tab, use merge_sheets in the report_processor.py call.

Pass all sheets in one run using the sheets dict. Pipe into excel_exporter.py. Reuse the cached _report_processor_path if the parent session resolved it (it may be unset on the fresh Generate Carta Excel — prompt-bar path — the find fallback handles that):

UV_PYTHON_DOWNLOADS=never uv run "${_report_processor_path:-$(find ~ -name "report_processor.py" -path "*/carta-reporting/scripts/*" 2>/dev/null | head -1)}" <<'EOF' | \
    UV_PYTHON_DOWNLOADS=never uv run "$(find ~ -name "excel_exporter.py" -path "*/carta-reporting-excel/scripts/*" 2>/dev/null | head -1)" \
        --title "Securities Ledger Report" \
        --as-of-date 2024-01-15 \
        --generated-by "Jane Doe" \
        --output ./{report-slug}.xlsx
{
  "local_file": "<path or use download_url if file not ready>",
  "sheets": {
    "Equity Grants":    {"columns": ["Grant ID", "Award Type", "Exercise Price"],
                         "aggregations": {"type": "summary", "columns": {"Exercise Price": "sum"}}},
    "Vesting Schedule": {"columns": ["Grant ID", "Vest Date", "Shares Vested"],
                         "sort": [{"column": "Vest Date", "direction": "asc"}]}
  }
}
EOF

The script prints the absolute output path on success. Present it as a clickable link: computer://<absolute-path> (e.g. computer:///Users/jane/meetly-equity-grants.xlsx). Tell the user their file is ready to open, then offer next steps:

  • Run another report — for a different company or report type
  • Customize this export — adjust filters, columns, or formulas
  • Change the date range or filters — re-run with different parameters

Carta Excel Formatting Conventions

Element Value
Header background #c6ebf4
Header font Arial 12pt bold, #2f3943
Logo <skill_base_dir>/assets/Carta_Logo.png, cell A2, 120×50px
Title Cell B2, Arial 16pt bold
Subtitle Cell B3, Arial 10pt, #666666 — "As of MMM d, yyyy • Generated with Claude AI by {user} at MMM d, yyyy h:mm:ss AM/PM TZ • Date format: MMM D, YYYY"
Header row Row 5 with auto-filter; freeze panes at A6; data starts at row 6

Column type → number format: money → $#,##0.00 · percentage → 0.00% · integer → #,##0 · date → mmm d, yyyy · decimal → #,##0.0000

Column widths: string/date → 35, number types → 18.

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