Help us improve
Share bugs, ideas, or general feedback.
From Claude Setup
Lightweight single-context build workflow: explore, plan, approve, implement, verify, and optionally commit. Use for everyday features.
npx claudepluginhub nickmaglowsch/claude-setup --plugin claude-setupHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-setup:build-lite <feature description or path to a PRD/spec file><feature description or path to a PRD/spec file>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Single-context build: **explore → plan → approve → implement**, all in this Opus session with **no sub-agent fan-out, no intermediate task files**. Verifies build + tests, optionally commits. Review is a separate pass — offered at the end via `/code-review`.
Executes plan-build-[review] workflow for small/medium code changes with persistent artifacts, AFK mode, plan confirmation, git commit/push options.
Executes an implementation plan — writes code and tests, runs quality review, and ships a pull request.
Orchestrates a full build pipeline from PRD: plans tasks, implements in parallel, and reviews results. Routes simple work to a lighter workflow.
Share bugs, ideas, or general feedback.
Single-context build: explore → plan → approve → implement, all in this Opus session with no sub-agent fan-out, no intermediate task files. Verifies build + tests, optionally commits. Review is a separate pass — offered at the end via /code-review.
Use this by default. Reach for the heavier /claude-setup:build only when the work spans many independent files that can be implemented in parallel, or genuinely exceeds one context (large migrations, broad sweeps).
$ARGUMENTS — a feature description, or a path to a PRD/spec file.
$ARGUMENTS. If it points to a file, read the file.AskUserQuestion before planning. Don't over-ask — fill obvious gaps with sensible defaults and state them in the plan.Present a concise plan as text:
Then ask via AskUserQuestion: "Proceed with this plan?"
Never edit code before this approval.
Implement the plan directly in this session, in dependency order. Match existing conventions (naming, structure, comment density). Keep context warm — no cold sub-agent reads, no task files. If something forces a material deviation from the approved plan, note it to the user and keep going; don't silently expand scope.
package.json, Makefile, Cargo.toml, etc.). Skip if none.Ask: "Commit these changes?"
main/master, create a feature branch feat/<3-5-word-slug> first.git add -A && git commit -m "feat: <summary>".gh is available: git push -u origin <branch> then gh pr create. Otherwise print the ready-to-run command.End with AskUserQuestion: "Run an independent /code-review pass on these changes?"
code-review skill, scoped to the diff./code-review when you want an independent pass." and stop./claude-setup:build.