Preamble (runs on skill start)
# Version check (silent if up to date)
python3 telemetry/version_check.py 2>/dev/null || true
# Telemetry opt-in (first run only, then remembers your choice)
python3 telemetry/telemetry_init.py 2>/dev/null || true
Privacy: This skill logs usage locally to ~/.ai-marketing-skills/analytics/. Remote telemetry is opt-in only. No code, file paths, or repo content is ever collected. See telemetry/README.md.
Cold Outbound Optimizer
Startup: Determine Mode
Ask the user:
- Do you have an existing Instantly account with campaigns to audit, or are you starting from scratch?
- Do you have an Instantly API key? (Required for audit mode.)
If API key provided → run scripts/instantly-audit.py to pull campaigns, account inventory, and warmup scores before proceeding.
Phase 1: Discovery & Audit
1A — Infrastructure Check (if API key available)
Run python3 scripts/instantly-audit.py --api-key <KEY> and report:
- Active campaigns (name, status, reply rate, open rate)
- Sending accounts (count, warmup score, daily limit)
- Domain inventory
- Warmup gaps: any account with score <80 or <14 days warmup → flag as NOT ready
1B — Performance Data
- Pull campaign analytics from Instantly
- Ask: "Do you have a spreadsheet with historical outbound data?" If yes, request link.
1C — ICP Definition
If no ICP defined, collect:
- Titles: Who are you targeting? (e.g., VP Marketing, Head of Growth)
- Industries: Which verticals?
- Company size: Employee count or revenue range?
- Revenue floor: Minimum ARR/revenue to qualify?
- Anti-ICP: Who to explicitly exclude?
Use references/icp-template.md as the collection template.
1D — Business Context
Collect:
- What do you sell? (One sentence, no jargon)
- What's the primary offer? (Free trial, audit, demo, consultation)
- Real URLs to reference (pricing page, case studies, relevant content)
- Any proof points? (Client results, stats, social proof)
1E — Expert Panel Config
Default: 10 experts (see references/expert-panel.md).
Ask: "Any industry-specific experts to add, or panelists to swap?" Confirm roster before scoring.
Phase 2: Expert Panel Recursive Scoring
Target: 90/100. Non-negotiable. Iterate until reached.
Round Structure
Each round produces:
- Score table — all 10 panelists, individual score (0-100), one-line rationale
- Aggregate score — average of all 10
- Top weaknesses — ranked list of what's holding the copy back
- Changes made — specific edits addressing each weakness
- Updated copy — full revised sequence after changes
Scoring Criteria (per panelist's lens — see references/expert-panel.md)
- Subject line curiosity / open rate potential
- First sentence pattern interrupt
- Body clarity and brevity
- CTA softness and specificity
- Sequence flow and follow-up logic
- Deliverability risk signals (spam words, link density)
- Personalization believability
Rules
- Scores must be brutally honest. No padding to 90 without earning it.
- If round score < 90: identify top 3 weaknesses, revise copy, run next round.
- If round score ≥ 90: finalize copy and proceed to deliverables.
- Show every round in the final doc — the iteration trail is part of the value.
Phase 3: Deliverables
Strategy Doc
Create a document (Google Doc, Notion, or markdown) with:
- Pre-Analysis / Brutal Truth — what the existing campaigns are doing wrong (or baseline if starting from scratch)
- ICP Summary — confirmed targeting parameters
- Infrastructure Status — account inventory, warmup readiness, capacity math
- Scoring Rounds — full panel vote tables for every round
- Final Email Copy — all steps for all campaigns, Instantly-ready format
- Implementation Plan — step-by-step setup instructions
- Capacity Math — accounts × daily send rate = pipeline projections
- Weekly Metrics Targets — open rate, reply rate, positive reply rate, meetings booked
- STOP List — what to kill immediately
- START List — what to launch first
Format Rules for Final Copy
Follow all rules in references/instantly-rules.md and references/copy-rules.md.
Human Review Gate
Do NOT push anything to Instantly automatically. The doc is for human review. Get explicit approval before any API writes.
Iteration
After review, collect feedback and re-run scoring on revised copy if needed.
Capacity Math Formula
Accounts ready (score ≥80, ≥14 days warmup) × 30 emails/day = conservative daily volume
Accounts ready × 50 emails/day = aggressive daily volume
Daily volume × 22 working days = monthly send capacity
Monthly sends × expected reply rate = expected replies
Expected replies × qualification rate = pipeline opportunities
Weekly Metrics Targets (Baselines)
| Metric |
Good |
Great |
| Open rate |
40%+ |
60%+ |
| Reply rate |
3%+ |
7%+ |
| Positive reply rate |
1%+ |
3%+ |
| Meeting rate |
0.5%+ |
1.5%+ |
Adjust targets based on niche and offer. Cold traffic to a free audit converts differently than a paid trial.
Add-On Recommendations (mention but don't build)
- LinkedIn automation: HeyReach or similar for multi-channel sequences. Separate workflow.
- Lead enrichment: Clay or Apollo for personalization data before upload.
- Lead pipeline: Use
scripts/lead-pipeline.py for Apollo → LeadMagic → Instantly automation.
Reference Files
| File |
Purpose |
references/instantly-rules.md |
Variable syntax, sequence structure, deliverability rules |
references/expert-panel.md |
Default 10-expert roster with scoring lenses |
references/copy-rules.md |
Email copy rules (first sentence, CTA, stats framing) |
references/icp-template.md |
ICP data collection template |
scripts/instantly-audit.py |
Pulls campaigns, accounts, warmup scores via Instantly v2 API |
scripts/lead-pipeline.py |
End-to-end lead sourcing pipeline |
scripts/competitive-monitor.py |
Competitor tracking and intelligence |
scripts/cross-signal-detector.py |
Multi-source signal detection |
scripts/cold-outbound-sender.py |
Send approved outbound emails |
1---2name: cold-outbound-optimizer3description: Design, analyze, and optimize cold outbound email campaigns for Instantly. Handles end-to-end ICP definition, expert panel scoring (recursive to 90+), sequence copywriting, infrastructure audit, capacity planning, and implementation docs. Use when asked to build cold outbound sequences, optimize cold email, analyze outbound campaigns, build sales sequences, build Instantly sequences, create cold outbound strategies, or design email campaigns. Supports both "start from scratch" and "optimize existing" modes.4---567## Preamble (runs on skill start)89```bash10# Version check (silent if up to date)11python3 telemetry/version_check.py 2>/dev/null || true1213# Telemetry opt-in (first run only, then remembers your choice)14python3 telemetry/telemetry_init.py 2>/dev/null || true15```1617> **Privacy:** This skill logs usage locally to `~/.ai-marketing-skills/analytics/`. Remote telemetry is opt-in only. No code, file paths, or repo content is ever collected. See `telemetry/README.md`.1819---2021# Cold Outbound Optimizer2223---2425## Startup: Determine Mode2627Ask the user:281. Do you have an **existing Instantly account** with campaigns to audit, or are you **starting from scratch**?292. Do you have an **Instantly API key**? (Required for audit mode.)3031If API key provided → run `scripts/instantly-audit.py` to pull campaigns, account inventory, and warmup scores before proceeding.3233---3435## Phase 1: Discovery & Audit3637### 1A — Infrastructure Check (if API key available)38Run `python3 scripts/instantly-audit.py --api-key <KEY>` and report:39- Active campaigns (name, status, reply rate, open rate)40- Sending accounts (count, warmup score, daily limit)41- Domain inventory42- Warmup gaps: any account with score <80 or <14 days warmup → flag as NOT ready4344### 1B — Performance Data45- Pull campaign analytics from Instantly46- Ask: "Do you have a spreadsheet with historical outbound data?" If yes, request link.4748### 1C — ICP Definition49If no ICP defined, collect:50- **Titles:** Who are you targeting? (e.g., VP Marketing, Head of Growth)51- **Industries:** Which verticals?52- **Company size:** Employee count or revenue range?53- **Revenue floor:** Minimum ARR/revenue to qualify?54- **Anti-ICP:** Who to explicitly exclude?5556Use `references/icp-template.md` as the collection template.5758### 1D — Business Context59Collect:60- What do you sell? (One sentence, no jargon)61- What's the primary offer? (Free trial, audit, demo, consultation)62- Real URLs to reference (pricing page, case studies, relevant content)63- Any proof points? (Client results, stats, social proof)6465### 1E — Expert Panel Config66Default: 10 experts (see `references/expert-panel.md`).67Ask: "Any industry-specific experts to add, or panelists to swap?" Confirm roster before scoring.6869---7071## Phase 2: Expert Panel Recursive Scoring7273**Target: 90/100. Non-negotiable. Iterate until reached.**7475### Round Structure76Each round produces:771. **Score table** — all 10 panelists, individual score (0-100), one-line rationale782. **Aggregate score** — average of all 10793. **Top weaknesses** — ranked list of what's holding the copy back804. **Changes made** — specific edits addressing each weakness815. **Updated copy** — full revised sequence after changes8283### Scoring Criteria (per panelist's lens — see `references/expert-panel.md`)84- Subject line curiosity / open rate potential85- First sentence pattern interrupt86- Body clarity and brevity87- CTA softness and specificity88- Sequence flow and follow-up logic89- Deliverability risk signals (spam words, link density)90- Personalization believability9192### Rules93- Scores must be brutally honest. No padding to 90 without earning it.94- If round score < 90: identify top 3 weaknesses, revise copy, run next round.95- If round score ≥ 90: finalize copy and proceed to deliverables.96- Show every round in the final doc — the iteration trail is part of the value.9798---99100## Phase 3: Deliverables101102### Strategy Doc103Create a document (Google Doc, Notion, or markdown) with:1041051. **Pre-Analysis / Brutal Truth** — what the existing campaigns are doing wrong (or baseline if starting from scratch)1062. **ICP Summary** — confirmed targeting parameters1073. **Infrastructure Status** — account inventory, warmup readiness, capacity math1084. **Scoring Rounds** — full panel vote tables for every round1095. **Final Email Copy** — all steps for all campaigns, Instantly-ready format1106. **Implementation Plan** — step-by-step setup instructions1117. **Capacity Math** — accounts × daily send rate = pipeline projections1128. **Weekly Metrics Targets** — open rate, reply rate, positive reply rate, meetings booked1139. **STOP List** — what to kill immediately11410. **START List** — what to launch first115116### Format Rules for Final Copy117Follow all rules in `references/instantly-rules.md` and `references/copy-rules.md`.118119### Human Review Gate120**Do NOT push anything to Instantly automatically.** The doc is for human review. Get explicit approval before any API writes.121122### Iteration123After review, collect feedback and re-run scoring on revised copy if needed.124125---126127## Capacity Math Formula128129```130Accounts ready (score ≥80, ≥14 days warmup) × 30 emails/day = conservative daily volume131Accounts ready × 50 emails/day = aggressive daily volume132Daily volume × 22 working days = monthly send capacity133Monthly sends × expected reply rate = expected replies134Expected replies × qualification rate = pipeline opportunities135```136137---138139## Weekly Metrics Targets (Baselines)140141| Metric | Good | Great |142|--------|------|-------|143| Open rate | 40%+ | 60%+ |144| Reply rate | 3%+ | 7%+ |145| Positive reply rate | 1%+ | 3%+ |146| Meeting rate | 0.5%+ | 1.5%+ |147148Adjust targets based on niche and offer. Cold traffic to a free audit converts differently than a paid trial.149150---151152## Add-On Recommendations (mention but don't build)153154- **LinkedIn automation:** HeyReach or similar for multi-channel sequences. Separate workflow.155- **Lead enrichment:** Clay or Apollo for personalization data before upload.156- **Lead pipeline:** Use `scripts/lead-pipeline.py` for Apollo → LeadMagic → Instantly automation.157158---159160## Reference Files161162| File | Purpose |163|------|---------|164| `references/instantly-rules.md` | Variable syntax, sequence structure, deliverability rules |165| `references/expert-panel.md` | Default 10-expert roster with scoring lenses |166| `references/copy-rules.md` | Email copy rules (first sentence, CTA, stats framing) |167| `references/icp-template.md` | ICP data collection template |168| `scripts/instantly-audit.py` | Pulls campaigns, accounts, warmup scores via Instantly v2 API |169| `scripts/lead-pipeline.py` | End-to-end lead sourcing pipeline |170| `scripts/competitive-monitor.py` | Competitor tracking and intelligence |171| `scripts/cross-signal-detector.py` | Multi-source signal detection |172| `scripts/cold-outbound-sender.py` | Send approved outbound emails |