← Reddit

The 11-step workflow I use for every Claude Code project now: from idea validation to shipping with accumulated knowledge

Reddit · Ok_Today5649 · April 9, 2026
I rebuilt my development workflow around three open-source skill packs: gstack, Superpowers and Compound Engineering. After testing the combination for three weeks, I settled on an 11-step sequence that I now use for every project. The core insight: most of

Detailed Analysis

A developer's detailed account of an 11-step workflow built around three open-source Claude Code plugin packages — gstack, Superpowers, and Compound Engineering — illustrates how practitioners are layering structured methodology on top of Anthropic's agentic coding tool. The workflow, refined over three weeks of testing, divides development into three phases: validating the right thing to build (steps 1–4), building it correctly (steps 5–9), and accumulating knowledge for future iterations (steps 10–11). The author's central thesis is that the highest-leverage work happens outside the coding phase itself — specifically in the clarification and review steps that bracket actual implementation. The workflow begins with a "95% confidence prompt" that inverts the typical AI interaction pattern, directing Claude to interview the developer and challenge assumptions before any tooling is engaged, followed by sequential CEO and engineering review gates that must both pass before a single line of code is written.

The technical substance of the workflow centers on the Compound Engineering plugin's plan and review mechanisms. The `/ce:plan` command spawns parallel research agents that scan git history, codebase patterns, and prior project documentation to generate context-aware plans rather than generic recommendations — a meaningful distinction from standard AI code generation that begins each session without institutional memory. The `/ce:review` step operationalizes what the author describes as "Anthropic's core finding": that builders should not evaluate their own work. It deploys a minimum of six independent review agents covering correctness, security, performance, testing, maintainability, and adversarial analysis, with additional reviewers activating based on diff complexity. This ensemble approach to code review represents a formalization of peer review principles within a single-developer context, addressing a structural limitation of solo or small-team development.

The workflow's most distinctive feature is step 10, `/ce:compound`, which the author identifies as the step most practitioners skip. Running five subagents in parallel after every feature or bug fix, it extracts problem types, captures solution patterns, updates existing documentation, and classifies outputs for structured retrieval into a `docs/solutions/` directory. This creates a compounding feedback loop: every completed task enriches the planning phase of the next task. The mechanism directly addresses the well-documented problem of context loss in AI-assisted development, where each new session begins without knowledge of prior decisions, failures, or workarounds. By persisting this knowledge structurally, the workflow attempts to replicate institutional memory that normally accumulates only in human developers over time.

The broader significance of this workflow lies in what it reveals about the maturation of Claude Code as a platform. The emergence of third-party plugin ecosystems — gstack, Superpowers, and Compound Engineering all being open-source community projects — mirrors the trajectory of other developer tools that gained adoption through extensibility. Research context confirms that multiple independent developers and teams have converged on similar phased frameworks emphasizing codebase research, spec validation, and verification gates, suggesting that the 11-step structure described here is less idiosyncratic than it might appear and more reflective of emerging community consensus. Frameworks like the PSB (Plan-Setup-Build) system and Alex Kurkin's four-phase approach share the same core logic: front-load planning rigor, execute with context, and enforce automated verification before shipping.

This workflow sits at the intersection of two significant trends in AI-assisted software development: the shift from AI as a code autocomplete tool toward AI as an orchestration layer for multi-agent development pipelines, and the growing recognition that prompt engineering alone is insufficient without structural scaffolding around it. Anthropic's Claude Code, designed from the outset for agentic use in terminal environments, provides the substrate that makes this kind of plugin-based workflow composition possible. The community response — building open-source skill packs that encode development best practices as slash commands — represents a form of collective tacit knowledge formalization, converting experienced developers' intuitions about validation, review, and learning into reusable, shareable infrastructure accessible to practitioners at any experience level.

Read original article →