cargo-connection

インストール
CLI
npx skills add https://github.com/getcargohq/cargo-skills --skill cargo-connection

CLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。

最終更新日: 4/29/2026
██████    ████    █████    ██████   ██████
██    ░  ██  ██░  ██  ██   ██    ░  ██  ██░
██       ██████░  █████ ░  ██ ███   ██  ██░
██       ██  ██░  ██ ██    ██  ██░  ██  ██░
██████   ██  ██░  ██  ██   ██████░  ██████░
 ░░░░░░   ░░  ░░   ░░  ░░   ░░░░░░   ░░░░░░

Cargo Agent Skills

Agent skill for Cargo — the AI-native revenue infrastructure. Teaches AI coding agents how to use the Cargo CLI to build, run, and manage revenue automation workflows programmatically.

Install

npx skills add getcargohq/cargo-skills

Works with Claude Code, Cursor, Windsurf, GitHub Copilot, and any agent that supports the skills.sh standard.

What this skill teaches

Cargo connects your data models (companies, contacts, deals) to external integrations (CRMs, enrichment providers, AI agents) and runs them as automated workflows. The repo ships eight skills at the root — one outcome skill (cargo-gtm, the front door for any GTM task) and seven capability skills (one per CLI domain).

Outcome — cargo-gtm

Load when the user states a real-world goal. cargo-gtm is the meta-skill — it routes to phase guides, scenario recipes, and per-provider playbooks all bundled inside the same skill.

Built-in recipes:

Recipe Use when…
prospecting.md Find people matching a description, enrich, verify, sync. End-to-end flagship.
build-tam.md Build a Total Addressable Market list at scale (100–10,000 companies).
linkedin-url-lookup.md Resolve a person's LinkedIn URL from name + company with strict identity validation.
portfolio-prospecting.md Find every company backed by a specific investor / accelerator, then prospect into them.
job-change-monitoring.md Detect job changes in a contact segment (waterfall.detectJobChange — cargo-unique).
funding-watch.md Track companies that recently raised funding for outbound timing.
tech-intent.md Find companies by tech-stack or hiring intent (theirStack-driven).
icp-discovery.md Diff Closed-Won vs Closed-Lost segments, surface differentiating ICP signals.

Capabilities — CLI surface

Load when you need the syntax for a specific CLI domain.

Domain What the agent learns
Orchestration Execute single actions, chain actions into workflows, trigger batches across segments, poll async operations, query the data warehouse with SQL, fetch segment data
Storage Inspect models and their DDL, create columns, navigate datasets, set relationships between models
Connection Authenticate connectors, discover integration actions and their slugs across 120+ integrations
AI Create and configure agents, upload files for RAG, connect MCP servers, inspect agent memories
Analytics Download run results and outputs, export segment data, monitor error rates and success metrics
Billing Track credit consumption per workflow or connector, check subscription status, view invoices
Workspace Invite users, create and rotate API tokens, organize resources into folders, manage roles

What can I ask for?

Prompts that route through cargo-gtm:

  • "Find me 5 fintech CTOs in NYC and verify their emails."recipes/prospecting.md
  • "Build a TAM list of seed-stage SaaS companies in Europe."recipes/build-tam.md
  • "Resolve the LinkedIn profile for John Smith at Acme Corp."recipes/linkedin-url-lookup.md
  • "Detect job changes among contacts in our customers segment."recipes/job-change-monitoring.md
  • "Find every company backed by Sequoia and prospect into the portfolio."recipes/portfolio-prospecting.md
  • "Show me everyone hiring data engineers AND running Snowflake."recipes/tech-intent.md
  • "What ICP signals differentiate our Closed-Won deals?"recipes/icp-discovery.md

For ad-hoc CLI work (modify a model, list connectors, query the warehouse), load the matching capability skill directly.

Use cases

Execute a single action

Ask your agent to run one action on a record — it will pick the right action kind (connector, tool, or agent), execute it, and return the result.

"Enrich acme.com with waterfall."
"Run the lead scorer on this contact."

Run an existing workflow

Ask your agent to trigger a play or tool — it will discover the workflowUuid, construct the right input, trigger the batch or run, and poll until completion.

"Run the lead enrichment tool on Acme Inc."
"Trigger the scoring play on our new MQL segment."

Build a workflow from scratch

The agent can construct a full node graph — fetching the connector UUID, looking up the action slug, validating the graph, and executing it — without you touching the UI.

"Build and run a workflow that enriches company domains with waterfall and writes the result back to the Companies model."

Query your data warehouse

The agent fetches the DDL first (to get the exact table name), then writes and executes the SQL query.

"How many companies in our model have employee_count above 500 and are headquartered in the US?"

Score or research records with an AI agent

The agent creates or finds a configured Cargo agent, sends a message, polls for the response, and surfaces the result.

"Use the lead researcher agent to find the LinkedIn of every contact added this week."

Monitor workflow health

The agent pulls error counts and success metrics for a workflow and flags anything outside normal range.

"Show me the error rate for the CRM sync play over the last 7 days."

Export segment data

The agent downloads a filtered, sorted export of any model segment directly to a file.

"Export all US companies with fewer than 200 employees, sorted by creation date."

Bootstrap a new workspace

The agent handles the full setup sequence: create models, add columns, set relationships, connect integrations, configure agents, and invite team members.

"Set up a fresh Cargo workspace with Companies and Contacts models, a waterfall connector, and a GPT-4o scoring agent."

Track credit usage and costs

The agent queries billing metrics broken down by workflow, connector, or date range.

"How many credits did the enrichment play consume last month?"

Prerequisites

npm install -g @cargo-ai/cli
cargo-ai login --oauth                          # browser sign-in (recommended)
# or: cargo-ai login --token <your-api-token>   # workspace-scoped API token
cargo-ai whoami

--oauth runs the OAuth 2.0 Device Authorization Flow against the Cargo OAuth provider — no setup required. For non-interactive environments (CI, scripts), use --token with a workspace-scoped API token from Settings > API. Token values are shown only once — store immediately in a secrets manager.