diff --git a/README.md b/README.md index e4de615..788bf19 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you - [claude-desktop-extension](./plugins/claude-desktop-extension) - [lyra](./plugins/lyra) - [model-context-protocol-mcp-expert](./plugins/model-context-protocol-mcp-expert) +- [plan-build-run](./plugins/plan-build-run) - [problem-solver-specialist](./plugins/problem-solver-specialist) - [studio-coach](./plugins/studio-coach) - [ultrathink](./plugins/ultrathink) diff --git a/plugins/plan-build-run/.claude-plugin/plugin.json b/plugins/plan-build-run/.claude-plugin/plugin.json new file mode 100644 index 0000000..9945a08 --- /dev/null +++ b/plugins/plan-build-run/.claude-plugin/plugin.json @@ -0,0 +1,18 @@ +{ + "name": "pbr", + "description": "Plan-Build-Run — Context-engineered development workflow for Claude Code. Solves context rot through subagent delegation, structured planning, atomic execution, and goal-backward verification.", + "version": "2.0.0", + "author": { + "name": "SienkLogic", + "email": "dave@sienklogic.com" + }, + "homepage": "https://github.com/SienkLogic/plan-build-run", + "repository": "https://github.com/SienkLogic/plan-build-run", + "license": "MIT", + "keywords": [ + "claude-code", + "context-engineering", + "development-workflow", + "subagent-delegation" + ] +} \ No newline at end of file diff --git a/plugins/plan-build-run/README.md b/plugins/plan-build-run/README.md new file mode 100644 index 0000000..c07be8b --- /dev/null +++ b/plugins/plan-build-run/README.md @@ -0,0 +1,25 @@ +# Plan-Build-Run + +Context-engineered development workflow for Claude Code. Solves context rot through disciplined subagent delegation, structured planning, atomic execution, and goal-backward verification. + +## Features + +- Keeps orchestrator at ~15% context by delegating to fresh 200k-token subagent windows +- 21 `/pbr:*` slash commands covering the full development lifecycle +- 10 specialized agents (researcher, planner, executor, verifier, etc.) +- 15 lifecycle hooks enforcing commit format, context budget, plan compliance +- Wave-based parallel execution with atomic commits +- Goal-backward verification (checks codebase against must-haves, not just task completion) +- Kill-safe: all state lives on disk in `.planning/` + +## Install + +```bash +claude plugin marketplace add SienkLogic/plan-build-run +claude plugin install pbr@plan-build-run +``` + +## Links + +- **Repository**: https://github.com/SienkLogic/plan-build-run +- **License**: MIT