Explee product autogtm
Skill Sheshiyer/skill-clusters/skills/explee-product-autogtm
Orchestrate an end-to-end AutoGTM flow: ICP query → account/person discovery → enrichment → prioritized outreach list. USE WHEN a task matches the Craft workspace workflow for explee-product-autogtm.From its SKILL.md
npx -y skills add Sheshiyer/skill-clusters --skill explee-product-autogtmAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.6 KB, 638 tokens by cl100k_base, as published. Nobody here has run it
Explee Product Skill — AutoGTM
Use this skill for full-funnel go-to-market automation using Explee APIs.
Objective
Produce a prioritized outreach-ready list from a natural-language GTM objective.
Authentication
Use API key auth:
- Header:
X-API-Key: <api_key> - Base URL:
https://api.explee.com
export EXPLEE_API_KEY='<your_api_key>'
AutoGTM Workflow
- Translate ICP to filters
- Endpoint:
POST /public/api/v1/search/nl-to-filters
- Endpoint:
- Find target accounts and decision-makers
- Endpoints:
POST /public/api/v1/search/companiesPOST /public/api/v1/search/people
- Endpoints:
- Enrich contactability
- Endpoint:
POST /public/api/v1/enrich/emailor batch variant
- Endpoint:
- Rank for activation
- Prioritize by title relevance, company fit score, and enrichment success
- Return GTM-ready output
- Include: company, person, title, email status, priority tier, reasoning
Request Template Blocks
Step 1: ICP to filters
curl 'https://api.explee.com/public/api/v1/search/nl-to-filters' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"definition":"US B2B SaaS, 50-500 employees, hiring RevOps"}'
Step 2: People search
curl 'https://api.explee.com/public/api/v1/search/people' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"job_titles":["VP Revenue Operations","Head of RevOps"],"company_filters":{"definition":"US B2B SaaS"}}'
Step 3: Single enrichment example
curl 'https://api.explee.com/public/api/v1/enrich/email' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"first_name":"Jane","last_name":"Doe","domain":"acme.com","mode":"basic"}'
Output Format (required)
Always return:
- Query objective used
- Endpoints called
- Candidate count by stage (found → enriched → prioritized)
- Top targets with short reason codes (
FIT,ROLE,EMAIL_OK)
Guardrails
- Start with a pilot batch before broad rollout.
- Warn about credit usage before large enrichment calls.
- Do not trigger destructive or unrelated endpoints.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.