Claude
Skills
Sign in
Back

carta-discover-commands

Included with Lifetime
$97 forever

META-DISCOVERY ONLY — answers the question "what cap-table tools or commands exist?" when the user is lost about what's available. NEVER use this skill for any request that names a cap-table topic (stakeholders, grants, vesting, SAFEs, notes, valuations, ownership, waterfall, financing, exposure, etc.) — those are always direct data requests, even if the user phrases them vaguely. The matching specialist skill wins every time over this one.

General

What this skill does


<!-- Part of the official Carta AI Agent Plugin -->

# Discover Commands

Use the `discover()` tool to find available commands when no specific skill covers the user's request.

## Step 1 — Search for Relevant Commands

```
discover(search="<keyword from user's request>")
```

Use a keyword that captures the user's intent (e.g. "valuation", "grant", "safe", "stakeholder").

## Step 2 — Pick the Best Match

Review the returned commands. Each has:
- `command`: the name to pass to `fetch()`
- `description`: what it returns
- `required_params`: what you need to provide
- `help`: detailed field descriptions and caveats

## Step 3 — Execute

```
fetch("<command_name>", { ...params })
```

You still need `corporation_id` for most commands — get it from `list_accounts` if you don't have it.

Related in General