prospeccao-b2b-comercio-local

prospeccao-b2b-comercio-local is a skill for Claude Code, Codex from Hermes-brasil/hermes-brasil. It costs 31 tokens per session (1,212 once invoked), scanned A, original, MIT.

A B2B prospecting workflow for local businesses. It collects business details from Google Places, filters and deduplicates them, sends WhatsApp messages, and records follow-ups.

In plain words
What is it for?
Use it to find local clinics, salons, restaurants, shops, and other businesses; keep contacts in SQLite and Google Sheets; and receive summaries in Telegram.
Why use it?
It brings business discovery, contact filtering, outreach, and record-keeping into one repeatable process instead of separate manual tasks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find local clinics, salons, restaurants, shops, and other businesses; keep contacts in SQLite and Google Sheets; and receive summaries in Telegram.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Hermes-brasil/hermes-brasil --skill prospeccao-b2b-comercio-local
Clone the repo
git clone --depth 1 https://github.com/Hermes-brasil/hermes-brasil

Made for: Claude Code, Codex.

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 prospeccao-b2b-comercio-local

README.md
[![agentmods](https://agentmods.dev/badge/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local/github.svg)](https://agentmods.dev/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local)
Your own site
<a href="https://agentmods.dev/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local"><img src="https://agentmods.dev/badge/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local/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 prospeccao-b2b-comercio-local

Your own site · 80×15
<a href="https://agentmods.dev/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local"><img src="https://agentmods.dev/badge/skills/hermes-brasil/hermes-brasil/prospeccao-b2b-comercio-local.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,212 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 28
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 81
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00031 $0.01212
Opus 5 $0.00015 $0.00606
Sonnet 5 $0.00006 $0.00242
Haiku 4.5 $0.00003 $0.00121

Measured 12d ago against content hash 3d3dfd2bdb5e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

prospeccao-b2b-comercio-local scanned grade A with 1 finding 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 12d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://places.googleapis.com/v1/places:searchText?key={API_KEY}" \
skills/prospeccao-b2b-comercio-local/SKILL.md · 128 lines

How it starts

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

Prospecção B2B — Comércio Local

Pipeline automatizado de prospecção B2B para comércio local. Cobre coleta → qualificação → envio → registro → follow-up. Nichos: clínicas, salões, pet shops, restaurantes, mercados, lojas, oficinas, franquias.

Visão geral do fluxo

1. COLETA: Google Places API → nomes, endereços, telefones, sites, avaliações
2. DEDUP: consultar banco ANTES de inserir (zero duplicatas)
3. FILTRO: manter só comércios com WhatsApp OU Instagram OU site
4. ENVIO: WhatsApp (Evolution API) com delay entre mensagens
5. REGISTRO: SQLite + planilha (Google Sheets)
6. RESUMO: relatório no Telegram

1. Coleta — Google Places API (New) — RECOMENDADO

Muito mais rápido e confiável que browser:

curl -s "https://places.googleapis.com/v1/places:searchText?key={API_KEY}" \
  -H "Content-Type: application/json" \
  -H "X-Goog-FieldMask: places.displayName,places.formattedAddress,places.nationalPhoneNumber,places.rating,places.websiteUri" \
  -d '{"textQuery":"auto pecas em Pirituba Sao Paulo","maxResultCount":10}'

⚠️ Header OBRIGATÓRIO: X-Goog-FieldMask — sem ele retorna erro 400.

Setup (uma única vez)

  1. console.cloud.google.com → ativar Places API
  2. ATIVAR FATURAMENTO (obrigatório mesmo com crédito grátis)
  3. US$ 200/mês de crédito cobre ~20.000 buscas
  4. Gerar chave em Credentials > API Key
Erro Causa Solução
REQUEST_DENIED + "enable Billing" Faturamento não propagou Aguardar 5-30 min
PERMISSION_DENIED Chave restrita Liberar no console
400 "FieldMask required" API Nova sem header Adicionar X-Goog-FieldMask

2. Dedup — Consultar banco ANTES de adicionar

import sqlite3, re
db = sqlite3.connect("leads.db")
cur = db.cursor()
digits = re.sub(r'\D', '', raw_phone)
cur.execute("SELECT id FROM leads WHERE telefone = ?", (digits,))
if cur.fetchone() is None:
    cur.execute("INSERT INTO leads ... VALUES (...)")
else:
    print(f"⬇️ Duplicata ignorada: {nome}")

Read the full file on GitHub · 128 lines

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. 12d ago First seen · 128 lines · 31 tokens per session scan A 3d3dfd2bdb5e

Subscribe to this mod's changes

prospeccao-b2b-comercio-local is a skill published in the GitHub repository Hermes-brasil/hermes-brasil (132 stars, last pushed 1mo ago), licensed MIT. It adds 31 tokens to every session and 1,212 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

irpf-brasil

Use para declaração de IRPF guiada passo a passo, análise de pré-preenchida, cálculo de imposto, deduções, bens e direitos, rendimentos, restituição, malha fina, carnê-leão. Conduz o usuário como se estivesse declarando de verdade.

AlissonSantos1/brasil-legal-skills · 63 tokens

previdencia-brasil

Use para INSS, aposentadoria, benefícios previdenciários, cálculo de contribuição, regras de transição 2026, auxílio-doença, salário-maternidade, pensão por morte. Ativa em "aposentadoria", "INSS", "quando posso me aposentar", "auxílio-doença", "salário-maternidade", "BPC", "contribuição INSS".

AlissonSantos1/brasil-legal-skills · 88 tokens

trabalhista-brasil

Use para CLT, cálculo de salário líquido, rescisão, férias, FGTS, horas extras, CLT vs PJ, aposentadoria, INSS, processos trabalhistas, orientação sobre provas e direitos. Ativa em "calcular salário", "rescisão", "CLT ou PJ", "quanto ganho por hora", "INSS", "aposentadoria", "processo trabalhista", "horas extras".

AlissonSantos1/brasil-legal-skills · 95 tokens

societario-brasil

Use para abertura de empresa, tipos jurídicos, direitos e deveres de sócios, resolução de conflitos societários, geração de contratos, alvarás, licenças, certidões negativas e análise se vale a pena ter sócio. Ativa em "abrir empresa", "LTDA", "contrato social", "conflito com sócio", "alvará", "certidão negativa".

AlissonSantos1/brasil-legal-skills · 91 tokens

tributario-brasil

Use para tributação empresarial: Simples Nacional, MEI (abertura de CNPJ, CNAE), Reforma Tributária 2026 (CBS/IBS), PIS/COFINS, ICMS, ISS, emissão de nota fiscal, comparação de regimes. Ativa em "MEI", "CNPJ", "Simples Nacional", "nota fiscal", "CNAE", "reforma tributária", "CBS", "IBS", "regime tributário".

AlissonSantos1/brasil-legal-skills · 104 tokens

licitacoes-brasil

Use para licitações públicas: modalidades, como participar, ME e EPP em licitações, recursos, habilitação, pregão eletrônico, PNCP, SICAF, Licitações-e BB, contratações públicas, dispensa, inexigibilidade, estatais. Ativa em "licitação", "pregão", "edital", "como participar de licitação", "fornecedor do governo"…

AlissonSantos1/brasil-legal-skills · 104 tokens