Prospect scorer
Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skills
npx -y skills add TheWatcher01/skills --skill prospect-scorerAssembled 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.
What its author says it does
Copied from the file, not written here
Orchestre sirene + cnil + france-travail + bodacc + aides pour produire un score composite de prospect qualifié. Utiliser quand l'utilisateur demande d'analyser ou scorer un prospect, un SIRET, ou une entreprise cible.
SKILL.md
3.7 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
Prospect Scorer
Objectif
Produire un scorecard JSON avec score composite et recommandation d'approche commerciale pour un prospect identifié par SIRET ou nom d'entreprise.
Déclencheurs
/score SIRET(ex:/score 44306184100047)/score Nom Entreprise(ex:/score Airbus)- "analyse ce prospect"
- "score cette entreprise"
- "est-ce un bon lead ?"
Grille de scoring
| Signal | Points | Source |
|---|---|---|
| Pas de DPO déclaré (CNIL) | +30 | data-pipe cnil |
| Recrute DevSecOps/RGPD/DPO | +25 | data-pipe france-travail |
| 50-250 salariés (cible NIS2) | +20 | data-pipe sirene |
| Région Occitanie | +15 | data-pipe sirene |
| Secteur cible (NAF IT/santé/industrie) | +15 | data-pipe sirene |
| Événement BODACC récent (levée, fusion, création) | +10 | data-pipe bodacc |
| Éligible à des aides/subventions | +10 | data-pipe aides |
Seuil lead chaud : >= 50 points
Orchestration
Étapes à suivre dans l'ordre :
- Identification : Résoudre le SIRET via
sirene(recherche par nom si nécessaire). Extraire : raison sociale, NAF, effectif, adresse, région. - Check CNIL : Interroger le data-pipe
cnilpour vérifier si un DPO est déclaré pour ce SIREN. - Check France Travail : Chercher les offres d'emploi récentes de cette entreprise contenant les mots-clés :
DPO,RGPD,RSSI,DevSecOps,cybersécurité,conformité. - Check BODACC : Chercher les publications récentes (< 6 mois) : création, modification, radiation, vente de fonds, procédure collective.
- Check Aides : Vérifier l'éligibilité aux dispositifs d'aide (France Num, BPI, subventions régionales cyber).
- Calcul du score : Additionner les points selon la grille ci-dessus.
- Recommandation d'approche :
- Score >= 70 : Appel direct — lead très chaud, prioriser
- Score 50-69 : Email personnalisé — lead chaud, déclencher séquence outreach
- Score 30-49 : Nurturing — ajouter à la newsletter, surveiller les signaux
- Score < 30 : Veille — pas prioritaire, réévaluer dans 3 mois
Format de sortie
{
"siret": "44306184100047",
"raison_sociale": "ACME SAS",
"score_total": 65,
"seuil_lead_chaud": 50,
"est_lead_chaud": true,
"signaux": [
{ "signal": "Pas de DPO déclaré", "points": 30, "detail": "Aucun DPO trouvé dans le registre CNIL" },
{ "signal": "Secteur cible", "points": 15, "detail": "NAF 6201Z - Programmation informatique" },
{ "signal": "Cible NIS2", "points": 20, "detail": "120 salariés, entité importante" }
],
"approche_recommandee": "email_personnalise",
"talking_points": [
"Pas de DPO déclaré — obligation potentielle selon taille/activité",
"NIS2 applicable — échéance mise en conformité",
"Aide France Num potentiellement éligible pour reste à charge 0€"
],
"donnees_entreprise": {
"naf": "6201Z",
"effectif": 120,
"region": "Occitanie",
"ville": "Toulouse",
"date_creation": "2005-03-15"
}
}
Règles
- Toujours vérifier les 5 sources avant de scorer.
- Si une source est indisponible, noter
"source_indisponible": truedans le signal correspondant et ne pas compter les points. - Ne jamais inventer de données. Si l'information n'est pas trouvée, l'indiquer clairement.
- Le score est déterministe : mêmes données = même score.
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 ~1.1k 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
- resolve the siret or company name via sirene
- check cnil registry for a declared dpo
- search france-travail for recent security jobs
- search bodacc for recent publications
- check eligibility for financial aids
- calculate the total score using the scoring grid
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.