← ClaudeAtlas

vibeflowlisted

Overview of the vibeflow workflow suite — a vibe-coder's system for building, shipping, and iterating on software with Claude. The individual commands are registered as separate skills (`/bootstrap`, `/start`, `/build`, `/wrap`, `/roadmap`); this skill is the shared reference for how they connect and the `.claude/` files they share. Do not trigger on a slash command — defer to the per-command skills.
StephenTownsend1234/vibeflow · ★ 0 · AI & Automation · score 70
Install: claude install-skill StephenTownsend1234/vibeflow
# vibeflow A workflow suite for a founder building software with Claude. Five commands sharing a common `.claude/` state system. ## The commands | Command | Purpose | When | |---|---|---| | `/bootstrap` | One-time project setup — scaffolds `.claude/` | First time in a repo | | `/start` | Orient, then resume / plan a sprint / **Freebuild** (iterate directly) | Every session | | `/build` | Execute the work (or pick up warm from `/start`) | After planning, or to iterate | | `/wrap` | Save the session to the files so the next one starts smarter | End of session | | `/roadmap` | The path to your goal — capture ideas, order Now/Next/Later | Anytime priorities shift | Plus two helpers: **compare-plans** (standalone second-opinion on a plan) and the **roadmap investigator** (opt-in background routine that pre-researches roadmap items — see `roadmap/references/investigator.md`). ## How they connect ``` /bootstrap (once) ─▶ /roadmap (order the path) ─▶ /start ─┬─ resume ──▶ /build ──▶ /wrap ├─ plan ─────▶ /build ──▶ /wrap └─ Freebuild ─(iterate here)─▶ /wrap (background) roadmap investigator ──▶ .claude/research/<slug>.md ──▶ used by /start ``` ## Shared `.claude/` files ``` .claude/ PROJECT.md # what this is, who it's for, phase, north star ARCHITECTURE.md # Map on top (stack / services / where things live / patterns), detail below ROADMAP.md