From gtm-icp
Build the GTM hand-off — aggregate every scored account into a ranked CSV (one row per account, tier then score) plus a markdown dossier (gates, score breakdown, intent signals with evidence, hiring board, and contacts). Run after accounts have been scored (and ideally had people resolved). No keys.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gtm-icp:listThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The pipeline's final stage. The per-account stages each leave one artifact under
The pipeline's final stage. The per-account stages each leave one artifact under
.gtm/<slug>/; this stage reads across all of them and produces the two things a
GTM team works from: a ranked CSV and a per-account dossier.
pipeline run and need the hand-off deliverables.Reads, per account dir under the artifact root:
score.json (required — an account without it is skipped) for tier/score.enrich.json (optional) for company/domain.signals.json (optional) for detected intent signals + the hiring board.people.json (optional) for contacts or persona targets.Make sure the accounts you want included have been scored (score.json
exists). Resolving people first enriches the list with contacts, but isn't
required.
Run the build script:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/list/scripts/build_list.py
_report/accounts.csv + _report/dossier.md under the artifact root.--include-reject to keep them in both outputs.The script prints a one-line summary (accounts, actionable count, output paths, top 5). Point the user at the two files.
_report/accounts.csv — columns: rank, company, domain, tier, score, gates_failed, signals_found, hiring_provider, contacts, people_source, top_contact, top_contact_title, top_contact_email_status, top_contact_linkedin, rationale. The top contact is the highest-priority
persona match for the account._report/dossier.md — one section per account: tier/score, rationale,
failed gates, score breakdown, detected intent signals (with an evidence
snippet), the hiring board (provider/slug + how it was discovered), and the
contacts — or the persona targets when no contacts were resolved.bash scripts/tests/test_list.sh.This is the end of the pipeline: a prioritized, evidence-backed list to act on.
npx claudepluginhub knowledge2-ai/gtm-icp --plugin gtm-icpCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.