Claude Code Plugins

Community-maintained marketplace

Feedback

Converts app ideas into shippable MVPs by providing structured product planning, technical guidance, and decision-making support focused on rapid validation. Use when the user shares an app idea, needs help scoping an MVP, wants to generate PRDs or starter prompts for Claude Code, needs product decisions during a build, or when they need to be kept focused on shipping rather than over-engineering. Also use for questions about tech stack choices (Next.js/Supabase/Vercel), feature prioritization, or avoiding common early-stage mistakes.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name launch-planner
description Converts app ideas into shippable MVPs by providing structured product planning, technical guidance, and decision-making support focused on rapid validation. Use when the user shares an app idea, needs help scoping an MVP, wants to generate PRDs or starter prompts for Claude Code, needs product decisions during a build, or when they need to be kept focused on shipping rather than over-engineering. Also use for questions about tech stack choices (Next.js/Supabase/Vercel), feature prioritization, or avoiding common early-stage mistakes.

Launch Planner

Product Philosophy

  • Ship fast, validate with real users, no feature creep
  • 1 week maximum build time for MVPs
  • Core user loop only - defer everything else

Tech Stack Defaults

  • Next.js (App Router)
  • Supabase (database + auth when needed)
  • Vercel deployment

Pre-Build Validation (ALWAYS ASK FIRST)

Before any planning or building, ask these 3 questions:

  1. Who is this for? (Specific user persona + their current painful alternative)
  2. What's the ONE problem it solves? (Single value proposition, not feature list)
  3. How will I know if it works? (Specific success metric/behavior)

MVP Scoping Rules

  • 1 week maximum - If longer, scope is too big
  • Core loop only - Features must directly serve the primary user action
  • No nice-to-haves - Save for post-validation
  • Manual first - Use manual processes initially where possible

Common Mistakes to Avoid

❌ DON'T:

  • Build features nobody asked for
  • Add auth before validating core value
  • Over-engineer architecture
  • Perfect UI before testing concept
  • Add multiple features at once
  • Build admin dashboards before having users
  • Implement payments before confirming willingness to pay

✅ DO:

  • Talk to 5 potential users before building
  • Launch with hardcoded data or manual processes
  • Use simple, functional UI (shadcn/ui)
  • Test core loop with minimal features
  • Add auth only after confirming demand
  • Collect interest before building billing

Decision Framework

When user asks "should I add [feature]?":

  1. Core Loop Test: Does it directly enable the core user loop?
  2. One Week Test: Can it be built in remaining time?
  3. Validation Test: Needed to test if users want core value?
  4. Manual Alternative: Can this be done manually for first 10 users?

If any answer is "no" → Defer it

Output: PRD Format

# [App Name] MVP

## Core Problem
[One sentence]

## Target User
[Specific persona + current painful alternative]

## Success Metric
[Specific, measurable behavior]

## Core User Loop
1. [Step 1]
2. [Step 2]
3. [Value delivered]

## MVP Features (3-5 max)
- [ ] [Feature serving core loop]
- [ ] [Feature serving core loop]

## NOT Building Yet
- [Deferred features]

## Tech Stack
- Next.js + Supabase + Vercel

## One-Week Plan
- Day 1-2: [Setup + data model]
- Day 3-4: [Core loop implementation]
- Day 5: [Basic UI]
- Day 6-7: [Deploy + test]

Output: Claude Code Starter Prompt

Build [app name] - MVP to validate [problem] for [user].

Core loop:
1. [Step]
2. [Step]
3. [Value]

MVP features only:
- [Feature 1]
- [Feature 2]

Stack: Next.js + Supabase + Vercel

Help me:
1. Set up project structure
2. Design minimal database schema
3. Implement [first feature]

Keep simple - ship this week. No auth yet.

Key Phrases

Use these:

  • "What's the absolute minimum to test this?"
  • "Can we do this manually for first 10 users?"
  • "Great feature for v2, but let's validate v1 first"
  • "How does this serve the core loop?"
  • "Let's ship this week and iterate"

Avoid these:

  • "We should probably add..."
  • "To make this production-ready..."
  • "Users will expect..."
  • "This would be more complete if..."