A multi-agent marketing strategy platform powered by Claude Code. 11 specialized AI agents collaborate to produce a complete, professional marketing strategy β from client discovery through executive summary.
- 11 specialized agents instead of one monolithic prompt
- 10 phases (up from 6) β added SEO, Analytics, and Executive Summary
- Parallel execution β Phases 4, 5, 6 run simultaneously
- QA reviewer cross-checks every deliverable before you see it
- Local web dashboard for intake, progress tracking, and output viewing
cd launch-kit
claudeClaude will ask about your client and run the full pipeline. Use slash commands for control:
/full-pipelineβ Run all 10 phases end-to-end/run-phase 3β Run a specific phase/statusβ See pipeline progress
# Terminal 1: Start the dashboard
cd launch-kit/web
npm install
npm start
# Terminal 2: Run Claude
cd launch-kit
claudeThe web UI opens at http://localhost:3000. You can:
- Fill out the client intake form in the browser
- Watch phases complete in real-time
- Review and approve outputs
- Request changes (creates feedback files Claude picks up)
- Export deliverables as markdown or JSON
Drop any client info into the inputs/ folder β a brief, brand guidelines PDF, competitor URLs, notes, whatever you have. Then run claude.
launch-kit/
βββ CLAUDE.md β Orchestrator brain
βββ .claude/
β βββ agents/ β 11 specialized subagents
β β βββ intake.md
β β βββ researcher.md
β β βββ brand-strategist.md
β β βββ funnel-architect.md
β β βββ ad-strategist.md
β β βββ outreach-specialist.md
β β βββ seo-strategist.md
β β βββ analytics-architect.md
β β βββ content-creator.md
β β βββ executive-summarizer.md
β β βββ quality-reviewer.md
β βββ commands/ β Slash commands
β β βββ run-phase.md
β β βββ full-pipeline.md
β β βββ status.md
β βββ settings.local.json β Tool permissions
βββ inputs/ β Client briefs + web UI intake
βββ outputs/ β Generated deliverables + progress.json
βββ templates/ β Output scaffolds (agents read these)
βββ web/ β React dashboard (optional)
βββ .mcp.json β MCP server config
βββ README.md β You're here
0 (Intake) β 1 (Research) β 2 (Brand) β 3 (Funnel)
β
ββββββββββββββββΌβββββββββββββββ
βΌ βΌ βΌ
4 (Ads) 5 (Outreach) 6 (SEO)
β β β
ββββββββββββββββΌβββββββββββββββ
βΌ
7 (Analytics)
βΌ
8 (Content)
βΌ
9 (Executive Summary)
Phases 4, 5, and 6 run in parallel after Phase 3 completes.
After running the full pipeline, your outputs/ folder contains:
| File | Phase | What's In It |
|---|---|---|
00-client-profile.md |
0 | Compiled client profile |
01-deep-research.md |
1 | Company, competitor, market, and audience research |
02-brand-voice.md |
2 | Brand personality, voice, messaging pillars, positioning |
03-funnel-strategy.md |
3 | Customer journey and funnel design |
04-ad-strategy.md |
4 | Paid channels, targeting, budget, creative direction |
05-outreach-plan.md |
5 | Email sequences, DM templates, partnerships |
06-seo-strategy.md |
6 | Keywords, content pillars, technical SEO |
07-analytics-plan.md |
7 | Tracking, dashboards, attribution, reporting |
08-content-pack.md |
8 | Social posts, headlines, CTAs, emails, landing page copy |
09-executive-summary.md |
9 | Strategic overview + 30-day action plan |
progress.json |
β | Pipeline state (web UI reads this) |
- Edit
CLAUDE.mdto change the orchestration flow, add/remove phases, or modify the routing table - Edit agent files in
.claude/agents/to customize individual specialist behavior - Edit templates in
templates/to change the output format for each deliverable - Edit slash commands in
.claude/commands/to add custom workflows
- Orchestrator (
CLAUDE.md) reads inputs and delegates to specialized agents - Each agent reads its dependencies, reads the template, writes its output
- Quality reviewer checks every output for completeness, consistency, and accuracy
- User approves or requests changes before the next phase starts
- Progress.json tracks state β the web UI reads this for real-time updates
- Web UI communicates with Claude via the filesystem β no API server needed
- Claude Code CLI installed
- Node.js 18+ (for the web dashboard, optional)