CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
getcargohq avatar

Cargo Gtm

getcargohq/cargo-skills
4.5k installs15 stars
Summary

This is Cargo's orchestration layer for go-to-market workflows. It sits between your goal (build a list of Series A CTOs who just raised funding) and Cargo's execution engine, routing you through decision trees, provider playbooks, and cost gates before burning credits. The skill enforces a strict read-before-execute model: you match your task to one of nine phase guides or twelve recipes, follow the waterfall logic, then run. It's opinionated about discovery order (companies first, then contacts) and cost discipline (pilot with ten records, verify output quality, then scale). If you're doing prospecting, enrichment, signal monitoring, or campaign activation on Cargo, this is the front door.

Install to Claude Code

npx -y skills add getcargohq/cargo-skills --skill cargo-gtm --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Files
SKILL.mdView on GitHub

Cargo GTM — Meta Skill

Use this skill for prospecting, account research, contact enrichment, verification, lead scoring, personalization, signal monitoring, and campaign activation.

Acceptable use — MANDATORY, before anything that touches a person

Full spec: references/acceptable-use.md. The short version, binding on every recipe here:

  • B2B professional identities only, from the licensed providers in provider-playbooks/ — never consumer targeting, purchased lists, or data taken from a platform in breach of its terms.
  • Three checks before any outreach step — basis (customers, opted-in contacts, event attendees, or a documented legitimate-interest case), suppression (filter on unsubscribe / DNC / hard-bounce before enriching or sending), relevance (name, per recipient, why this message is for them). Any check that fails is a stop-and-ask, not a warning.
  • Refuse and say why: undifferentiated fan-out ("email everyone in <industry>"), contacting a suppressed record, filter evasion or disguised sender identity, auto-dialing and SMS blasts, batch-blasting LinkedIn engagement actions. Offer the compliant version once — state it, don't lecture.
  • This skill never sends. Outreach recipes stop at send-ready variables and hand off to the user's own sequencer, under that sequencer's limits, domains, and identities. Copy it drafts must carry an honest sender and subject, a working opt-out, and a postal address where the jurisdiction requires one.

Bootstrap

Already signed in (cargo-ai whoami returns a workspace)? Skip to the next section.

npm install -g @cargo-ai/cli            # no global install? prefix every command with `npx @cargo-ai/cli`
cargo-ai login --email you@company.com  # emailed code, no browser; creates the account on first use
                                        # alternatives: --oauth (browser) · --token <api-token> (CI)
cargo-ai whoami                         # confirm the active workspace before any write

Every command prints JSON to stdout; failures exit non-zero with {"errorMessage": "..."}. Anything that creates a run or a batch is async — pass --wait-until-finished or poll the matching get. When the full skill bundle is installed, ../cargo/references/prerequisites.md adds the CLI version pin, token scopes, and the admin-only surface.

1) What this skill governs

  • Route GTM decisions, safety gates, and provider/quality defaults before execution.
  • Keep long command chains and tooling nuance in sub-docs; provider-specific implementation detail in provider-playbooks/*.md.
  • Anchor recipes in credits-based actions (the high-value action calls). Free CRUD (createLead, getLead, deleteRecords) doesn't need this skill — agents can compose those ad hoc.

Process / goal

The user is generally trying to go from "I have an ICP" to "Here's a list of prospects with verified emails and personalized signals." They may be anywhere in this process — guide them along.

Discovery order: companies first, then people. When the task requires finding contacts at companies matching criteria (portfolio, ICP, hiring signal), discover the company set first, then find people at each company. Don't start with broad people-search queries.

Documentation hierarchy

  • Level 1 — SKILL.md (this file): decision model, guardrails, routing table, links to sub-docs.
  • Level 2 — Phase docs: guides/finding-companies-and-contacts.md, guides/enriching-and-researching.md, guides/writing-outreach.md.
  • Level 2.5 — Recipes: recipes/*.md — step-by-step playbooks for specific scenarios.
  • Level 3 — Provider playbooks: provider-playbooks/<slug>.md — provider-specific quirks, costs, and fallback behavior.

2) Read behavior — MANDATORY before any execution

STOP. Do not call any provider, run any cargo-ai orchestration action execute command, or write any search query until you have opened the correct sub-doc for your task.

These docs encode what works, what fails, and why. They contain validated parameter schemas, cheapest-provider mappings, parallel execution patterns, sample payloads, and known pitfalls. Reading the right doc for 10 seconds saves 10 failed action calls, wasted credits, and garbage output.

Routing rules — match your task to a doc and READ IT

When the task involves…You MUST read this doc firstWhat it gives you
Finding companies, finding people, building lead lists, prospecting, portfolio/VC sourcing, contact finding at known companiesguides/finding-companies-and-contacts.mdProvider filter schemas, cheapest-source decision tree, parallel patterns, role-based search rules, portfolio/VC shortcuts, contact-finding patterns.
Enriching companies or contacts, finding emails/phones/LinkedIn, waterfall enrichment, signal lookup (job change, funding, tech stack), coalescing dataguides/enriching-and-researching.mdWaterfall patterns with fallback chains, when to use cargo-native vs waterfall vs FullEnrich vs peopleDataLabs, email/phone/LinkedIn fallback orders, signal segments, output retrieval via run download-outputs.
Writing first-touch outreach, personalizing messages, lead scoring, qualification, sequence design, campaign copyguides/writing-outreach.md + references/acceptable-use.md (§3 checks, blocking)LLM provider routing (openAi/anthropic/perplexity/gemini), prompt templates, scoring rubrics, email length/tone rules, personalization patterns — gated on basis, suppression, and per-recipient relevance.
Actually sending the drafted copy from a mailbox Cargo owns (rather than handing off to the user's own sequencer)../cargo-mailbox-management/SKILL.md + references/acceptable-use.md (§3 checks, blocking)Provisioning and warm-up, the 5→40/day send ramp that caps volume, the sendEmail action (0.1 credits/send), the workspace suppression list, and replies/opens/clicks as events.
Building or modifying a recurring workflow (cron / webhook / scheduled tool / play), designing step sequences, triggers, deploy/verify cycles../cargo-orchestration/SKILL.md (capability) + apply-patterns from this skill's recipes + the provider playbook of every paid node (§11, esp. its Recurring use section)Schema for tool/play workflows, node graph syntax, polling strategies, output retrieval; per-provider cadence defaults and re-billing gates.

Recipes: step-by-step playbooks (check before executing)

Scan this list and read the recipe matching your task. When a recipe matches: follow it step-by-step as your execution plan.

RecipeUse when…
recipes/source-planning.mdRead first when the source isn't obvious. Turn the question into a field, probe 2–3 candidate sources on 5–10 rows, present cost-per-hit — before any fan-out
recipes/prospecting.mdEnd-to-end find → enrich → verify → sync (P1/P2/P3 variants)
recipes/build-tam.mdBuilding a Total Addressable Market list at scale (100–10,000 companies)
recipes/linkedin-url-lookup.mdResolving a person's LinkedIn profile URL from name + company with strict identity validation
recipes/portfolio-prospecting.mdInvestor / accelerator → portfolio companies → contacts
recipes/job-change-monitoring.mdwaterfall.detectJobChange (cargo-unique) on a contact segment
recipes/funding-watch.mdTracking companies that recently raised funding
recipes/tech-intent.mdFinding companies by tech-stack or hiring-intent signals
recipes/icp-discovery.mdDiffing Closed-Won vs Closed-Lost segments to surface ICP signals
recipes/custom-datapoints.mdDesigning which custom attributes and live signals to collect for a seller's ICP — feasibility-gated against the catalog, then wired into columns, scoring, segments, and a refresh cadence
recipes/outreach-activation.mdTurning a signal segment into send-ready outreach (enrich → verify → personalize → sequencer handoff)
recipes/ads-audience-activation.mdPushing a segment to paid media — Google Ads Customer Match or LinkedIn Matched Audiences — and reading the match rate
recipes/review-and-iterate.mdJudgment output a human must review — sheet handoff, grouped corrections, permanent fixes, kept as an eval set
recipes/re-engagement.mdWaking up stale contacts only when a fresh signal fires (job change, funding, tech intent)
recipes/lost-deal-revival.mdReviving Closed-Lost CRM deals by branching on lost_reason (champion left, budget, timing)
recipes/account-expansion.mdMulti-threading existing customer accounts — net-new buyers, deduped against the workspace's Contacts model
recipes/save-as-play.mdConverting a successful ad-hoc run into a durable scheduled play or cron tool — offer after any repeatable pull
recipes/import-gtm-data.mdImporting existing GTM data (CSV/CRM exports from any tool) into models, QA-auditing it, and selectively rebuilding recurring logic as plays with a parity check
recipes/clay-to-cargo.mdClay specifically: getting the column configuration out (not the CSV), the column-family → action map, the four Clay concepts that do not map one to one (waterfalls, run conditions, auto-update, partial runs), and the parity check against Clay's own output

If none match, scan the phase docs above for the closest pattern and adapt — or invoke agents/execution-plan-creator.md to compose a custom chain with provider/action slugs and cost estimates. For wide sourcing sweeps that fan out (per-industry, per-geo), delegate approved slices to agents/list-builder.md — it executes exactly one pre-approved action per slice and returns rows to a file, keeping row data out of the main context. (On Claude Code with the plugin, both are installed as native subagents: cargo-execution-planner and cargo-list-builder.)

3) Cost discipline — MANDATORY gates

Full spec: references/cost-discipline.md. The short version every task must honor:

  1. Sample → approval → full run, in that order. Run a slice of the exact input first — 1–3 rows to prove one action's config, 10–20 records before any batch (one row can't show a hit-rate). Then present the 4-section approval message (Assumptions · Sample result verbatim · Credits/Scope/Cap — always stating how many records the full run enrolls and what they cost, reconciled against the actual balance · 3 shaped choices); stay in AWAIT_APPROVAL until the user picks. Never fan out on an unapproved or cost-unknown action, and never read approval of the sample as approval of the full enrollment.
  2. Receipt after every paid action: credits spent + balance remaining + hit-rate ("found 34 emails of 40") + estimate-vs-actual with the why when they diverge. Prefer billing usage get-metrics over your own arithmetic.
  3. Over-provision 1.4×N, then filter — coverage is a property of the company; drop incomplete rows instead of chasing them with more providers.
  4. Count first, pay second — search is billed on returned rows; keep limit strict and size the pool with a 1-row probe before any full pull.
  5. Phone is the guarded lever — explicit user request only, qualified leads only. Still true at the cheap end: aiArk.findMobilePhone (0.5, mobile-only) is the first rung and bills 0 on a miss, but the escalation behind it is 3–7 credits (~10× email), so a full-list phone sweep needs the same approval as any other paid fan-out.

4) After every run — receipt, then grounded next steps

End every completed run with the receipt (above), then propose 2–3 next steps maximum, computed from the data just produced — never a generic menu. Required shape:

  1. Continuity — builds on this session's artifacts ("67 of these 70 companies have RevOps teams — find the leads?"), not a fresh generic idea.
  2. Budget-aware — framed against the remaining balance ("with your ~9 credits left, ~5 verified emails fits").
  3. Cost-per-unit stated — "email waterfalls run ~1.4 credits each."
  4. A default picking heuristic so answering takes one word ("I'd default to: has funding data + RevOps ≥ 2 + posting is recent").
  5. An escape hatch — always end with "or something else entirely."

When a run produced a durable, repeatable result, one of the suggestions should be making it systematic — see recipes/save-as-play.md.

When a run or batch misbehaved — errors, missing downstream values, cost surprises — hand off to the cargo-diagnostics skill (../cargo-diagnostics/SKILL.md): sweep the batch for root causes before re-running anything paid. Interaction defaults for plan gates, shaped choices, and presenting results live in ../cargo/references/interaction.md.

5) Priority provider stack (recipes lead with these 8)

These eight credits-based providers cover the full prospecting → enrichment → verification → signal pipeline at the lowest credit cost in the catalog. Every recipe in this skill's recipes/ leads with this stack:

ProviderRoleKey actions (cost in credits)
salesNavigatorSourcingsearchLeads (0.02), searchAccounts (0.05), findCompanyInsights/Metrics/EmployeesCount/Distribution (0.25 each)
cargo (native)Firmographic + signal intelligenceenrichBusinessFirmographics (0.5), …Technographics (1), …FundingAndAcquisitions (0.5), enrichProspectDetails/LinkedinProfile/LinkedinPosts (2), matchBusiness/matchProspect (0.5), 13 more
aiArkLinkedIn-anchored enrichment + cheapest searchsearchCompanies (0.01/record, lookalike seeds), searchPeople / reverseLookup / analyzePersonality (0.05), enrichPerson (0.1 — profile + verified email), findMobilePhone (0.5)
waterfallMulti-source enrichment + signalenrichContact (2), enrichCompany (1), verifyEmail (0.1), detectJobChange (3), searchProspects (3), findPhone (7)
FullEnrichPremium contact lookupfindEmail (1), findPhone (6), findPhoneAndEmail (7), reverseEmailLookup (2)
apolloioNiche-coverage enrichmentenrichPerson (1, 3 with revealPhoneNumber), enrichOrganization (1) — the only two credits-based actions; its other nine need your own Apollo API key
theirStackTech-stack + hiring intentsearchTechnologies (0.5), searchJobs (0.5), searchCompanies (0.5)
peopleDataLabsHeavyweight backfillenrichPerson (3), enrichCompany (3), searchPeople (3), searchCompanies (3), queryPeople/Companies (3)

aiArk and apolloio sit at opposite ends of the enrich tier and are picked by what you hold, not by preference: aiArk wins whenever a LinkedIn URL is in hand (profile + verified email at 0.1, mobile at 0.5, both billing 0 on a miss), apolloio is the 1-credit niche-coverage rung you promote per-batch when a pilot shows Apollo hits where cargo (2) and waterfall (2) miss — investor-backed and portfolio niches especially. Neither displaces salesNavigator for plain at-scale sourcing (0.02/lead) or cargo native for match-verified firmographics.

See provider-playbooks/ for per-provider deep dives — including each provider's Recurring use section for when the task is a monitor, play, or scheduled pull rather than a one-off. See references/stage-action-map.md for the complete cheapest-action-per-stage table across the full 120-integration catalog.

Already holding identifiers (not sourcing)? The stack above leads the sourcing-first spine. When you already have LinkedIn URLs, the cheapest enrich is aiArk.enrichPerson (0.1 — full profile plus a verified email, bills 0 when no email is found); drop to linkedin.enrichProfile / enrichCompany (0.25) when you don't need the email, and skip waterfall.enrichContact entirely (it keys on email or name+company, not a URL). Need a phone? aiArk.findMobilePhone (0.5) is the first rung, not the 3–7 tier. Have a LinkedIn event URL? linkedin.extractEventAttendees sources the attendee list directly. Have emails? aiArk.reverseLookup (0.05), then leadMagic / contactOut. See references/stage-action-map.md for the full input-type → cheapest-action map.

6) Recipe spine (default chain)

1. SOURCE   → salesNavigator.searchLeads / searchAccounts            (0.02–0.05/record)
              lookalike seeds, or filters SN can't express (skills,
              education, tenure)? aiArk.searchCompanies / searchPeople (0.01–0.05/record)
2. DEDUPE   → cargo.matchProspect / cargo.matchBusiness              (0.5/record)
3. ENRICH   → LinkedIn URL in hand? aiArk.enrichPerson (0.1) FIRST — profile + verified
              email in one call; linkedin.enrichProfile/enrichCompany (0.25) if no email needed
              cargo.enrichBusinessFirmographics / Technographics
              + waterfall.enrichContact / enrichCompany              (0.5–2/record)
              + apolloio.enrichPerson / enrichOrganization on the niche residue (1/record)
4. SIGNAL   → cargo.enrichBusinessFundingAndAcquisitions
              + theirStack.searchJobs
              + waterfall.detectJobChange                            (0.5–3/record)
5. CONTACT  → FullEnrich.findEmail — only on rows step 3 left without
              an email (fallback peopleDataLabs)                     (1–3/record)
6. VERIFY   → waterfall.verifyEmail                                  (0.1/record)
7. BACKFILL → peopleDataLabs.enrichPerson (only if step 5 missed)    (3/record)
8. QA       → scripts/contact-accuracy-audit.ts                      (free, local)

Two spine notes from the 8-provider stack: step 3's aiArk.enrichPerson already returns a verified email, so step 5 runs on the residue only — don't pay FullEnrich.findEmail (1) behind a row that already has one. And when the goal reaches a phone, aiArk.findMobilePhone (0.5, mobile-only, bills 0 on a miss) is the first rung before prospeo (3) / FullEnrich (6) / waterfall (7) — the guarded-lever rule in §3 still applies to all four.

Adapt by phase: drop steps that aren't relevant to the user's goal. For pure sourcing, run step 1 only. For "enrich a list I already have," run steps 2–7.

7) Output retrieval — use run download-outputs, not run download

When the agent needs the actual data produced by an action (enriched fields, found emails, search results), use:

cargo-ai orchestration run download-outputs \
  --workflow-uuid <uuid> \
  --output-node-slug <slug> \
  --format json

(Don't pass --is-finished — the CLI help still lists it but the API currently rejects it with unrecognized_keys; reported.)

Returns {"url": "..."} — a signed URL to a CSV/JSON containing only the output node's data. Faster and cheaper than run download (which pulls full run records). See references/output-retrieval.md and ../cargo-analytics/SKILL.md.

8) Contact accuracy — run the QA scripts, don't eyeball

Four deterministic TypeScript scripts in scripts/ (Node ≥ 22.18, zero deps, fixture-tested in CI) replace in-context row checking. Run the script — never re-derive its logic by reasoning over rows. Full doctrine, pipeline order, and the SEND/VERIFY/REVIEW/REMOVE verdict semantics: references/contact-accuracy.md.

  • scripts/validate-emails.ts — free syntax/risk/duplicate cull before paid verifyEmail.
  • scripts/select-current-role.ts — pick the real current role from an experiences array (catches job changers).
  • scripts/validate-linkedin-names.ts — name↔profile match (catches same-name decoys); pairs with recipes/linkedin-url-lookup.md.
  • scripts/contact-accuracy-audit.ts — final per-row audit_action stamp on the merged output; cite its summary counts in the receipt. Reads files or a finished run directly (--workflow-uuid, via @cargo-ai/api).

9) Action shape rules (every recipe)

Every action JSON in this skill follows the rules in ../cargo-orchestration/references/examples/actions.md:

  • kind: "connector" action shape: {"kind":"connector","integrationSlug":"<slug>","actionSlug":"<slug>"}. connectorUuid is NOT in config — the platform resolves the workspace's authenticated connector from integrationSlug automatically.
  • A top-level action has no config — omit it. Inputs go in --data / --records, and every recipe here now writes the action without the key. The one command that still demands it is action get-output-schema (400 at action.config without "config": {}). And inputs misplaced in config are no longer rejected — they are dropped and the action runs with no input, so check this first when a call returns empty for no visible reason.
  • Don't hand-write a slug you're unsure of, and don't page the catalog looking for one. cargo-ai orchestration action list <keywords> [--integration-slug <slug>] is free, searches every integration plus native actions, tools, and agents, and returns the action object ready to paste with the action's credit costs — a cheap sanity check on both the slug and the price before a paid call. When the question is which paid actions exist for this?, cargo-ai connection action search <keywords> --credits-only is the one that filters on it. Neither replaces the provider playbook below: the playbook is where the input quirks, hit-rates, and recurring-use traps live.
  • For multi-step node graphs: connectorUuid lives at the top level of the node, not in config. Cross-node interpolation uses {{nodes.<slug>.<field>}}. Agent node outputs wrap under .answer (read as {{nodes.<slug>.answer.<field>}}).

10) When stuck — file a workspace report

If a recipe fails repeatedly and the cause isn't obvious, escalate via cargo-ai workspaceManagement report create. See ../cargo-workspace-management/SKILL.md (Reports section).

11) Provider playbooks — read before you call (one-off or recurring)

STOP — do not execute any paid action against a provider below, and do not wire a provider into a recurring play/tool node graph, until you have opened its playbook. Each playbook carries the exact action slugs, config shapes, input quirks, and cost traps; reading it for five seconds is cheaper than one failed paid call, and a failed batch is 100 failed paid calls. The stakes are higher, not lower, when the provider goes into a recurring workflow: a bad config repeats on every scheduled run, and a wrong cadence re-bills the same rows forever — each playbook ends with a Recurring use section (schedule fit, cadence default, re-billing gates, extractors) for exactly this. Every credits-based provider with callable actions has a playbook, with three stated exceptions: brightData (consumer social-platform scraping, outside this skill's acceptable use for person targeting), proxycurl, and openRouter (which exposes a model lister rather than credits-based actions, so there is nothing to document). Own-key integrations fall back to references/alternatives.md and references/stage-action-map.md.

Priority stack (recipes lead with these):

  • provider-playbooks/salesNavigator.md — cheapest sourcing in the catalog (0.02–0.05/record).
  • provider-playbooks/cargo.md — 22 native enrichment + signal actions; the match* actions are key for dedup.
  • provider-playbooks/aiArk.md — LinkedIn-anchored people/company data: enrichPerson returns profile + verified email at 0.1, findMobilePhone (0.5) is the cheapest phone rung, searchCompanies (0.01/record) does lookalikes, and analyzePersonality (0.05) is catalog-unique. All actions run on the managed connection.
  • provider-playbooks/waterfall.md — swiss-army-knife: enrichment, verification, and the cargo-unique detectJobChange signal.
  • provider-playbooks/FullEnrich.md — premium contact lookup; reverseEmailLookup is unique.
  • provider-playbooks/apolloio.md — the 1-credit niche-coverage enrich rung (person + organization); read it before assuming Apollo is available — only two of its eleven actions are credits-based, the rest need your own Apollo API key.
  • provider-playbooks/theirStack.md — tech-stack + hiring-intent signals.
  • provider-playbooks/peopleDataLabs.md — heavyweight backfill at flat 3-credit tier.

Sourcing & company-data specialists:

  • provider-playbooks/linkedin.md — the native LinkedIn integration's action set (profiles, companies, posts, jobs).
  • provider-playbooks/oceanio.md — lookalike-company discovery from seed domains, with technographic / web-traffic filters aiArk.searchCompanies (0.01) can't express.
  • provider-playbooks/datagma.md — lightweight person/company enrichment alternative.
  • provider-playbooks/companyEnrich.md — cheapest company-by-domain (0.25) + per-item-billed lookalikes.
  • provider-playbooks/enrichCrm.md — CRM-record enrichment; getFunding is the funding-signal fallback.
  • provider-playbooks/societeInfo.md — French-registry company/contact data (SIREN/SIRET).
  • provider-playbooks/snitcher.md — website-visitor identification; the recurring extractor is the cost trap.
  • provider-playbooks/piloterr.md — ultra-cheap bulk company extractor + G2 product info.
  • provider-playbooks/g2.md — software-review & category signal data.
  • provider-playbooks/theSwarm.md — warm-intro network mapping to target companies/people.
  • provider-playbooks/mixrank.md — premium person/company backfill (4/lookup, phone-only reverse lookup).

Email & contact specialists (all feed the VERIFY step — see references/waterfall-strategy.md):

  • provider-playbooks/hunter.md — domain-search email finding + verification.
  • provider-playbooks/prospeo.md — email/phone lookup, LinkedIn-URL input path.
  • provider-playbooks/icypeas.md — budget email find/verify.
  • provider-playbooks/findyMail.md — email finding alternative.
  • provider-playbooks/leadMagic.md — email + mobile lookup alternative.
  • provider-playbooks/contactOut.md — contact info from LinkedIn profiles.
  • provider-playbooks/zeroBounce.md — email-verification second opinion to waterfall.verifyEmail.
  • provider-playbooks/bouncer.md / neverBounce.md / kitt.md / enrichley.md — verification long tail (0.3 / 0.2 / 0.05 / 0.1; enrichley's slug is verify, not verifyEmail).
  • provider-playbooks/dropcontact.md — email finding with French/EU registry depth; email output is an array.
  • provider-playbooks/enrowio.md — email find (1) + verify (0.1); takes fullName only.
  • provider-playbooks/reverseContact.md — company-from-LinkedIn (credits); profile lookups are own-key.
  • provider-playbooks/rocketreach.md — person lookup (1); healthcare/NPI niche; beware the currrentEmployer schema key.
  • provider-playbooks/forager.md — personal-email + phone from a LinkedIn URL.
  • provider-playbooks/cleon1.md — terminal phone rung (15/lookup) — explicit user request only.

Research & scraping:

  • provider-playbooks/firecrawl.md — web scraping for research/personalization stages.
  • provider-playbooks/serper.md — Google SERP queries for research and URL discovery.
  • provider-playbooks/linkup.md — web search (0.5 standard / 2 deep) + sourced/structured answers.
  • provider-playbooks/parallel.md — cheapest page read in the catalog (extract, 0.025/URL) plus createTask, the only action that fills a caller-supplied output schema.
  • provider-playbooks/exa.md — semantic search with a document-type category filter and publication-date bounds.
  • provider-playbooks/builtwith.md — a domain's technology stack; getDomainSummary is free and runs in front of the paid rung.
  • provider-playbooks/x.md — public X posts and profiles at 0.02 an action; a signal rung, gated by acceptable use.
  • provider-playbooks/sillage.md — inbound signal detections read back from a model, free, so it runs first on any signal question.

LLM providers (all: one instruct action, cost per 1,000-token package, per-model tiers — prompts come from references/prompt-library/index.md):

  • provider-playbooks/anthropic.md — judgment-tier default (Haiku/Sonnet 0.2, Opus 2); temperature nests under advancedSettings with required maxTokens.
  • provider-playbooks/openAi.md — cheapest bulk tier (gpt-5-nano 0.006) + native JSON-schema output.
  • provider-playbooks/gemini.md — cheap high-throughput (Flash 0.01, 15,000/min) + search grounding.
  • provider-playbooks/perplexity.md — web-grounded research answers; default model is the expensive sonar-deep-research — always set model explicitly.

12) References

  • references/cost-discipline.md — the mandatory spend rules: pilot → approval gate, per-run receipts, 1.4×N over-provision, count-first sizing, provider-billing rules.
  • references/contact-accuracy.md — the deterministic QA scripts (email cull, current-role, name match, final audit) and the SEND/VERIFY/REVIEW/REMOVE verdicts.
  • references/prompt-library/index.md — ~40 named, parameterized LLM prompts (personalization, scoring, research, qualification, signal analysis, extraction). Before authoring any enrichment/scoring prompt from scratch, grep this index — reuse beats reinvention, and each entry carries a tested output contract. Load only the shard you need, never all of them.
  • references/stage-action-map.md — cheapest credits-based action per stage across the full 120-integration catalog.
  • references/credits-cost-table.md — auto-generated cost table for all 145 credits-based actions.
  • references/waterfall-strategy.md — canonical waterfall chains by enrichment goal (every recipe's "fallback" follows these).
  • references/alternatives.md — provider swap-ins from the long tail when the priority stack can't serve.
  • references/output-retrieval.md — run download-outputs patterns for fetching action data.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Categories
DevOps & CI/CDRustSales & Marketing
First SeenJul 14, 2026
View on GitHub

More from getcargohq/cargo-skills

All 12 skills →
  • Cargo Workspace Management4.5k
  • Cargo Ai4.5k
  • Cargo Analytics4.5k
  • Cargo Orchestration4.5k
  • Cargo Connection4.5k
  • Cargo Storage4.5k
  • Cargo Billing4.5k
  • Cargo Context4.5k
  • Cargo4.4k
  • Cargo Content4.4k
  • Cargo Hosting4.3k

Recommended

More DevOps & CI/CD →
julianoczkowski avatar
frontend-design

julianoczkowski/designer-skills

Build distinctive, production-grade frontend interfaces with high design quality, guided by named aesthetic philosophies. Use when building components, pages, or applications. Generates working code with exceptional attention to aesthetic details and creative choices that avoid generic AI output.
4.5k
497
getcargohq avatar
cargo-ai

getcargohq/cargo-skills

Create and configure AI agents, attach knowledge for RAG, manage MCP servers, and handle agent memories using the Cargo CLI. Use when the user wants to create or update agents, configure agent releases, connect MCP tool servers, or manage agent memories. To upload knowledge files or build knowledge libraries, use the cargo-content skill. For sending messages to agents, use the cargo-orchestration skill instead.
4.5k
15
getcargohq avatar
cargo-analytics

getcargohq/cargo-skills

Download workflow run results, export segment data, and monitor run metrics using the Cargo CLI. Use when the user wants run metrics, error rates, data export, or download results for their Cargo workspace. For billing and credit usage, use the cargo-billing skill instead. For explaining WHY a run failed or a batch has errors, use the cargo-diagnostics skill instead.
4.5k
15
trailofbits avatar
sarif-parsing

trailofbits/skills

Parses and processes SARIF files from static analysis tools like CodeQL, Semgrep, or other scanners. Triggers on "parse sarif", "read scan results", "aggregate findings", "deduplicate alerts", or "process sarif output". Handles filtering, deduplication, format conversion, and CI/CD integration of SARIF data. Does NOT run scans — use the Semgrep or CodeQL skills for that.
4.5k
6.5k
google avatar
agent-platform-tuning-management

google/skills

Manages GenAI tuning jobs in Agent Platform. Use this to list, get, or cancel ongoing model tuning jobs. Don't use for fine-tuning models (use `agent-platform-tuning`), deploying models to endpoints (use `agent-platform-deploy`), or managing serving endpoints (use `agent-platform-endpoint-management`).
4.5k
17k
clickhouse avatar
clickhousectl-local-dev

clickhouse/agent-skills

Use when a user wants to build an application with ClickHouse, set up a local ClickHouse development environment, install ClickHouse, create a local server, create tables, or start developing with ClickHouse. Covers the full flow from zero to a working local ClickHouse setup.
4.5k
512