From 2cd8c7d747f28ec113885cbe7e67e0aefb0f0954 Mon Sep 17 00:00:00 2001 From: Rezolv Date: Wed, 18 Feb 2026 08:51:00 -0500 Subject: [PATCH 1/3] Add Plan-Build-Run plugin metadata --- .../plan-build-run/.claude-plugin/plugin.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/plan-build-run/.claude-plugin/plugin.json 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 From 504267d2c89a9cae9b18f5c72e7ef470b75d2001 Mon Sep 17 00:00:00 2001 From: Rezolv Date: Wed, 18 Feb 2026 08:51:44 -0500 Subject: [PATCH 2/3] Add Plan-Build-Run plugin README --- plugins/plan-build-run/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/plan-build-run/README.md 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 From 5bc53dd8bce153058ecced3354b077969edb8686 Mon Sep 17 00:00:00 2001 From: Rezolv Date: Wed, 18 Feb 2026 08:52:31 -0500 Subject: [PATCH 3/3] Add Plan-Build-Run to Workflow Orchestration --- README.md | 1 + 1 file changed, 1 insertion(+) 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)