Prospect list enrichment
Skill Xuxchloris/export_skills/skills/prospect-list-enrichment
Use when a trade agent needs to clean, deduplicate, normalize, enrich, or prepare CSV and Excel prospect lists before company research, scoring, or campaign planningFrom its SKILL.md
npx -y skills add Xuxchloris/export_skills --skill prospect-list-enrichmentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 23 stars23 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.
- runs commandsInstructs the agent to run 1 command, including `python tools/batch_prospect_pipeline.py --input <prospects.csv|xlsx> --product <PRODUCT.yaml> --market <MARKET.yaml> --tone <TONE.yaml> --discovery <DISCOVERY.yaml> --output-dir <folder>`.
SKILL.md
3.8 KB, 806 tokens by cl100k_base, as published. Nobody here has run it
Prospect List Enrichment
Overview
Prepare CSV and Excel prospect lists for research and scoring. The core rule is to preserve source evidence while turning inconsistent rows into a reviewable company-level queue.
Do not create generated company rows. Every enriched row must come from the user's file or a configured collection output.
When to Use
Use this skill when the user provides a CSV or Excel customer list, asks to remove duplicates, wants missing fields flagged, or needs a batch queue for company research.
Use prospect-discovery first when the user needs a sourcing strategy instead of list processing.
Inputs
- CSV or Excel prospect list
- Product context from
product-loader - Market rules from
MARKET.yaml - Optional discovery output from
prospect-discovery
Outputs
{
"input_rows": 0,
"unique_companies": 0,
"duplicate_rows": [],
"ready_for_research": [],
"needs_review": [],
"excluded_rows": [],
"output_columns": [],
"next_steps": ["company-research", "prospect-scoring"]
}
Procedure
- Run
python tools/batch_prospect_pipeline.py --input <prospects.csv|xlsx> --product <PRODUCT.yaml> --market <MARKET.yaml> --tone <TONE.yaml> --discovery <DISCOVERY.yaml> --output-dir <folder>when one-step batch output is needed. - If the product file is a catalog and the user names one product, add
--product-query <name>or--sku <sku>instead of editing the catalog. - Read CSV or Excel rows without changing the original file.
- Normalize column names and map available values to company name, website, country, business type, source URL, source note, contact email, contact phone, and contact clue.
- Normalize websites by domain and deduplicate rows by domain first, then by normalized company name and country.
- Preserve all source URLs and merge useful source notes when duplicates are combined.
- Mark rows without company name or website as
needs_review. - Mark rows outside the target market or unrelated to the product category as
excluded_rowswith a reason. - Write
prospects.enriched.xlsx,research_reports.json,scores.xlsx, andemail_drafts.xlsxwhen using the batch pipeline. - Treat
research_reports.jsonas the source of fetched evidence for scoring and emails. - Do not fill missing company facts from assumptions; use
needs_review,fetch_failed, orno_evidence. - If the user asks for a different output shape, preserve the same row data and choose the requested export format instead of changing the facts.
- Send research-ready rows to
company-research; send researched rows toprospect-scoring.
Verification
- Original input file remains unchanged.
- Batch output includes
prospects.enriched.xlsx,research_reports.json,scores.xlsx, andemail_drafts.xlsx. - Duplicate handling preserves source evidence.
- Every ready row includes company name, website, and source URL.
- Enriched rows include
contact_email,contact_phone,email_result, andphone_result; missing contact values are written as没有. - Missing fields are listed instead of guessed.
- No generated rows appear in output workbooks.
- Scoring and email drafts are based on fetched evidence.
- Research happens before scoring.
- Output format requests are honored without changing row facts.
Common Mistakes
| Mistake | Fix |
|---|---|
| Deduplicating only by display name | Prefer normalized website domain |
| Dropping source URLs during merge | Preserve every useful source record |
| Treating missing fields as empty facts | Mark them for review |
| Scoring raw rows immediately | Run company research first |
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most sales audience skills give in 806 tokens
Counted across 401 of the 401 authors here whose files we hold, read 2026-08-07
- Read product marketing context before asking questionsin 21 of 401, across 11 files
- Acknowledge competitor strengths honestlyin 18 of 401, across 7 files
- Start every page with a summaryin 15 of 401, across 4 files
- Use a single, low-friction call to actionin 15 of 401, across 7 files
- Create a single source of truth for each competitorin 14 of 401, across 3 files
- Make each follow-up email add new valuein 11 of 401, across 5 files
- Cut any sentence that does not drive a replyin 10 of 401, across 4 files
- Tie personalization directly to the problemin 10 of 401, across 4 files
- Write paragraph comparisons for each dimensionin 9 of 401, across 3 files
- Link between related competitor pagesin 9 of 401, across 3 files
- Keep subject lines short and lowercasein 9 of 401, across 3 files
- Define ideal customer profile from top customersin 9 of 401, across 3 files
Said here and by no other author read
- preserve all source urls during merges
- mark rows missing company name or website for review
- mark ineligible rows as excluded with a reason
- map available values to defined output columns
- treat research reports as the evidence source
- run company research before prospect scoring
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.