Skip to content

agent-lab-skool/launch-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

7 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

LaunchKit v2

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.

What's New in v2

  • 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

Quick Start

Option A: CLI Only (Recommended to start)

cd launch-kit
claude

Claude 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

Option B: CLI + Web Dashboard

# Terminal 1: Start the dashboard
cd launch-kit/web
npm install
npm start

# Terminal 2: Run Claude
cd launch-kit
claude

The web UI opens at http://localhost:3000. You can:

  1. Fill out the client intake form in the browser
  2. Watch phases complete in real-time
  3. Review and approve outputs
  4. Request changes (creates feedback files Claude picks up)
  5. Export deliverables as markdown or JSON

Option C: Provide a Brief First

Drop any client info into the inputs/ folder β€” a brief, brand guidelines PDF, competitor URLs, notes, whatever you have. Then run claude.

Architecture

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

Phase Pipeline

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.

What You Get

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)

Customizing

  • Edit CLAUDE.md to 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

How It Works

  1. Orchestrator (CLAUDE.md) reads inputs and delegates to specialized agents
  2. Each agent reads its dependencies, reads the template, writes its output
  3. Quality reviewer checks every output for completeness, consistency, and accuracy
  4. User approves or requests changes before the next phase starts
  5. Progress.json tracks state β€” the web UI reads this for real-time updates
  6. Web UI communicates with Claude via the filesystem β€” no API server needed

Requirements

  • Claude Code CLI installed
  • Node.js 18+ (for the web dashboard, optional)

About

πŸš€ AI-powered marketing strategy in one command. 11 agents, 10 phases, zero guesswork.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages