# 10 Ways to Use Claude Code for GTM in 2026 > Canonical: https://www.yalc.ai/blog/ways-to-use-claude-code-for-gtm/ Ten field tested Claude Code workflows a GTM operator runs from one prompt, plus the five skills to install this week. Claude Code for GTM turns Anthropic's terminal agent into a markdown configured operating system that runs prospecting, enrichment, qualification, sequencing, and reporting from one prompt. Operators pair it with real data APIs and versioned skill files so the middle mile of go to market work stops eating human hours and starts compounding across every run. Most guides on this keyword hand you thirty prompts and no opinion on which ones actually pay back. This is the ten that do, ordered by where a small GTM team gets the fastest return and the cleanest handoff to the rest of the stack. If you want the wider picture on why this shape of tool is winning the middle mile, the [agentic GTM operating system](/blog/agentic-gtm-operating-system/) piece is where we lay out the underlying architecture. ## Why Claude Code beats no code stacks for GTM in 2026 Claude Code is Anthropic's coding agent. It runs in your terminal, reads files on your machine, calls APIs, and executes multi step chains from one natural language prompt, per [Anthropic's product page](https://www.anthropic.com/claude-code). Access ships with the Claude Pro plan at 17 dollars a month on annual billing, or 20 dollars monthly, per [Claude's pricing page](https://claude.com/pricing). Pro is the tier a solo operator lives in. The Max plans at 100 and 200 dollars a month give teams running heavier loops more compute per session. Compare that to the alternatives a GTM team usually pays. Clay Launch runs 185 dollars a month for 2,500 credits and Growth runs 495 dollars a month for 6,000 credits, per [Clay's pricing page](https://www.clay.com/pricing). Every rerun of a workflow burns credits, so a per credit tool is priced against the operator who iterates most. Claude Code inverts that math because the marginal cost of the twenty first run of a skill is roughly the token cost, not another five dollars of data credits. The other reason it wins is legible workflows. A no code canvas is opaque past forty nodes. A folder of markdown skills is something one person can read in an hour and another can pull from GitHub in a minute. That is the property most guides skip, and it is the one that decides whether the play is still running six months later. ## Ways 1 to 3, research and prospecting prompts The first three ways are the ones you run every morning. They replace the first thirty minutes of tab hopping between Sales Navigator, a spreadsheet, and a company blog. ### Way 1, the account research prompt that stops paying for the same enrichment twice The naive version asks Claude Code to research one company from scratch. The version that pays back stores the result in a file named after the domain, checks that file first on the next run, and only calls a fresh enrichment API if the cached brief is stale. Ten reruns cost you one enrichment credit, not ten. The prompt is one paragraph. Research the target domain, return what they sell, ICP, recent funding or hiring signals, and one reason they might need us, and cache the output at accounts/{domain}.md. The first time it runs it queries [Crustdata](/tools/crustdata/) and [PredictLeads](/tools/predictleads/). The second time it opens the file. That single caching rule is why a solo operator can research two hundred accounts a month on a Pro plan without buying an agent platform on top. ### Way 2, the signal watch that fires on hiring changes not funding noise The default signal setup pulls everything and buries the operator in alerts nobody acts on. The version that works subscribes to two or three signal types the ICP actually reacts to, then routes each signal through a prompt that decides whether to enrich, draft, or drop. For a Series B outbound team the two signals that matter are usually a new leadership hire and a jobs page that mentions your category. A funding round rarely changes the buyer's reason to care unless your product needs bigger budget to justify. The prompt reads a webhook from PredictLeads, scores relevance against your ICP file, and either drafts a note referencing the change or logs a reject with the reason. That reject reason is the training data for the next iteration, which is the compounding property no canvas platform gives you. ### Way 3, the prospect list that assembles itself from a URL and a filter The one shot version is unglamorous. Give Claude Code a Sales Navigator URL or a competitor's customers page and a filter. It scrapes the visible page, dedupes against your CRM, enriches every row with a waterfall, and hands back a CSV or a queued sequence. The variant that saves the most time reads a filter from your ICP file so you never restate the same criteria twice. See the [B2B lead generation](/blog/b2b-lead-generation/) piece for how this fits inside the four playbook layout. ## Ways 4 to 6, enrichment and qualification skills The next three are the ones that decide whether a lead ever gets touched. They live as skills, which is Claude Code's word for a markdown file that teaches the agent a repeatable workflow. ### Way 4, waterfall enrichment orchestrated by markdown A [waterfall enrichment](/blog/waterfall-enrichment/) skill hits the cheapest provider first, checks whether the field it needed came back, and only escalates if the answer is missing. Cost per record drops because you rarely pay [FullEnrich](/tools/fullenrich/) rates for contacts the free tier already had. The rule sits at the top of the skill file, which means the next operator can tune the order without opening a settings modal. In a Clay table the same logic is a graph of nodes nobody edits after the person who built it leaves. ### Way 5, ICP scoring with a decision rule you can read The bad version is a 1 to 100 score with no explanation. The version that pays back returns the score plus the three signals that drove it and a routing decision the sequence step reads. The prompt is small. Score this account 1 to 100 against the ICP in CLAUDE.md, list the three signals that pushed the score, and return an action, sequence, hold, or drop. Any operator can read the output and know what to do with it, which is the test the [lead qualification skill](/skills/qualify-leads/) is built against. If you want the full manual play, the [how to qualify sales leads](/blog/how-to-qualify-sales-leads/) piece walks through the same logic on paper. ### Way 6, the buying committee mapper for four personas per account Most account research produces one contact and hopes for the best. A buying committee mapper is a skill that returns four, the economic buyer, the technical champion, the security or procurement gatekeeper, and the day to day user, with enrichment for each. The output feeds two branches, a decision maker branch that runs personalized outreach, and a champion branch that runs a lighter education sequence. This is the way most incumbents skip because it does not fit inside a single row on a canvas tool. ## Ways 7 and 8, sequencing and copy variant generation Ways 7 and 8 are the send layer. This is where the deliverability rules live and where copy variance stops being a UI feature and starts being a git branch. ### Way 7, sequence assembly with the deliverability rules baked in A sequencing skill assembles the message body, wires it into [Instantly](/tools/instantly/) or [Unipile](/tools/unipile/), and rejects the send if the domain would cross the Google and Yahoo spam complaint threshold. Since February 2024, senders above 5,000 messages a day to Gmail addresses must authenticate with SPF, DKIM, and DMARC, offer a one click unsubscribe option, and keep spam complaints under 0.3 percent, ideally under 0.1 percent, per [Google's bulk sender guidelines](https://support.google.com/a/answer/81126). Encoding that rule inside a skill file means the guardrail travels with the play instead of living in one operator's head. For the full mechanics, see [cold email deliverability](/blog/cold-email-deliverability/). ### Way 8, copy variants as versioned files, not A/B guessing in a UI The Clay pattern is to write three subject lines in a column and hope. The Claude Code pattern is to keep every subject line as a file inside a copy directory, tag each variant with the ICP segment it targets, and have the sequencing skill draw the variant that matches the account profile. When a variant beats the others, the operator promotes it to default with a pull request, not by clicking a button and losing the audit trail. This is the payoff on the [claude code for marketing](/blog/claude-code-for-marketing/) side of the same operator move. ## Ways 9 and 10, reporting, orchestration, and agent loops The last two are where the work compounds. Every skill from the previous ways emits a file. These ways read those files back and decide what to run tomorrow. ### Way 9, the weekly reporting prompt that reads CRM, sends, and replies together A reporting skill pulls sends, replies, meetings booked, and CRM stage changes from the week, joins them by account, and returns three lists, what worked, what stalled, what to kill. The first version runs on Monday morning and takes three minutes. The value is not the numbers, which any BI dashboard already has. It is the second column where the skill states one reason each account moved and one rec for next week. For a fuller take on this pattern in a sales context, the [claude code for sales](/blog/claude-code-for-sales/) piece walks the sales specific reporting flow. ### Way 10, the agent loop that grades its own drafts against your ICP This is the way most guides do not talk about, because it needs discipline to run well. The pattern is a Claude Code skill that drafts a message, then invokes a second prompt that grades the draft against a rubric stored in the ICP file, and only queues the message if the grade clears a threshold. Rejected drafts are logged with the failing rubric line, which is how the copy rubric gets tighter over time. This is the closest a small team gets to a full loop, and it is exactly the pattern the [AI SDR tools](/blog/ai-sdr-tools/) piece contrasts against black box vendors that will not let you inspect the prompt. ## How to install the 5 core GTM skills A GTM skills install is one folder of markdown files and one CLAUDE.md that names your ICP. The five to install first are account research, waterfall enrichment, ICP scoring, sequence assembly, and weekly reporting. Every skill is a file. Every file lives in a git repo. Push the repo to [GitHub](/mcps/github/) so the team can review changes to the ICP or the copy rubric the way they review code, not the way they review a shared Google Doc. Then wire the MCPs. The essential three for a small B2B team are [HubSpot](/mcps/hubspot/) for CRM state, [Notion](/mcps/notion/) for the operator's ledger, and a data provider like Crustdata for firmographics. Every additional integration is a decision you can defer. Skip the sales engagement platform slot entirely unless you already have a warmed sender setup you want to keep. The install order matters. Ship one skill, run it against ten real accounts, then ship the next. Teams that try to install all five in one afternoon end up with a folder nobody reads and a CLAUDE.md that describes a company that has since pivoted. ## What to do this week Pick one way from the ten and ship it as a skill by Friday. Not five. One. Most teams pilot Claude Code by asking it thirty questions in a chat, decide it is impressive, and then never turn any of the answers into a repeatable file. That is not a GTM operating system, that is a demo. The one to pick if you have never shipped a Claude Code skill is Way 5, ICP scoring. It is small, it is testable, it reads the CLAUDE.md every team needs anyway, and the output changes what the sequencing layer does downstream. If your ICP already covers a signal that fires often, run Way 2 instead and route it through the [signal based outbound](/blog/signal-based-outbound/) pattern. Either way, get one skill running against real accounts, review the outputs on Friday, and add the next skill next week. Two months later the folder is a GTM playbook that runs itself and the rest of the stack works for you instead of against you. ## Frequently asked questions ### What is Claude Code and why does it matter for GTM teams? Claude Code is Anthropic's terminal agent. It reads files on your machine, calls APIs, and runs multi step workflows from one prompt. GTM teams care because the middle mile of go to market work, enrichment, sequencing, scoring, reporting, is a chain of dull steps that used to live inside a canvas platform. Moving those steps into markdown skills makes the workflow legible, versionable, and cheap to iterate on. ### How much does Claude Code cost for a GTM team? Claude Pro is 17 dollars a month on annual billing and 20 dollars monthly, which is the tier a solo GTM operator lives in. Max at 100 and 200 dollars a month suits teams running heavier loops. On the same budget Clay Launch runs 185 dollars a month and Growth runs 495 dollars a month, with per credit usage on top, so the total cost of Claude Code is well below a canvas platform for most small teams. ### Can Claude Code replace Clay, Zapier, or n8n for a GTM team? For most small teams, yes. Claude Code replaces the orchestration and prompt layer that Clay, Zapier, and n8n each own. It does not replace the data providers underneath, so you still pay Crustdata or FullEnrich for real firmographic data. The teams that stay on Clay are the ones running one off enrichment waterfalls at large scale or complex sourcing pulls the operator wants a spreadsheet interface for. ### What is a Claude Code skill? A skill is a markdown file that teaches Claude Code a repeatable workflow. Instead of pasting the same long prompt every morning, you write the instructions once, save the file inside a skills folder, and invoke it by name. The skill can reference other files, call MCPs, and cache outputs, which is what turns a one off prompt into a compounding play. ### Which MCPs should a GTM team connect first? Connect three first. HubSpot for CRM state, Notion for the operator's ledger, and one data provider like Crustdata for firmographic data. Once those three are wired every downstream skill has something real to read against. Additional integrations like Slack, Gmail, or a signal API can wait until a specific skill needs them. ### Does Claude Code require engineering skill to run GTM workflows? Not for the ten ways above. The install is a terminal command, the skills are markdown files, and the prompts are English. Comfort with a CLI and version control helps because the payoff comes from treating skills like code, but the underlying work does not require Python or a coding background. A non technical operator can ship the ICP scoring skill in an afternoon and add the next one the following week.