GB-Power-Market-JJ outreach-crm
Track leads locally, manage outreach campaigns, and export as CSV for download.
install
source · Clone the upstream repo
git clone https://github.com/GeorgeDoors888/GB-Power-Market-JJ
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.claude/skills && cp -r "$T/openclaw-skills/skills/3rdbrain/outreach-crm" ~/.claude/skills/georgedoors888-gb-power-market-jj-outreach-crm && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/openclaw-skills/skills/3rdbrain/outreach-crm" ~/.openclaw/skills/georgedoors888-gb-power-market-jj-outreach-crm && rm -rf "$T"
manifest:
openclaw-skills/skills/3rdbrain/outreach-crm/SKILL.mdsource content
Outreach CRM Skill
Manage lead generation outreach. Leads are stored in a local JSON file inside the agent workspace — no external database required. Users can view leads in chat or export them as a CSV file.
Available Tools
Run with Node.js:
node {baseDir}/outreach-crm.js <command> [args]
- add-lead - Add a new lead to the local leads file
- list - List all tracked leads (displays in chat)
- log - Log an interaction with a lead
- export-csv - Export all leads to a CSV file and print the file path
- clear - Remove all leads (use with caution)
Usage
node {baseDir}/outreach-crm.js add-lead --name "John" --source "twitter" --handle "@john" --score 75 --tier hot node {baseDir}/outreach-crm.js list node {baseDir}/outreach-crm.js log <lead_id> "Sent intro DM" node {baseDir}/outreach-crm.js export-csv
Storage
Leads are saved to
/root/.openclaw/workspace/leads.json inside the container.
CSV exports are written to /root/.openclaw/workspace/leads.csv.
Always show the user the export path so they can download it.