02-apify-maps-discover

02-apify-maps-discover is a skill for Claude Code from Zevenue/headless-gtm. It costs 101 tokens per session (1,571 once invoked), scanned A, original, MIT.

A workflow for finding local businesses on Google Maps through Apify, a service that runs web-scraping actors, and returning their details in a consistent list.

In plain words
What is it for?
Use it to discover prospects such as salons, gyms, clinics, laundromats, and HVAC companies in a specified area.
Why use it?
It saves time spent collecting and standardizing business names, websites, addresses, phone numbers, ratings, and review counts by hand.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is pip install -r ../headless-gtm-shared/requirements.txt.

Part of the headless-gtm plugin — 17 skills shipped together

Good fit Use it to discover prospects such as salons, gyms, clinics, laundromats, and HVAC companies in a specified area.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Zevenue/headless-gtm
agentmods
npx agentmods add skills/zevenue/headless-gtm/02-apify-maps-discover

Made for: Claude Code.

Or install headless-gtm, the plugin that ships this one along with the rest of its 17 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 02-apify-maps-discover

README.md
[![agentmods](https://agentmods.dev/badge/skills/zevenue/headless-gtm/02-apify-maps-discover/github.svg)](https://agentmods.dev/skills/zevenue/headless-gtm/02-apify-maps-discover)
Your own site
<a href="https://agentmods.dev/skills/zevenue/headless-gtm/02-apify-maps-discover"><img src="https://agentmods.dev/badge/skills/zevenue/headless-gtm/02-apify-maps-discover/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 02-apify-maps-discover

Your own site · 80×15
<a href="https://agentmods.dev/skills/zevenue/headless-gtm/02-apify-maps-discover"><img src="https://agentmods.dev/badge/skills/zevenue/headless-gtm/02-apify-maps-discover.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,571 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.01571
Opus 5 $0.00051 $0.00785
Sonnet 5 $0.00020 $0.00314
Haiku 4.5 $0.00010 $0.00157

Measured 10d ago against content hash 78623cab3e1a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

02-apify-maps-discover scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (discover.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/02-apify-maps-discover/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Apify Maps Discovery

Turn a vertical + a place into a clean prospect list, scraped from Google Maps via the maintained Apify Compass actor (compass~crawler-google-places). We wrap the best existing actor rather than build our own scraper - Compass already handles proxies, anti-bot, and layout drift, and offers built-in email/contact enrichment. Output is the normalized Zevenue ProspectRecord schema (JSON + CSV).

Process

  1. Confirm inputs. Need search_term (the vertical) and geo (the area). Defaults: max_results=200, min_rating=4.0. Ask only if missing/ambiguous.
  2. Estimate cost and gate. The skill prints an estimate before calling the API. If it exceeds $10, it requires explicit confirmation (--yes or an interactive y/N). Never bypass this silently.
  3. Run the actor. Calls the Compass sync endpoint with the built input (searchStringsArray, locationQuery, maxCrawledPlacesPerSearch, placeMinimumStars). Add enrichment only when asked (see flags).
  4. Normalize. Each raw place is mapped to the shared 15-field ProspectRecord so it's comparable with the Outscraper / Google Places skills.
  5. Write the run folder. Writes runs/<run-id>/ per headless-gtm-shared/CONVENTIONS.md: records.jsonl (the shared chain format 03+ consume - company, domain, person, plus the firmographic fields), tracker.json, meta.json (count + spend estimate), prospects.json (all 15 ProspectRecord fields), and records.csv for humans. Report the row count and path; downstream skills read runs/<run-id>/records.jsonl (e.g. 05's collect --records).

Usage

# install deps once (use a venv - system Python is externally-managed)
pip install -r ../headless-gtm-shared/requirements.txt
export APIFY_API_TOKEN=...        # console.apify.com → Settings → Integrations

python discover.py \
  --search-term "yoga studios" \
  --geo "California" \
  --max-results 200 \
  --min-rating 4.0 \
  [--include-emails] [--with-review-dates] \
  [--out DIR] [--estimate-only] [--yes]

Read the full file on GitHub · 119 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 119 lines · 101 tokens per session scan A 78623cab3e1a

Subscribe to this mod's changes

02-apify-maps-discover is a skill published in the GitHub repository Zevenue/headless-gtm (26 stars, last pushed 1mo ago), licensed MIT. It adds 101 tokens to every session and 1,571 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gtm-machine

Validate startup ideas with evidence and test them with real outbound — the full loop from raw idea to booked calls. Use this skill whenever an idea-stage founder wants to validate a startup or product idea, assess AI-platform kill-risk, check if a market is worth entering, build an ICP or personas, source leads from…

vkuchkanov/gtm-machine · 155 tokens

deepline-gtm

GTM prospecting, enrichment, outreach, and Deepline Play work/audits. Providers…

getaero-io/gtm-eng-skills · 332 tokens

deepline-ads-audiences

Use this skill when building, enriching, auditing, or uploading B2B paid ads audiences to Google Customer Match, Meta/Facebook Custom Audiences, or LinkedIn Matched Audiences. Triggers on phrases like '/deepline-ads-audience', '/deepline-ads-audiences', 'upload this audience', 'create custom audiences', 'personal…

getaero-io/gtm-eng-skills · 133 tokens

deepline-pre-research

Use when the user wants a last30days-style pre-research pass in Deepline: discover the critical public, private, CRM, workflow, social, and web data sources for a research/enrichment job; compare provider coverage; estimate Deepline credit cost; recommend the source plan before building or running the workflow; or…

getaero-io/gtm-eng-skills · 135 tokens

deepline-analytics

Use this skill when answering business analytics, RevOps, GTM metric, pipeline, revenue, funnel, customer, or warehouse questions with Deepline. Triggers on phrases like 'query Snowflake', 'analyze pipeline', 'total ACV', 'break down by quarter', 'use the semantic layer', 'run a semantic query', or any use of…

getaero-io/gtm-eng-skills · 115 tokens

niche-signal-discovery

Discover niche first-party signals that differentiate Closed Won vs Closed Lost accounts for ICP analysis. Use when the user provides won/lost customer domain lists and wants differential signals (website content, job listings, tech stack, maturity markers) to build account scoring models and prospecting criteria.…

getaero-io/gtm-eng-skills · 135 tokens