Want to suggest an edit, report an issue, or fork the skills? Head to
getcargohq/cargo-skills on
GitHub.
The seven skills
Each skill maps to one command domain of the CLI:| Skill | Domain | What your agent can do |
|---|---|---|
cargo-cli-orchestration | Runtime | Run tools on single records, trigger batch plays across segments, chat with AI agents, query the data warehouse with SQL, fetch live segment data |
cargo-cli-storage | Schema | Inspect model DDL, create and update columns (custom, computed, metric, lookup), manage datasets, set model relationships |
cargo-cli-connection | Connectors | Authenticate connector instances, list available integrations and their action slugs, discover native actions |
cargo-cli-ai | Agents | Create and configure agents, manage releases (draft → deploy), upload files for RAG, connect MCP servers, inspect memories |
cargo-cli-analytics | Measurement | Download run results, export segment data to files, pull per-node error rates and success metrics |
cargo-cli-billing | Costs | Track credit consumption by workflow, connector, or agent; check subscription status; view invoices |
cargo-cli-workspace | Admin | Invite users, create and rotate API tokens, organize resources into folders, manage roles |
1. Install the CLI
Skills drive the CLI, so it has to be installed and authenticated first. Follow Install & authenticate, then confirm:2. Install the skills
.skills/ directory with seven skill files your agent reads
automatically. Commit it so every team member and CI environment shares the same
setup without a separate install step.
3. Verify
Ask your agent:Supported agents & editors
Any tool that follows the skills.sh standard works with the same install command — there’s no per-editor configuration, because.skills/ is the universal integration point.
Claude Code
Persist your token in your shell profile so it’s available from any working
directory:
export CARGO_API_TOKEN=<your-api-token> in ~/.zshrc or
~/.bashrc.Cursor
Run the install command in your project root; Cursor’s agent picks up
.skills/ automatically.Codex CLI
Works out of the box once
.skills/ is present in the working directory.GitHub Copilot (agent mode)
Reads
.skills/ from the repository root — commit it so Copilot loads it in
every session.Windsurf
Same one-command install; no additional configuration required.
Any skills.sh agent
Follows the open skills.sh standard, so new compatible
editors work with the same command.
Troubleshooting
| Symptom | Fix |
|---|---|
| Agent says it has no Cargo skills | Run npx skills add getcargohq/cargo-skills in the project root and restart the session |
cargo-ai: command not found | Run npm install -g @cargo-ai/cli |
Unauthorized errors | Run cargo-ai whoami to confirm the active token and workspace |
| Wrong workspace targeted | Re-authenticate: cargo-ai login --token <token> --workspace-uuid <uuid> |
Next steps
Examples
Worked examples: run tools, trigger plays, query the warehouse, build
workflows, deploy agents, and more.
CLI Overview
Command reference, UUID flows, filter syntax, async patterns, and gotchas.
Cargo Skills on GitHub
Browse skill source, report issues, or contribute improvements.
skills.sh standard
Learn how skills work and how to author your own packages.

