By jameshemson
Structured build workflow: plan, review, implement, verify, architect review. 6 skills that work standalone or as an orchestrated pipeline.
Structured build workflow - plan, review, implement, verify, architect review. Drives the entire cycle autonomously.
Run test cases against build skills, grade outputs against assertions. Use when you want to verify skills work correctly after changes.
Create a detailed implementation plan. Reads the codebase, traces code paths, maps files, identifies parallel workstreams. Use before building any non-trivial feature.
Review an implementation plan against its own evidence. Scans for placeholders, verifies accuracy, finds gaps, assigns severity levels to findings.
Evidence-before-claims gate. Runs tests, build, type checks. Reports actual output. No completion claims without fresh evidence.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A structured build workflow for Claude Code (and four portable skills for OpenCode and Codex). Plan before you build, review before you ship, verify before you claim.
| Skill | What it does |
|---|---|
/build | Orchestrates the full workflow: plan, review, implement, verify, architect review |
/build:impl-plan | Creates a detailed implementation plan by reading the codebase first |
/build:review-plan | Reviews a plan against its own evidence with severity-tagged findings |
/build:architect-review | Architecture review of completed work across 10 lenses with structured verdict |
/build:verify | Runs tests, build, type checks and reports actual evidence |
/build:eval | Runs test cases against build skills, grades outputs against assertions |
Every skill works standalone. Run /build:impl-plan add user authentication without the full pipeline. Or run /build add user authentication to get the complete workflow.
Claude Code
claude plugin add jameshemson/build
OpenCode — copy the .opencode/ directory (preserving the leading dot) into your project so the final layout is <your-project>/.opencode/skills/<skill-name>/SKILL.md and <your-project>/.opencode/commands/<command-name>.md. OpenCode discovers skills from those paths. Once copied, the four portable skills are invocable as flat slash commands: /impl-plan, /review-plan, /verify, /architect-review. Each command thin-wraps the matching bundled skill.
Codex (two paths, either works):
Via Plugins UI / CLI:
codex plugin marketplace add jameshemson/build
codex plugin install build/build
Or via repo-local discovery: copy the .agents/ directory into your project so the final layout is <your-project>/.agents/skills/<skill-name>/SKILL.md. Codex picks it up automatically.
Four skills are available in OpenCode and Codex: impl-plan, review-plan, verify, and architect-review. The build orchestrator and eval runner are Claude Code only (they depend on sub-agent spawning and Task tools not available elsewhere).
| Skill | Claude Code | OpenCode | Codex |
|---|---|---|---|
build (orchestrator) | ✓ | — | — |
impl-plan | ✓ | ✓ | ✓ |
review-plan | ✓ | ✓ | ✓ |
verify | ✓ | ✓ | ✓ |
architect-review | ✓ | ✓ | ✓ |
eval | ✓ | — | — |
See HARNESSES.md for the full capability matrix and install story.
/build drives a 5-phase cycle:
REQ-*/D-* inventories, define Wave 0 validation, and emit an execution_manifest with wave, depends_on, files_modified, must_haves, verify, and donemust_haves evidence are reported explicitly. No claims without fresh output.The orchestrator manages state, auto-continues between phases, and deploys model-appropriate agents. It resolves merge conflicts through a structured protocol. Give it a feature description; it builds it.
/build is file-backed. Each workflow writes durable artifacts under .build/plans/ so later phases and fresh agents do not depend on chat history alone:
{slug}-state.md - current phase, base_ref, task IDs, completed tasks, blockers, history{slug}-context.md - repo conventions, user constraints, discovered patterns, assumptions, out-of-scope notes{slug}-requirements.md - canonical requirements, decisions, assumptions, acceptance criteria, must_haves{slug}-plan.md - full implementation plan plus execution manifest{slug}-review.md - plan review findings and verdict{slug}-implementation-summary.md - completed waves, files changed, deviations, blockers{slug}-verify.md - command evidence, requirement coverage, verification verdict{slug}-architect-review.md - final architecture review findings and verdictSkill prompts are intentionally kept compact. Detailed planning rules live in reference files, and npm test enforces hard line ceilings for the main skill prompts.
npx claudepluginhub jameshemson/build --plugin buildFocused agentic engineering workflow: design-doc, spec, plan, implement, tdd, refactor, review, address-pr-feedback, browser-verify, explain-visually, compress, branch, and commit.
End-to-end development workflow: design → draft-plan → orchestrate → review → pr-create → pr-review → pr-merge
Unified design planning - combines requirements discovery, gap analysis, implementation planning, and design review into a single workflow
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
Independent plan/spec reviewer for AI coding agents. Verifies claims against the workspace and returns structured verdicts with findings.
Plan-Build-Run — Structured development workflow for Claude Code. Solves context rot through disciplined subagent delegation, structured planning, atomic execution, and goal-backward verification.