Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add millord237/10x-outreach-skill --skill "account-manager"
Install specific skill from multi-skill repository
# Description
|
# SKILL.md
name: account-manager
description: |
CRM-style contact and deal pipeline management. Use this skill when the user wants to
manage contacts, track deals, schedule follow-ups, or export contact lists.
allowed-tools:
- Bash
- Read
- Write
- Glob
- Grep
- AskUserQuestion
Account Manager Skill
Manages contacts, deal pipelines, and follow-up scheduling like a lightweight CRM.
When to Use
- User wants to add, view, or search contacts
- User asks about deal pipeline or sales stages
- User needs to schedule or check follow-ups
- User wants to import/export contacts
- User asks "who should I follow up with?"
When NOT to Use
- Finding new people β use
discovery-engine - Sending emails β use
outreach-manageroremail-composer - Platform actions β use platform adapters
Core Operations
Add Contact
python .claude/scripts/account_manager.py add "Name" --email [email protected] --company "Co" --role "CTO" --source exa --tags "ai,founder"
Pipeline Management
python .claude/scripts/account_manager.py deal CONTACT_ID --stage qualified --value 25000
python .claude/scripts/account_manager.py pipeline
Follow-ups
python .claude/scripts/account_manager.py followup CONTACT_ID --date 2026-02-01 --note "Send case study"
python .claude/scripts/account_manager.py overdue
Search & Export
python .claude/scripts/account_manager.py search "CTO ai startup"
python .claude/scripts/account_manager.py export --format csv --output output/contacts.csv
Data Storage
output/accounts/contacts.jsonβ Contact databaseoutput/accounts/deals.jsonβ Deal pipelineoutput/accounts/followups.jsonβ Scheduled follow-ups
Integration Points
discovery-engineβ discovered people can be added as contactsoutreach-managerβ campaigns pull from contact listsanalyticsβ tracks engagement per contactworkflow-engineβ follow-up sequences reference contacts
Agent
The account-planner agent (.claude/agents/account-planner.md) plans multi-step follow-up sequences based on deal stage and contact history.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.