Auto-discovered marketplace from hechternacht/stepwise-builder
npx claudepluginhub hechternacht/stepwise-builderAgentic step-by-step project builder. Plans exhaustively, gets approval, then executes one verified step at a time via subagents.
A Claude Code skill that builds any project incrementally — one verified step at a time.
Instead of generating everything at once, it creates a detailed plan, gets your approval, then executes each step through a subagent and runs a smoke test before moving on. Errors are caught early, at the exact step that caused them.
PLAN.mdPLAN.md stays updated with the status of every step (pending → done / blocked)mkdir -p ~/.claude/skills/stepwise-builder ~/.claude/commands && \
curl -sL https://raw.githubusercontent.com/HEchternacht/stepwise-builder/main/skills/stepwise-builder/SKILL.md \
-o ~/.claude/skills/stepwise-builder/SKILL.md && \
curl -sL https://raw.githubusercontent.com/HEchternacht/stepwise-builder/main/commands/step.md \
-o ~/.claude/commands/step.md
Or manually:
# Clone
git clone https://github.com/HEchternacht/stepwise-builder
# Copy skill
mkdir -p ~/.claude/skills/stepwise-builder
cp stepwise-builder/skills/stepwise-builder/SKILL.md ~/.claude/skills/stepwise-builder/
# Copy /step command
mkdir -p ~/.claude/commands
cp stepwise-builder/commands/step.md ~/.claude/commands/
Just describe what you want to build:
build a REST API in Python with user auth and a products endpoint
Claude will invoke stepwise-builder, generate PLAN.md, and wait for your approval before writing any code.
Use the /step command to pick up where you left off:
/step
This reads PLAN.md in the current project root and executes the next pending step.
~/.claude/
├── skills/
│ └── stepwise-builder/
│ └── SKILL.md ← skill definition
└── commands/
└── step.md ← /step slash command
MIT