agentsclimarketplace

Explee product search

Skill Sheshiyer/skill-clusters/skills/explee-product-search

Use Explee Search APIs to find companies and people with natural-language targeting and optional AI scoring. USE WHEN a task matches the Craft workspace workflow for explee-product-search.From its SKILL.md

Install
npx -y skills add Sheshiyer/skill-clusters --skill explee-product-search

Assembled 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.1 KB, 522 tokens by cl100k_base, as published. Nobody here has run it

Explee Product Skill — Search

Use this skill for lead generation, ICP targeting, account research, and people discovery.

Authentication

Use API key auth (not cookies):

  • Header: X-API-Key: <api_key>
  • Base URL: https://api.explee.com

Recommended shell setup:

export EXPLEE_API_KEY='<your_api_key>'

Primary Endpoints

  • POST /public/api/v1/search/companies
  • POST /public/api/v1/search/companies-by-domains
  • POST /public/api/v1/search/people
  • POST /public/api/v1/search/people-by-domains
  • POST /public/api/v1/search/nl-to-filters

Execution Pattern

  1. Start from user goal (ICP, territory, titles, domains).
  2. If input is vague, call nl-to-filters first.
  3. Run one search endpoint with a limited result set.
  4. Return concise rows + next-step recommendation.

Request Templates

NL 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":"B2B fintech in Europe hiring SDRs"}'

Search Companies

curl 'https://api.explee.com/public/api/v1/search/companies' \
  -X POST \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -H "X-API-Key: ${EXPLEE_API_KEY}" \
  --data '{"definition":"AI SaaS companies in India"}'

Search People

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":["Head of Marketing"],"company_filters":{"definition":"B2B SaaS"}}'

Guardrails

  • Do not run huge searches by default; start narrow.
  • Call out credit impact before expensive runs.
  • Summarize method, endpoint, and status in outputs.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,506. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.