Skip to main content
Huntr Skills are agent instructions for GTM engineers using Claude Code, Cursor, Codex, or other agents that support the Agent Skills format. Each skill matches a workflow recipe and generates runnable Python or Node.js with authentication, pagination, rate-limit backoff, and Huntr-specific guardrails.

Install

npx skills add tryhuntr/huntr-skills -g -y
FlagMeaning
-gInstall globally (all projects on this machine)
-ySkip confirmation prompts
Install one skill:
npx skills add tryhuntr/huntr-skills --skill huntr-icp-list-build -g -y
List available skills without installing:
npx skills add tryhuntr/huntr-skills --list
Requires Node.js for npx.

Skills

SkillWorkflowTrigger examples
huntr-icp-list-buildICP list build”build a company list”, “ICP search”, “paginate company-search”
huntr-outbound-pipelineOutbound pipeline”outbound pipeline”, “find emails at these companies”, “company to person to email”
huntr-account-researchAccount research”account brief”, “research this company before a call”, “buyer research”
huntr-signal-scannerSignal scanner”hiring signals”, “tech stack scan”, “score accounts from jobs”
huntr-account-penetrationAccount penetration”find decision-makers at”, “who is the CISO at”, “penetrate this account”
huntr-workflow-reviewAll workflows”review my Huntr code”, “audit this integration”, “preflight before I run at scale”

Prerequisites

export HUNTR_API_KEY="hntr_live_xxxxxxxxxxxx"
Never commit API keys. Skills generate .env templates and add .env to .gitignore. Optional but recommended for review and live schema checks: connect Huntr MCP in your editor.

Example prompts

ICP list
“Use huntr-icp-list-build: US SaaS companies with 50–200 employees in Software Development. Export JSON.”
Outbound
“Use huntr-outbound-pipeline: VP Engineering at the first 20 companies from my ICP query. Node.js script with rate limiting.”
Account brief
“Use huntr-account-research: pre-meeting brief on Linear for an engineering productivity vendor. Structured schema output.”
Review
“huntr-workflow-review: check this script before I run it on 10k companies.”

Repository

Source: github.com/tryhuntr/huntr-skills
git clone https://github.com/tryhuntr/huntr-skills.git

Claude Code plugin

The repo includes .claude-plugin/plugin.json for Claude Code plugin discovery. The npx skills add command is the recommended install path for Cursor and other agents.

Next step