Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
zubair-trabzada avatar

Geo Prospect

  • 406 installs
  • 9.2k repo stars
  • Updated August 4, 2026
  • zubair-trabzada/geo-seo-claude

geo-prospect is a Claude Code skill that runs a CRM-lite pipeline for GEO agency prospects and clients, persisting contacts, deal values, audit history, and pipeline summaries for developers selling generative-engine opt

About

geo-prospect is a version 1.0.0 Claude Code skill that stores GEO agency sales data under ~/.geo-prospects/prospects and guides agents through Lead → Qualified → Proposal Sent → Won → Lost stages. The skill accepts triggers like prospect, lead, client, pipeline, crm, nuovo prospect, or aggiungi cliente, then reads and writes local prospect files with notes, deal values, and audit history. Developers reach for geo-prospect when they need persistent pipeline tracking inside the agent instead of a separate SaaS CRM while pitching or closing GEO engagements.

  • CRM-lite prospect management for GEO agencies
  • Persistent storage in ~/.geo-prospects/prospects.json
  • Tracks leads through full sales lifecycle
  • CLI-driven interface for quick prospect updates
  • Part of the geo-seo-claude ecosystem with 295 installs

Geo Prospect by the numbers

  • 406 all-time installs (skills.sh)
  • Ranked #207 of 853 Sales & Marketing skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/zubair-trabzada/geo-seo-claude --skill geo-prospect

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs406
repo stars9.2k
Last updatedAugust 4, 2026
Repositoryzubair-trabzada/geo-seo-claude

How do you track GEO agency sales pipeline in Claude?

Manages GEO agency prospects and clients through the full sales lifecycle, storing contact and deal data persistently so a developer can track pitches and close clients.

Who is it for?

Developers or consultants running a GEO agency who want agent-native CRM tracking without spinning up a separate sales tool.

Skip if: Teams that already standardize on Salesforce or HubSpot and need multi-user sync, permissions, or email automation.

When should I use this skill?

User mentions prospect, lead, client, pipeline, crm, nuovo prospect, aggiungi cliente, or asks to manage GEO sales.

What you get

Persistent prospect records, pipeline stage updates, audit history, notes, deal values, and generated pipeline summaries.

  • prospect JSON/files
  • pipeline summary

By the numbers

  • Defines 5 pipeline stages from Lead through Won/Lost
  • Version 1.0.0 with tags geo, business, crm, prospect, pipeline, sales

Files

SKILL.mdMarkdownGitHub ↗

GEO Prospect Manager

Purpose

Manage GEO agency prospects and clients through the full sales lifecycle. All data is stored in ~/.geo-prospects/prospects.json (persistent across sessions).

---

Commands

CommandWhat It Does
/geo prospect new <domain>Create new prospect (interactive prompts)
/geo prospect listShow all prospects with pipeline status
/geo prospect list <status>Filter: lead, qualified, proposal, won, lost
/geo prospect show <id-or-domain>Full prospect detail with history
/geo prospect audit <id-or-domain>Run quick GEO audit and save to prospect record
/geo prospect note <id-or-domain> "<text>"Add interaction note with timestamp
/geo prospect status <id-or-domain> <new-status>Move through pipeline
/geo prospect won <id-or-domain> <monthly-value>Mark as won, set contract value
/geo prospect lost <id-or-domain> "<reason>"Mark as lost with reason
/geo prospect pipelineVisual pipeline summary with revenue forecast

---

Data Structure

Each prospect is stored as a JSON record:

{
  "id": "PRO-001",
  "company": "Electron Srl",
  "domain": "electron-srl.com",
  "contact_email": "info@electron-srl.com",
  "contact_name": "",
  "industry": "Educational Equipment Manufacturing",
  "country": "Italy",
  "status": "qualified",
  "geo_score": 32,
  "audit_date": "2026-03-12",
  "audit_file": "~/.geo-prospects/audits/electron-srl.com-2026-03-12.md",
  "proposal_file": "~/.geo-prospects/proposals/electron-srl.com-proposal.md",
  "monthly_value": 0,
  "contract_start": null,
  "contract_months": 0,
  "notes": [
    {
      "date": "2026-03-12",
      "text": "Initial GEO quick scan. Score 32/100 - Critical tier. Strong candidate for GEO services."
    }
  ],
  "created_at": "2026-03-12",
  "updated_at": "2026-03-12"
}

---

Orchestration Instructions

/geo prospect new <domain>

1. Check if ~/.geo-prospects/prospects.json exists, create if not (empty array) 2. Auto-detect company name from domain (e.g., electron-srl.comElectron Srl) 3. Assign next sequential ID: PRO-001, PRO-002, etc. 4. Ask user for:

  • Contact name (optional)
  • Contact email
  • Monthly contract value estimate (optional)

5. Set status to lead 6. Save to JSON file 7. Suggest next step: "Run /geo prospect audit electron-srl.com to score this prospect"

/geo prospect list

Read ~/.geo-prospects/prospects.json and render a summary table:

GEO Prospect Pipeline — March 2026
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

ID       Domain                  Company           Status      Score  Value
───────  ──────────────────────  ────────────────  ──────────  ─────  ──────
PRO-001  electron-srl.com        Electron Srl      Qualified   32/100  €4.5K
PRO-002  acme.com                ACME Corp         Lead        —       —
PRO-003  bigshop.it              BigShop           Won         41/100  €6.0K

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Pipeline: 1 lead | 1 qualified | 0 proposals | 1 won | 0 lost
Committed MRR: €6,000 | Pipeline Value: €4,500

/geo prospect audit <id-or-domain>

1. Run /geo quick <domain> to get GEO snapshot score 2. Save score to prospect record: geo_score, audit_date 3. Save audit output to ~/.geo-prospects/audits/<domain>-<date>.md 4. Update audit_file path in prospect record 5. Add auto-note: "Quick audit run. GEO Score: XX/100." 6. If score < 55: suggest "Score indicates strong sales opportunity. Run /geo proposal <domain> to generate proposal."

/geo prospect note <id-or-domain> "<text>"

1. Find prospect by ID or domain 2. Append note with current ISO date 3. Save back to JSON 4. Confirm: "Note added to Electron Srl (PRO-001)"

/geo prospect status <id-or-domain> <status>

Valid statuses: lead, qualified, proposal, won, lost

1. Update status field 2. Add auto-note: "Status changed to <status>" 3. Save and confirm

/geo prospect pipeline

Visual revenue-focused pipeline summary:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GEO AGENCY PIPELINE SUMMARY — March 2026
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

STAGE          COUNT   POTENTIAL VALUE   NOTES
─────────────  ─────   ───────────────   ─────────────────────
Lead             2      €8,000/mo        New discoveries
Qualified        1      €4,500/mo        Ready for proposal
Proposal Sent    1      €6,000/mo        Awaiting signature
Won              3      €18,500/mo       Active clients (MRR)
Lost             1      —                Budget freeze

COMMITTED MRR:        €18,500
PIPELINE (qualified+): €10,500
TOTAL POTENTIAL:      €29,000/mo → €348,000/yr

Next actions:
→ PRO-003 (acme.com): Send proposal — score 38/100 (strong case)
→ PRO-007 (shop.it): Follow up — proposal sent 8 days ago
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

---

Storage Location

All data stored in ~/.geo-prospects/:

~/.geo-prospects/
├── prospects.json          # Main CRM database
├── audits/                 # Quick audit snapshots
│   └── electron-srl.com-2026-03-12.md
└── proposals/              # Generated proposals
    └── electron-srl.com-proposal.md

Create directory if it does not exist: mkdir -p ~/.geo-prospects/audits ~/.geo-prospects/proposals

---

Pipeline Stage Definitions

StatusMeaningTypical Next Action
leadDiscovered, not yet contactedRun quick audit, assess opportunity
qualifiedAudit done, confirmed pain pointsGenerate proposal
proposalProposal sent, awaiting decisionFollow up, answer questions
wonContract signed, active clientRun full audit, start onboarding
lostDeal closed lostLog reason for future reference

---

Output

  • All commands print confirmation + current prospect status to terminal
  • No external files unless explicitly saving audits/proposals
  • JSON database is the single source of truth

Related skills

FAQ

Where does geo-prospect store prospect data?

geo-prospect stores all prospect and client records under ~/.geo-prospects/prospects on the local filesystem. The skill uses Read, Write, Bash, and Glob to create and update files so pipeline state survives across Claude Code sessions.

What pipeline stages does geo-prospect support?

geo-prospect models a five-stage sales funnel: Lead, Qualified, Proposal Sent, Won, and Lost. Developers move prospects between stages, attach audit history and notes, record deal values, and generate pipeline summaries from that state.

Sales & Marketingfinanceecommercepricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.