BeClaude

brainstorm-build

New
1GitHub TrendingGeneralby TanmayBhuran02

A Claude skill that turns any project idea into 3 structured prompt files — MVP, core features, and final polish — ready for Claude Code.

First seen 5/26/2026

Overview


name: brainstorm-build description: Use this skill whenever the user wants to brainstorm or plan a project, app, feature, or tool — even casually ("I want to build X", "help me think through Y", "how should I approach Z"). Generates a structured 3-stage prompt file plan: architecture+MVP, core feature polish, and final touch-up. Trigger on any project ideation or "where do I start" type request. ---

Brainstorm-to-Build Skill

Converts a project idea into 3 sequential prompt files that progressively build the project.

Steps

  1. Understand the idea — Extract: what it is, tech stack (or infer one), key features, target user.
  2. Plan the 3 stages — Identify MVP scope, highest-priority/standout features, and remaining polish items.
  3. Generate 3 prompt files — Write each to /mnt/user-data/outputs/<project-slug>/.

File Specs

prompt-1-mvp.md

Goal: Working skeleton. Claude reading this should be able to build a runnable project.

Include:

  • Project summary (1–2 lines)
  • High-level architecture (layers, services, data flow)
  • Tech stack with versions if relevant
  • File/folder structure
  • Core data models / DB schema
  • MVP feature list (minimum to "work")
  • Prompt instruction: "Build this project end-to-end as described. Prioritize correctness over polish. Deliver a working MVP."

prompt-2-core-features.md

Goal: Elevate the most impactful or visually standout features.

Include:

  • Reference to prompt-1 output ("Assume the MVP from Stage 1 is built")
  • List of high-priority features to optimize (pick top 2–4)
  • For each: what "good" looks like, edge cases, UX/perf notes
  • Any standout UI interaction or complex business logic to nail
  • Prompt instruction: "Optimize only the listed features. Don't refactor unrelated code."

prompt-3-final-polish.md

Goal: Ship-ready quality on everything remaining.

Include:

  • Reference to prompt-1 and prompt-2 outputs
  • Remaining feature checklist (everything not in Stage 2)
  • Non-functional concerns: error handling, loading states, empty states, responsiveness, accessibility, security basics, env config
  • Code quality: remove dead code, consistent naming, add comments where needed
  • Prompt instruction: "Do a final pass. Fix all rough edges. The output should be production-ready."

Output

  • Save all 3 files to /mnt/user-data/outputs/<project-slug>/
  • Call present_files with all 3 paths
  • Give a 2–3 line summary of what each stage focuses on

Tone

Be decisive. Pick a reasonable tech stack if the user hasn't. State assumptions inline rather than asking.

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/brainstorm-build.md https://raw.githubusercontent.com/TanmayBhuran02/brainstorm-build/main/SKILL.md
3
Invoke in Claude Code
/brainstorm-build
View source on GitHub

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is brainstorm-build?

A Claude skill that turns any project idea into 3 structured prompt files — MVP, core features, and final polish — ready for Claude Code.

How to install brainstorm-build?

To install brainstorm-build: create the skills directory (mkdir -p .claude/skills), then run: mkdir -p .claude/skills && curl -o .claude/skills/brainstorm-build.md https://raw.githubusercontent.com/TanmayBhuran02/brainstorm-build/main/SKILL.md. Finally, /brainstorm-build in Claude Code.

What is brainstorm-build best for?

brainstorm-build is a skill categorized under General. Created by TanmayBhuran02.