From carta-cap-table
Ownership structure by share class, voting rights, and liquidation seniority. Use when asked about ownership breakdown, preferred vs common holders, voting power, protective provisions, or consent requirements.
npx claudepluginhub carta/plugins --plugin carta-cap-tableThis skill uses the workspace's default tool permissions.
Surface which preferred stockholders hold voting power and would typically need to consent for major corporate actions (financing rounds, M&A, charter amendments).
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Surface which preferred stockholders hold voting power and would typically need to consent for major corporate actions (financing rounds, M&A, charter amendments).
You need the corporation_id. Get it from list_accounts if you don't have it.
fetch("cap_table:get:rights_and_preferences", { corporation_id })fetch("cap_table:get:cap_table_by_stakeholder", { corporation_id })From share classes:
name: class name (e.g. "Series A Preferred")stock_type: "PREFERRED" or "COMMON"votes_per_share: voting weight (0 = non-voting)seniority: liquidation seniority rank (higher = senior)From cap table by stakeholder:
fetch("cap_table:get:rights_and_preferences", { corporation_id })
fetch("cap_table:get:cap_table_by_stakeholder", { corporation_id })
This returns per-stakeholder ownership broken down by share class.
See Step 4 below for table format.
From the share class data, identify preferred classes (stock_type = "PREFERRED" or votes_per_share > 0).
From the cap table, identify stakeholders holding preferred shares. Sort by:
Preferred Stockholders with Voting Rights
| Holder | Share Class | Shares | FD % | Votes/Share | Seniority |
|---|---|---|---|---|---|
| ... | ... | ... | ... | ... | ... |
Common Stockholders (if relevant — founders, employees)
| Holder | Shares | FD % |
|---|---|---|
| ... | ... | ... |
Carta surfaces share ownership and voting structure, but does not expose actual consent thresholds or protective provision terms — those live in the Stockholders' Agreement and Certificate of Incorporation. This data identifies who holds voting preferred shares; an attorney must interpret what approvals are required and at what thresholds.
If the user asks about specific thresholds (e.g., "do we need 60% of Series A to approve?"), acknowledge the limitation and recommend reviewing the governing documents.