lead-phase-6
Handles final report generation and CSV export for the lead-finder pipeline.
Install
mkdir -p .claude/skills/lead-phase-6 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14456" && unzip -o skill.zip -d .claude/skills/lead-phase-6 && rm skill.zipInstalls to .claude/skills/lead-phase-6
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Fase 6 do lead-finder — Resumo final, CSV e fechar sessaoKey capabilities
- →Verify that all leads have been saved to a CSV file.
- →Identify the most recently generated CSV file.
- →Display a summary of the lead finding process.
- →List top leads with details like username, score, and bio.
- →Close the browser session without logging out of Instagram.
How it works
This skill reads the lead-finder-progress.json state file, ensures all leads are saved to CSV, displays a summary of the lead finding process, lists top leads, and then closes the browser session while updating the state.
Inputs & outputs
When to use lead-phase-6
- →Export lead data
- →Generate lead discovery summary
- →Clean up browser sessions
About this skill
Fase 6 — Resumo + CSV + Fechar
Leia o state file:
cat data/_state/lead-finder-progress.json
6.1 Garantir CSV salvo
Verifique que todos os leads foram salvos via instagram_append_lead na Fase 4.
Se algum ficou pendente, salve agora.
Identifique o CSV gerado:
ls -t leads/leads_*.csv | head -1
6.2 Mostrar resumo
========================================
RESULTADO — Lead Finder (Playwright)
========================================
Nicho: [nicho] | Cidade: [cidade]
Candidatos Google: XX
Do cache (pulados): XX
Validados: XX
Leads encontrados: XX
QUENTES: XX
MORNOS: XX
FRIOS: XX
Similares descobertos: XX
CSV: leads/leads_XXXXXXXX.csv
========================================
TOP LEADS:
──────────────────────────────────────
1. @username (QUENTE, score 8)
Nome: [full_name]
[followers] seg. | [posts] posts
Bio: [resumo bio]
Site: nenhum
Fotos: [N] imagens HD capturadas
Motivos: sem site, conta comercial, conta nova
2. @username (QUENTE, score 7)
...
──────────────────────────────────────
PROXIMO PASSO:
/enrich-lead --nome "X" --cidade "Y" --nicho "Z" --source "instagram" --id "@username" --instagram "username"
========================================
6.3 Fechar sessao do browser
NAO faca logout do Instagram — os cookies persistem entre sessoes. Apenas navegue para uma pagina neutra:
browser_navigate: about:blank
Isso deixa a sessao do Instagram ativa para a proxima vez.
6.4 Atualizar state
Marque a sessao como completa:
cd /Users/felipemoreiralanna/Documents/GitHub/vendedor-de-sites-v2
.venv/bin/python3 -c "
import json
from datetime import datetime
with open('data/_state/lead-finder-progress.json') as f: state = json.load(f)
state['current_phase'] = 6
state['phases']['phase_6'] = {'status': 'complete'}
state['completed_at'] = datetime.now().isoformat()
with open('data/_state/lead-finder-progress.json', 'w') as f: json.dump(state, f, indent=2, ensure_ascii=False)
"
CRITERIO DE CONCLUSAO
- CSV verificado e path confirmado
- Resumo formatado mostrado ao usuario
- Top leads listados com detalhes
- Sessao do browser limpa (sem logout)
- Sugestao de /enrich-lead para os melhores leads
- State marcado como completo
When not to use it
- →When the user needs to perform a logout from Instagram.
- →When the user needs to modify the lead data directly within the skill.
- →When the user needs to start a new lead finding process.
Limitations
- →The skill does not perform Instagram logout.
- →It relies on the `instagram_append_lead` function from Fase 4 for saving leads.
- →It only navigates to `about:blank` to close the browser session.
How it compares
This skill finalizes a lead finding session by summarizing results, ensuring data persistence, and gracefully closing resources, which is a concluding step rather than an active lead generation phase.
Compared to similar skills
lead-phase-6 side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| lead-phase-6 (this skill) | 0 | 4mo | Review | Beginner |
| feishu-drive | 3 | 6mo | No flags | Intermediate |
| calculator | 7 | 7mo | Review | Beginner |
| speech-to-text | 7 | 2mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
feishu-drive
openclaw
Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.
calculator
Code-and-Sorts
Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors.
speech-to-text
benchflow-ai
Transcribe video to timestamped text using Whisper tiny model (pre-installed).
transactionsyncing
AojdevStudio
Import Fidelity transaction history CSV into Google Sheets with smart categorization. USE WHEN user mentions "sync transactions", "import transactions", "transaction history", OR wants to import Fidelity History CSV. Routes debit card purchases to Expense Tracker with auto-categorization.
office-docs
Xxiii8322766509
Extract text and tables from .docx and .xlsx using local scripts (no external deps).
raffle-winner-picker
ComposioHQ
Picks random winners from lists, spreadsheets, or Google Sheets for giveaways, raffles, and contests. Ensures fair, unbiased selection with transparency.