@sienklogic/plan-build-run 2.11.0 → 2.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1102 -220
- package/CLAUDE.md +54 -34
- package/LICENSE +2 -1
- package/README.md +261 -182
- package/agents/pbr-audit.md +266 -0
- package/agents/pbr-codebase-mapper.md +236 -0
- package/agents/pbr-debugger.md +312 -0
- package/agents/pbr-dev-sync.md +220 -0
- package/agents/pbr-executor.md +591 -0
- package/agents/pbr-general.md +191 -0
- package/agents/pbr-integration-checker.md +237 -0
- package/agents/pbr-intel-updater.md +296 -0
- package/agents/pbr-nyquist-auditor.md +252 -0
- package/agents/pbr-plan-checker.md +312 -0
- package/agents/pbr-planner.md +539 -0
- package/agents/pbr-researcher.md +314 -0
- package/agents/pbr-roadmapper.md +346 -0
- package/agents/pbr-synthesizer.md +271 -0
- package/agents/pbr-ui-checker.md +202 -0
- package/agents/pbr-ui-researcher.md +223 -0
- package/agents/pbr-verifier.md +495 -0
- package/bin/install.js +2752 -0
- package/commands/pbr/add-phase.md +75 -0
- package/commands/pbr/add-todo.md +8 -0
- package/commands/pbr/audit-milestone.md +8 -0
- package/commands/pbr/audit.md +5 -0
- package/commands/pbr/autonomous.md +5 -0
- package/commands/pbr/begin.md +5 -0
- package/commands/pbr/build.md +5 -0
- package/commands/pbr/check-todos.md +8 -0
- package/commands/pbr/complete-milestone.md +8 -0
- package/commands/pbr/config.md +5 -0
- package/commands/pbr/continue.md +5 -0
- package/commands/pbr/dashboard.md +5 -0
- package/commands/pbr/debug.md +5 -0
- package/commands/pbr/discuss-phase.md +6 -0
- package/commands/pbr/discuss.md +5 -0
- package/commands/pbr/do.md +5 -0
- package/commands/pbr/execute-phase.md +6 -0
- package/commands/pbr/explore.md +5 -0
- package/commands/pbr/health.md +5 -0
- package/commands/pbr/help.md +5 -0
- package/commands/pbr/import.md +5 -0
- package/commands/pbr/insert-phase.md +65 -0
- package/commands/pbr/intel.md +5 -0
- package/commands/pbr/join-discord.md +11 -0
- package/commands/pbr/list-phase-assumptions.md +69 -0
- package/commands/pbr/map-codebase.md +6 -0
- package/commands/pbr/milestone.md +5 -0
- package/commands/pbr/new-milestone.md +8 -0
- package/commands/pbr/new-project.md +6 -0
- package/commands/pbr/note.md +5 -0
- package/commands/pbr/pause-work.md +5 -0
- package/commands/pbr/pause.md +5 -0
- package/commands/pbr/plan-milestone-gaps.md +7 -0
- package/commands/pbr/plan-phase.md +6 -0
- package/commands/pbr/plan.md +5 -0
- package/commands/pbr/profile-user.md +5 -0
- package/commands/pbr/profile.md +5 -0
- package/commands/pbr/progress.md +6 -0
- package/commands/pbr/quick.md +5 -0
- package/commands/pbr/reapply-patches.md +47 -0
- package/commands/pbr/release.md +6 -0
- package/commands/pbr/remove-phase.md +66 -0
- package/commands/pbr/research-phase.md +59 -0
- package/commands/pbr/resume-work.md +5 -0
- package/commands/pbr/resume.md +5 -0
- package/commands/pbr/review.md +5 -0
- package/commands/pbr/scan.md +5 -0
- package/commands/pbr/session-report.md +5 -0
- package/commands/pbr/set-profile.md +6 -0
- package/commands/pbr/settings.md +5 -0
- package/commands/pbr/setup.md +5 -0
- package/commands/pbr/ship.md +5 -0
- package/commands/pbr/status.md +5 -0
- package/commands/pbr/statusline.md +5 -0
- package/commands/pbr/test.md +5 -0
- package/commands/pbr/todo.md +5 -0
- package/commands/pbr/ui-phase.md +5 -0
- package/commands/pbr/ui-review.md +5 -0
- package/commands/pbr/undo.md +5 -0
- package/commands/pbr/update.md +37 -0
- package/commands/pbr/validate-phase.md +5 -0
- package/commands/pbr/verify-work.md +6 -0
- package/dashboard/bin/cli.cjs +96 -0
- package/dashboard/bin/stop.cjs +129 -0
- package/dashboard/eslint.config.js +37 -0
- package/dashboard/index.html +20 -0
- package/dashboard/package.json +28 -23
- package/dashboard/server/index.js +136 -0
- package/dashboard/server/lib/frontmatter.js +92 -0
- package/dashboard/server/middleware/static.js +35 -0
- package/dashboard/server/package.json +16 -0
- package/dashboard/server/routes/agents.js +213 -0
- package/dashboard/server/routes/config.js +64 -0
- package/dashboard/server/routes/health.js +95 -0
- package/dashboard/server/routes/memory.js +107 -0
- package/dashboard/server/routes/planning.js +234 -0
- package/dashboard/server/routes/progress.js +77 -0
- package/dashboard/server/routes/projects.js +36 -0
- package/dashboard/server/routes/requirements.js +40 -0
- package/dashboard/server/routes/roadmap.js +69 -0
- package/dashboard/server/routes/status.js +25 -0
- package/dashboard/server/routes/telemetry.js +171 -0
- package/dashboard/server/services/file-watcher.js +105 -0
- package/dashboard/server/services/planning-reader.js +741 -0
- package/dashboard/server/test/cli.test.js +34 -0
- package/dashboard/server/test/frontmatter.test.js +104 -0
- package/dashboard/server/test/isolation.test.js +32 -0
- package/dashboard/server/test/planning-reader.test.js +151 -0
- package/dashboard/server/test/routes.test.js +91 -0
- package/dashboard/server/test/ws.test.js +81 -0
- package/dashboard/server/ws.js +96 -0
- package/dashboard/src/App.jsx +154 -0
- package/dashboard/src/components/charts/BudgetBars.jsx +42 -0
- package/dashboard/src/components/charts/ContextRadar.jsx +34 -0
- package/dashboard/src/components/charts/PhaseDonut.jsx +66 -0
- package/dashboard/src/components/charts/SuccessTrend.jsx +45 -0
- package/dashboard/src/components/charts/TokenChart.jsx +55 -0
- package/dashboard/src/components/charts/index.js +5 -0
- package/dashboard/src/components/config/CfgSection.jsx +93 -0
- package/dashboard/src/components/layout/Header.jsx +89 -0
- package/dashboard/src/components/layout/ProjectSwitcher.jsx +160 -0
- package/dashboard/src/components/layout/Sidebar.jsx +161 -0
- package/dashboard/src/components/ui/AutoModeBanner.jsx +138 -0
- package/dashboard/src/components/ui/BackButton.jsx +27 -0
- package/dashboard/src/components/ui/Badge.jsx +27 -0
- package/dashboard/src/components/ui/Card.jsx +23 -0
- package/dashboard/src/components/ui/ChartTooltip.jsx +48 -0
- package/dashboard/src/components/ui/CheckpointBox.jsx +110 -0
- package/dashboard/src/components/ui/CodeBlock.jsx +27 -0
- package/dashboard/src/components/ui/ConfidenceBadge.jsx +20 -0
- package/dashboard/src/components/ui/ConfirmModal.jsx +161 -0
- package/dashboard/src/components/ui/ConnectionBanner.jsx +60 -0
- package/dashboard/src/components/ui/ErrorBoundary.jsx +106 -0
- package/dashboard/src/components/ui/ErrorBox.jsx +107 -0
- package/dashboard/src/components/ui/KeyValue.jsx +33 -0
- package/dashboard/src/components/ui/LoadingSkeleton.jsx +84 -0
- package/dashboard/src/components/ui/MetricCard.jsx +58 -0
- package/dashboard/src/components/ui/NextUpBlock.jsx +92 -0
- package/dashboard/src/components/ui/NumberInput.jsx +44 -0
- package/dashboard/src/components/ui/PBRBanner.jsx +47 -0
- package/dashboard/src/components/ui/PipelineView.jsx +130 -0
- package/dashboard/src/components/ui/ProgressBar.jsx +28 -0
- package/dashboard/src/components/ui/ProgressDisplay.jsx +47 -0
- package/dashboard/src/components/ui/QualityGateBadge.jsx +15 -0
- package/dashboard/src/components/ui/SectionTitle.jsx +35 -0
- package/dashboard/src/components/ui/SelectInput.jsx +45 -0
- package/dashboard/src/components/ui/StatusDot.jsx +51 -0
- package/dashboard/src/components/ui/StatusSymbol.jsx +49 -0
- package/dashboard/src/components/ui/TabBar.jsx +41 -0
- package/dashboard/src/components/ui/TextInput.jsx +42 -0
- package/dashboard/src/components/ui/Toast.jsx +117 -0
- package/dashboard/src/components/ui/Toggle.jsx +70 -0
- package/dashboard/src/components/ui/index.js +29 -0
- package/dashboard/src/hooks/useDocumentTitle.js +16 -0
- package/dashboard/src/hooks/useFetch.js +50 -0
- package/dashboard/src/hooks/useToast.jsx +43 -0
- package/dashboard/src/hooks/useWebSocket.js +103 -0
- package/dashboard/src/lib/api.js +112 -0
- package/dashboard/src/lib/configSchema.js +189 -0
- package/dashboard/src/lib/constants.js +18 -0
- package/dashboard/src/main.jsx +15 -0
- package/dashboard/src/pages/AgentsPage.jsx +191 -0
- package/dashboard/src/pages/ConfigPage.jsx +298 -0
- package/dashboard/src/pages/HooksPage.jsx +412 -0
- package/dashboard/src/pages/LiveFeed.jsx +274 -0
- package/dashboard/src/pages/MemoryPage.jsx +107 -0
- package/dashboard/src/pages/OnboardingPage.jsx +117 -0
- package/dashboard/src/pages/Overview.jsx +360 -0
- package/dashboard/src/pages/PhaseDetailView.jsx +216 -0
- package/dashboard/src/pages/PlanningPage.jsx +181 -0
- package/dashboard/src/pages/ProgressPage.jsx +249 -0
- package/dashboard/src/pages/RoadmapPage.jsx +251 -0
- package/dashboard/src/pages/Telemetry.jsx +113 -0
- package/dashboard/src/pages/planning/DecisionsTab.jsx +153 -0
- package/dashboard/src/pages/planning/FilesTab.jsx +420 -0
- package/dashboard/src/pages/planning/MilestoneDetail.jsx +319 -0
- package/dashboard/src/pages/planning/MilestonesTab.jsx +151 -0
- package/dashboard/src/pages/planning/NotesTab.jsx +251 -0
- package/dashboard/src/pages/planning/PhasesTab.jsx +218 -0
- package/dashboard/src/pages/planning/QuickTab.jsx +50 -0
- package/dashboard/src/pages/planning/ResearchTab.jsx +103 -0
- package/dashboard/src/pages/planning/TodosTab.jsx +297 -0
- package/dashboard/src/theme/ThemeProvider.jsx +38 -0
- package/dashboard/src/theme/tokens.js +17 -0
- package/dashboard/tests/components/ConfirmModal.test.jsx +179 -0
- package/dashboard/tests/components/ConnectionBanner.test.jsx +37 -0
- package/dashboard/tests/components/ErrorBoundary.test.jsx +59 -0
- package/dashboard/tests/components/LoadingSkeleton.test.jsx +46 -0
- package/dashboard/tests/components/ToastContainer.test.jsx +47 -0
- package/dashboard/tests/components/Toggle.test.jsx +61 -0
- package/dashboard/tests/hooks/useFetch.test.jsx +77 -0
- package/dashboard/tests/hooks/useToast.test.jsx +78 -0
- package/dashboard/tests/hooks/useWebSocket.test.jsx +128 -0
- package/dashboard/tests/pages/ConfigPage.test.jsx +199 -0
- package/dashboard/tests/pages/PlanningPage.test.jsx +119 -0
- package/dashboard/tests/pages/planning/FilesTab.test.jsx +198 -0
- package/dashboard/tests/pages/planning/NotesTab.test.jsx +178 -0
- package/dashboard/tests/pages/planning/TodosTab.test.jsx +188 -0
- package/dashboard/tests/performance.test.jsx +46 -0
- package/dashboard/tests/routes/config.test.js +98 -0
- package/dashboard/tests/routes/health.test.js +40 -0
- package/dashboard/tests/routes/planning.test.js +112 -0
- package/dashboard/tests/routes/roadmap.test.js +91 -0
- package/dashboard/tests/routes/status.test.js +131 -0
- package/dashboard/tests/server/planning-reader.test.js +153 -0
- package/dashboard/tests/setup.js +7 -0
- package/dashboard/vite.config.js +41 -0
- package/hooks/dist/auto-continue.js +277 -0
- package/hooks/dist/block-skill-self-read.js +80 -0
- package/hooks/dist/check-agent-state-write.js +63 -0
- package/hooks/dist/check-config-change.js +188 -0
- package/hooks/dist/check-dangerous-commands.js +185 -0
- package/hooks/dist/check-doc-sprawl.js +102 -0
- package/hooks/dist/check-phase-boundary.js +191 -0
- package/hooks/dist/check-plan-format.js +227 -0
- package/hooks/dist/check-roadmap-sync.js +503 -0
- package/hooks/dist/check-skill-workflow.js +354 -0
- package/hooks/dist/check-state-sync.js +637 -0
- package/hooks/dist/check-subagent-output.js +401 -0
- package/hooks/dist/check-summary-gate.js +199 -0
- package/hooks/dist/context-bridge.js +406 -0
- package/hooks/dist/context-budget-check.js +442 -0
- package/hooks/dist/context-quality.js +271 -0
- package/hooks/dist/enforce-pbr-workflow.js +277 -0
- package/hooks/dist/event-handler.js +203 -0
- package/hooks/dist/event-logger.js +125 -0
- package/hooks/dist/hook-logger.js +112 -0
- package/hooks/dist/hook-server-client.js +342 -0
- package/hooks/dist/hook-server.js +352 -0
- package/hooks/dist/hooks-schema.json +85 -0
- package/hooks/dist/hooks.json +309 -0
- package/hooks/dist/instructions-loaded.js +107 -0
- package/hooks/dist/intel-queue.js +152 -0
- package/hooks/dist/intercept-plan-mode.js +50 -0
- package/hooks/dist/log-notification.js +125 -0
- package/hooks/dist/log-subagent.js +306 -0
- package/hooks/dist/log-tool-failure.js +140 -0
- package/hooks/dist/milestone-learnings.js +569 -0
- package/hooks/dist/pbr-tools.js +5 -0
- package/hooks/dist/post-bash-triage.js +152 -0
- package/hooks/dist/post-compact.js +135 -0
- package/hooks/dist/post-write-dispatch.js +277 -0
- package/hooks/dist/post-write-quality.js +208 -0
- package/hooks/dist/pre-bash-dispatch.js +158 -0
- package/hooks/dist/pre-write-dispatch.js +165 -0
- package/hooks/dist/progress-tracker.js +198 -0
- package/hooks/dist/prompt-routing.js +209 -0
- package/hooks/dist/run-hook.js +144 -0
- package/hooks/dist/session-cleanup.js +617 -0
- package/hooks/dist/session-tracker.js +124 -0
- package/hooks/dist/status-line.js +793 -0
- package/hooks/dist/suggest-compact.js +296 -0
- package/hooks/dist/sync-context-to-claude.js +100 -0
- package/hooks/dist/task-completed.js +206 -0
- package/hooks/dist/track-context-budget.js +405 -0
- package/hooks/dist/trust-tracker.js +193 -0
- package/hooks/dist/validate-commit.js +270 -0
- package/hooks/dist/validate-skill-args.js +222 -0
- package/hooks/dist/validate-task.js +272 -0
- package/hooks/dist/worktree-create.js +144 -0
- package/hooks/dist/worktree-remove.js +147 -0
- package/package.json +59 -40
- package/plan-build-run/bin/config-schema.json +1416 -0
- package/plan-build-run/bin/dashboard-launch.cjs +114 -0
- package/plan-build-run/bin/event-logger.cjs +92 -0
- package/plan-build-run/bin/lib/alternatives.cjs +198 -0
- package/plan-build-run/bin/lib/auto-cleanup.cjs +7 -0
- package/plan-build-run/bin/lib/build.cjs +717 -0
- package/plan-build-run/bin/lib/circuit-state.cjs +133 -0
- package/plan-build-run/bin/lib/commands.cjs +482 -0
- package/plan-build-run/bin/lib/config.cjs +770 -0
- package/plan-build-run/bin/lib/context.cjs +216 -0
- package/plan-build-run/bin/lib/contextual-help.cjs +207 -0
- package/plan-build-run/bin/lib/core.cjs +1563 -0
- package/plan-build-run/bin/lib/decisions.cjs +194 -0
- package/plan-build-run/bin/lib/frontmatter.cjs +299 -0
- package/plan-build-run/bin/lib/gates/advisories.cjs +129 -0
- package/plan-build-run/bin/lib/gates/build-dependency.cjs +115 -0
- package/plan-build-run/bin/lib/gates/build-executor.cjs +104 -0
- package/plan-build-run/bin/lib/gates/doc-existence.cjs +46 -0
- package/plan-build-run/bin/lib/gates/helpers.cjs +93 -0
- package/plan-build-run/bin/lib/gates/inline-execution.cjs +185 -0
- package/plan-build-run/bin/lib/gates/milestone-complete.cjs +136 -0
- package/plan-build-run/bin/lib/gates/milestone-summary.cjs +119 -0
- package/plan-build-run/bin/lib/gates/plan-executor.cjs +36 -0
- package/plan-build-run/bin/lib/gates/quick-executor.cjs +76 -0
- package/plan-build-run/bin/lib/gates/review-planner.cjs +61 -0
- package/plan-build-run/bin/lib/gates/review-verifier.cjs +69 -0
- package/plan-build-run/bin/lib/graph-cli.cjs +89 -0
- package/plan-build-run/bin/lib/graph.cjs +554 -0
- package/plan-build-run/bin/lib/health-phase06.cjs +120 -0
- package/plan-build-run/bin/lib/health.cjs +133 -0
- package/plan-build-run/bin/lib/history.cjs +147 -0
- package/plan-build-run/bin/lib/hypothesis-runner.cjs +127 -0
- package/plan-build-run/bin/lib/impact-analysis.cjs +319 -0
- package/plan-build-run/bin/lib/incidents.cjs +190 -0
- package/plan-build-run/bin/lib/init.cjs +367 -0
- package/plan-build-run/bin/lib/intel.cjs +653 -0
- package/plan-build-run/bin/lib/learnings.cjs +511 -0
- package/plan-build-run/bin/lib/local-llm/health.cjs +12 -0
- package/plan-build-run/bin/lib/local-llm/index.cjs +89 -0
- package/plan-build-run/bin/lib/local-llm/metrics.cjs +20 -0
- package/plan-build-run/bin/lib/local-llm/operations/classify-artifact.cjs +4 -0
- package/plan-build-run/bin/lib/local-llm/operations/classify-commit.cjs +4 -0
- package/plan-build-run/bin/lib/local-llm/operations/classify-error.cjs +4 -0
- package/plan-build-run/bin/lib/local-llm/operations/classify-file-intent.cjs +4 -0
- package/plan-build-run/bin/lib/local-llm/operations/triage-test-output.cjs +12 -0
- package/plan-build-run/bin/lib/local-llm/operations/validate-task.cjs +4 -0
- package/plan-build-run/bin/lib/migrate.cjs +298 -0
- package/plan-build-run/bin/lib/milestone.cjs +306 -0
- package/plan-build-run/bin/lib/negative-knowledge.cjs +194 -0
- package/plan-build-run/bin/lib/onboarding-generator.cjs +288 -0
- package/plan-build-run/bin/lib/parse-args.cjs +134 -0
- package/plan-build-run/bin/lib/patterns.cjs +272 -0
- package/plan-build-run/bin/lib/phase.cjs +1021 -0
- package/plan-build-run/bin/lib/post-hoc.cjs +160 -0
- package/plan-build-run/bin/lib/preview.cjs +174 -0
- package/plan-build-run/bin/lib/progress-visualization.cjs +296 -0
- package/plan-build-run/bin/lib/quick-init.cjs +131 -0
- package/plan-build-run/bin/lib/reference.cjs +234 -0
- package/plan-build-run/bin/lib/requirements.cjs +153 -0
- package/plan-build-run/bin/lib/reverse-spec.cjs +259 -0
- package/plan-build-run/bin/lib/roadmap.cjs +1097 -0
- package/plan-build-run/bin/lib/security-scan.cjs +200 -0
- package/plan-build-run/bin/lib/skill-section.cjs +98 -0
- package/plan-build-run/bin/lib/spec-diff.cjs +209 -0
- package/plan-build-run/bin/lib/spec-engine.cjs +189 -0
- package/plan-build-run/bin/lib/spot-check.cjs +510 -0
- package/plan-build-run/bin/lib/state.cjs +1050 -0
- package/plan-build-run/bin/lib/status-render.cjs +527 -0
- package/plan-build-run/bin/lib/step-verify.cjs +149 -0
- package/plan-build-run/bin/lib/suggest-next.cjs +316 -0
- package/plan-build-run/bin/lib/team-composer.cjs +85 -0
- package/plan-build-run/bin/lib/team-coordinator.cjs +151 -0
- package/plan-build-run/bin/lib/template.cjs +222 -0
- package/plan-build-run/bin/lib/templates.cjs +362 -0
- package/plan-build-run/bin/lib/test-selection.cjs +163 -0
- package/plan-build-run/bin/lib/todo.cjs +300 -0
- package/plan-build-run/bin/lib/validation.cjs +187 -0
- package/plan-build-run/bin/lib/verify.cjs +1451 -0
- package/plan-build-run/bin/pbr-tools.cjs +1877 -0
- package/plan-build-run/references/CLAUDE.md +7 -0
- package/plan-build-run/references/agent-contracts.md +326 -0
- package/plan-build-run/references/agent-teams.md +54 -0
- package/plan-build-run/references/behavioral-contexts.md +53 -0
- package/plan-build-run/references/checkpoints.md +776 -0
- package/plan-build-run/references/config-reference.md +613 -0
- package/plan-build-run/references/continuation-format.md +249 -0
- package/plan-build-run/references/debugging/CLAUDE.md +7 -0
- package/plan-build-run/references/decimal-phase-calculation.md +65 -0
- package/plan-build-run/references/git-integration.md +309 -0
- package/plan-build-run/references/git-planning-commit.md +38 -0
- package/plan-build-run/references/model-profile-resolution.md +34 -0
- package/plan-build-run/references/model-profiles.md +182 -0
- package/plan-build-run/references/model-selection.md +53 -0
- package/plan-build-run/references/phase-argument-parsing.md +61 -0
- package/plan-build-run/references/plan-authoring.md +246 -0
- package/plan-build-run/references/plan-format.md +351 -0
- package/plan-build-run/references/planning-config.md +200 -0
- package/plan-build-run/references/questioning.md +162 -0
- package/plan-build-run/references/reading-verification.md +127 -0
- package/plan-build-run/references/stub-patterns.md +160 -0
- package/plan-build-run/references/tdd.md +263 -0
- package/plan-build-run/references/ui-brand.md +187 -0
- package/plan-build-run/references/verification-overrides.md +38 -0
- package/plan-build-run/references/verification-patterns.md +612 -0
- package/plan-build-run/references/wave-execution.md +52 -0
- package/plan-build-run/skills/audit/SKILL.md +347 -0
- package/plan-build-run/skills/autonomous/SKILL.md +460 -0
- package/plan-build-run/skills/begin/SKILL.md +926 -0
- package/plan-build-run/skills/begin/templates/PROJECT.md.tmpl +33 -0
- package/plan-build-run/skills/begin/templates/REQUIREMENTS.md.tmpl +18 -0
- package/plan-build-run/skills/begin/templates/STATE.md.tmpl +48 -0
- package/plan-build-run/skills/begin/templates/config.json.tmpl +451 -0
- package/plan-build-run/skills/begin/templates/project-CONTEXT.md.tmpl +19 -0
- package/plan-build-run/skills/begin/templates/researcher-prompt.md.tmpl +47 -0
- package/plan-build-run/skills/begin/templates/roadmap-prompt.md.tmpl +49 -0
- package/plan-build-run/skills/begin/templates/synthesis-prompt.md.tmpl +44 -0
- package/plan-build-run/skills/build/SKILL.md +1655 -0
- package/plan-build-run/skills/build/templates/continuation-prompt.md.tmpl +26 -0
- package/plan-build-run/skills/build/templates/executor-prompt.md.tmpl +70 -0
- package/plan-build-run/skills/build/templates/inline-verifier-prompt.md.tmpl +33 -0
- package/plan-build-run/skills/config/SKILL.md +357 -0
- package/plan-build-run/skills/continue/SKILL.md +266 -0
- package/plan-build-run/skills/dashboard/SKILL.md +12 -0
- package/plan-build-run/skills/debug/SKILL.md +573 -0
- package/plan-build-run/skills/debug/templates/continuation-prompt.md.tmpl +27 -0
- package/plan-build-run/skills/debug/templates/initial-investigation-prompt.md.tmpl +34 -0
- package/plan-build-run/skills/discuss/SKILL.md +489 -0
- package/plan-build-run/skills/discuss/templates/CONTEXT.md.tmpl +61 -0
- package/plan-build-run/skills/discuss/templates/decision-categories.md +9 -0
- package/plan-build-run/skills/discuss/templates/project-CONTEXT.md.tmpl +19 -0
- package/plan-build-run/skills/do/SKILL.md +165 -0
- package/plan-build-run/skills/explore/SKILL.md +449 -0
- package/plan-build-run/skills/health/SKILL.md +332 -0
- package/plan-build-run/skills/health/templates/check-pattern.md.tmpl +30 -0
- package/plan-build-run/skills/health/templates/output-format.md.tmpl +63 -0
- package/plan-build-run/skills/help/SKILL.md +236 -0
- package/plan-build-run/skills/import/SKILL.md +827 -0
- package/plan-build-run/skills/intel/SKILL.md +131 -0
- package/plan-build-run/skills/milestone/SKILL.md +825 -0
- package/plan-build-run/skills/milestone/templates/audit-output.md.tmpl +76 -0
- package/plan-build-run/skills/milestone/templates/complete-output.md.tmpl +32 -0
- package/plan-build-run/skills/milestone/templates/edge-cases.md +54 -0
- package/plan-build-run/skills/milestone/templates/gaps-output.md.tmpl +25 -0
- package/plan-build-run/skills/milestone/templates/integration-checker-prompt.md.tmpl +25 -0
- package/plan-build-run/skills/milestone/templates/new-output.md.tmpl +29 -0
- package/plan-build-run/skills/milestone/templates/stats-file.md.tmpl +30 -0
- package/plan-build-run/skills/note/SKILL.md +221 -0
- package/plan-build-run/skills/pause/SKILL.md +259 -0
- package/plan-build-run/skills/pause/templates/continue-here.md.tmpl +71 -0
- package/plan-build-run/skills/plan/SKILL.md +852 -0
- package/plan-build-run/skills/plan/decimal-phase-calc.md +98 -0
- package/plan-build-run/skills/plan/templates/checker-prompt.md.tmpl +21 -0
- package/plan-build-run/skills/plan/templates/completion-output.md.tmpl +27 -0
- package/plan-build-run/skills/plan/templates/gap-closure-prompt.md.tmpl +32 -0
- package/plan-build-run/skills/plan/templates/planner-prompt.md.tmpl +38 -0
- package/plan-build-run/skills/plan/templates/prompt-partials/phase-project-context.md.tmpl +21 -0
- package/plan-build-run/skills/plan/templates/researcher-prompt.md.tmpl +19 -0
- package/plan-build-run/skills/plan/templates/revision-prompt.md.tmpl +23 -0
- package/plan-build-run/skills/profile/SKILL.md +173 -0
- package/plan-build-run/skills/profile-user/SKILL.md +220 -0
- package/plan-build-run/skills/quick/SKILL.md +727 -0
- package/plan-build-run/skills/release/SKILL.md +206 -0
- package/plan-build-run/skills/resume/SKILL.md +499 -0
- package/plan-build-run/skills/review/SKILL.md +763 -0
- package/plan-build-run/skills/review/templates/debugger-prompt.md.tmpl +60 -0
- package/plan-build-run/skills/review/templates/gap-planner-prompt.md.tmpl +40 -0
- package/plan-build-run/skills/review/templates/verifier-prompt.md.tmpl +115 -0
- package/plan-build-run/skills/scan/SKILL.md +330 -0
- package/plan-build-run/skills/scan/templates/mapper-prompt.md.tmpl +201 -0
- package/plan-build-run/skills/session-report/SKILL.md +128 -0
- package/plan-build-run/skills/setup/SKILL.md +246 -0
- package/plan-build-run/skills/shared/agent-type-resolution.md +20 -0
- package/plan-build-run/skills/shared/commit-planning-docs.md +43 -0
- package/plan-build-run/skills/shared/config-loading.md +102 -0
- package/plan-build-run/skills/shared/context-budget.md +105 -0
- package/plan-build-run/skills/shared/context-loader-task.md +91 -0
- package/plan-build-run/skills/shared/digest-select.md +79 -0
- package/plan-build-run/skills/shared/domain-probes.md +125 -0
- package/plan-build-run/skills/shared/error-reporting.md +59 -0
- package/plan-build-run/skills/shared/gate-prompts.md +390 -0
- package/plan-build-run/skills/shared/phase-argument-parsing.md +45 -0
- package/plan-build-run/skills/shared/revision-loop.md +81 -0
- package/plan-build-run/skills/shared/state-update.md +154 -0
- package/plan-build-run/skills/shared/universal-anti-patterns.md +59 -0
- package/plan-build-run/skills/ship/SKILL.md +154 -0
- package/plan-build-run/skills/status/SKILL.md +520 -0
- package/plan-build-run/skills/statusline/SKILL.md +151 -0
- package/plan-build-run/skills/test/SKILL.md +254 -0
- package/plan-build-run/skills/todo/SKILL.md +285 -0
- package/plan-build-run/skills/ui-phase/SKILL.md +177 -0
- package/plan-build-run/skills/ui-review/SKILL.md +204 -0
- package/plan-build-run/skills/undo/SKILL.md +216 -0
- package/plan-build-run/skills/validate-phase/SKILL.md +358 -0
- package/plan-build-run/templates/CLAUDE.md +7 -0
- package/plan-build-run/templates/DEBUG.md +164 -0
- package/plan-build-run/templates/UAT.md +247 -0
- package/plan-build-run/templates/VALIDATION.md +76 -0
- package/plan-build-run/templates/codebase/architecture.md +255 -0
- package/plan-build-run/templates/codebase/concerns.md +310 -0
- package/plan-build-run/templates/codebase/conventions.md +307 -0
- package/plan-build-run/templates/codebase/integrations.md +280 -0
- package/plan-build-run/templates/codebase/stack.md +186 -0
- package/plan-build-run/templates/codebase/structure.md +285 -0
- package/plan-build-run/templates/codebase/testing.md +480 -0
- package/plan-build-run/templates/config.json +37 -0
- package/plan-build-run/templates/context.md +297 -0
- package/plan-build-run/templates/continue-here.md +78 -0
- package/plan-build-run/templates/crud-flow-verification.md +277 -0
- package/plan-build-run/templates/debug-subagent-prompt.md +91 -0
- package/plan-build-run/templates/deferred-items.md +19 -0
- package/plan-build-run/templates/discovery.md +146 -0
- package/plan-build-run/templates/milestone-archive.md +123 -0
- package/plan-build-run/templates/milestone.md +115 -0
- package/plan-build-run/templates/phase-prompt.md +569 -0
- package/plan-build-run/templates/planner-subagent-prompt.md +117 -0
- package/plan-build-run/templates/project.md +184 -0
- package/plan-build-run/templates/requirements.md +231 -0
- package/plan-build-run/templates/research-outputs/ARCHITECTURE.md.tmpl +86 -0
- package/plan-build-run/templates/research-outputs/FEATURES.md.tmpl +77 -0
- package/plan-build-run/templates/research-outputs/PITFALLS.md.tmpl +65 -0
- package/plan-build-run/templates/research-outputs/STACK.md.tmpl +80 -0
- package/plan-build-run/templates/research-project/ARCHITECTURE.md +204 -0
- package/plan-build-run/templates/research-project/FEATURES.md +147 -0
- package/plan-build-run/templates/research-project/PITFALLS.md +200 -0
- package/plan-build-run/templates/research-project/STACK.md +120 -0
- package/plan-build-run/templates/research-project/SUMMARY.md +170 -0
- package/plan-build-run/templates/research.md +552 -0
- package/plan-build-run/templates/retrospective.md +54 -0
- package/plan-build-run/templates/roadmap.md +202 -0
- package/plan-build-run/templates/seed.md +16 -0
- package/plan-build-run/templates/state.md +176 -0
- package/plan-build-run/templates/summary-complex.md +59 -0
- package/plan-build-run/templates/summary-minimal.md +41 -0
- package/plan-build-run/templates/summary-standard.md +48 -0
- package/plan-build-run/templates/summary.md +248 -0
- package/plan-build-run/templates/user-setup.md +311 -0
- package/plan-build-run/templates/verification-report.md +322 -0
- package/plan-build-run/workflows/add-phase.md +111 -0
- package/plan-build-run/workflows/add-todo.md +157 -0
- package/plan-build-run/workflows/audit-milestone.md +241 -0
- package/plan-build-run/workflows/check-todos.md +176 -0
- package/plan-build-run/workflows/complete-milestone.md +644 -0
- package/plan-build-run/workflows/diagnose-issues.md +219 -0
- package/plan-build-run/workflows/discovery-phase.md +289 -0
- package/plan-build-run/workflows/discuss-phase.md +429 -0
- package/plan-build-run/workflows/execute-phase.md +439 -0
- package/plan-build-run/workflows/execute-plan.md +437 -0
- package/plan-build-run/workflows/explore.md +150 -0
- package/plan-build-run/workflows/help.md +470 -0
- package/plan-build-run/workflows/insert-phase.md +129 -0
- package/plan-build-run/workflows/list-phase-assumptions.md +178 -0
- package/plan-build-run/workflows/map-codebase.md +327 -0
- package/plan-build-run/workflows/new-milestone.md +373 -0
- package/plan-build-run/workflows/new-project.md +1009 -0
- package/plan-build-run/workflows/note.md +90 -0
- package/plan-build-run/workflows/pause-work.md +122 -0
- package/plan-build-run/workflows/plan-milestone-gaps.md +256 -0
- package/plan-build-run/workflows/plan-phase.md +376 -0
- package/plan-build-run/workflows/progress.md +431 -0
- package/plan-build-run/workflows/quick.md +230 -0
- package/plan-build-run/workflows/remove-phase.md +154 -0
- package/plan-build-run/workflows/research-phase.md +74 -0
- package/plan-build-run/workflows/resume-project.md +306 -0
- package/plan-build-run/workflows/set-profile.md +80 -0
- package/plan-build-run/workflows/settings.md +145 -0
- package/plan-build-run/workflows/transition.md +539 -0
- package/plan-build-run/workflows/update.md +212 -0
- package/plan-build-run/workflows/verify-phase.md +226 -0
- package/plan-build-run/workflows/verify-work.md +465 -0
- package/plugins/pbr/.claude-plugin/plugin.json +1 -1
- package/plugins/pbr/CLAUDE.md +19 -0
- package/plugins/pbr/UI-CONSISTENCY-GAPS.md +1 -1
- package/plugins/pbr/agents/audit.md +285 -0
- package/plugins/pbr/agents/codebase-mapper.md +110 -18
- package/plugins/pbr/agents/debugger.md +231 -29
- package/plugins/pbr/agents/dev-sync.md +206 -0
- package/plugins/pbr/agents/executor.md +601 -39
- package/plugins/pbr/agents/general.md +71 -6
- package/plugins/pbr/agents/integration-checker.md +146 -30
- package/plugins/pbr/agents/intel-updater.md +333 -0
- package/plugins/pbr/agents/nyquist-auditor.md +253 -0
- package/plugins/pbr/agents/plan-checker.md +177 -60
- package/plugins/pbr/agents/planner.md +404 -42
- package/plugins/pbr/agents/researcher.md +239 -36
- package/plugins/pbr/agents/roadmapper.md +384 -0
- package/plugins/pbr/agents/synthesizer.md +169 -26
- package/plugins/pbr/agents/ui-checker.md +203 -0
- package/plugins/pbr/agents/ui-researcher.md +224 -0
- package/plugins/pbr/agents/verifier.md +452 -48
- package/plugins/pbr/commands/add-phase.md +75 -0
- package/plugins/pbr/commands/add-todo.md +8 -0
- package/plugins/pbr/commands/audit-milestone.md +8 -0
- package/plugins/pbr/commands/audit.md +5 -0
- package/plugins/pbr/commands/autonomous.md +5 -0
- package/plugins/pbr/commands/begin.md +1 -1
- package/plugins/pbr/commands/build.md +1 -1
- package/plugins/pbr/commands/check-todos.md +8 -0
- package/plugins/pbr/commands/complete-milestone.md +8 -0
- package/plugins/pbr/commands/config.md +2 -2
- package/plugins/pbr/commands/continue.md +1 -1
- package/plugins/pbr/commands/dashboard.md +1 -1
- package/plugins/pbr/commands/debug.md +1 -1
- package/plugins/pbr/commands/discuss-phase.md +6 -0
- package/plugins/pbr/commands/discuss.md +1 -1
- package/plugins/pbr/commands/do.md +5 -0
- package/plugins/pbr/commands/execute-phase.md +6 -0
- package/plugins/pbr/commands/explore.md +1 -1
- package/plugins/pbr/commands/health.md +1 -1
- package/plugins/pbr/commands/help.md +1 -1
- package/plugins/pbr/commands/import.md +2 -2
- package/plugins/pbr/commands/insert-phase.md +65 -0
- package/plugins/pbr/commands/intel.md +5 -0
- package/plugins/pbr/commands/join-discord.md +11 -0
- package/plugins/pbr/commands/list-phase-assumptions.md +69 -0
- package/plugins/pbr/commands/map-codebase.md +6 -0
- package/plugins/pbr/commands/milestone.md +1 -1
- package/plugins/pbr/commands/new-milestone.md +8 -0
- package/plugins/pbr/commands/new-project.md +6 -0
- package/plugins/pbr/commands/note.md +1 -1
- package/plugins/pbr/commands/pause-work.md +5 -0
- package/plugins/pbr/commands/pause.md +1 -1
- package/plugins/pbr/commands/plan-milestone-gaps.md +7 -0
- package/plugins/pbr/commands/plan-phase.md +6 -0
- package/plugins/pbr/commands/plan.md +1 -1
- package/plugins/pbr/commands/profile-user.md +5 -0
- package/plugins/pbr/commands/profile.md +5 -0
- package/plugins/pbr/commands/progress.md +6 -0
- package/plugins/pbr/commands/quick.md +2 -2
- package/plugins/pbr/commands/reapply-patches.md +47 -0
- package/plugins/pbr/commands/release.md +6 -0
- package/plugins/pbr/commands/remove-phase.md +66 -0
- package/plugins/pbr/commands/research-phase.md +59 -0
- package/plugins/pbr/commands/resume-work.md +5 -0
- package/plugins/pbr/commands/resume.md +1 -1
- package/plugins/pbr/commands/review.md +1 -1
- package/plugins/pbr/commands/scan.md +1 -1
- package/plugins/pbr/commands/session-report.md +5 -0
- package/plugins/pbr/commands/set-profile.md +6 -0
- package/plugins/pbr/commands/settings.md +5 -0
- package/plugins/pbr/commands/setup.md +2 -2
- package/plugins/pbr/commands/ship.md +5 -0
- package/plugins/pbr/commands/status.md +1 -1
- package/plugins/pbr/commands/statusline.md +1 -1
- package/plugins/pbr/commands/test.md +5 -0
- package/plugins/pbr/commands/todo.md +2 -2
- package/plugins/pbr/commands/ui-phase.md +5 -0
- package/plugins/pbr/commands/ui-review.md +5 -0
- package/plugins/pbr/commands/undo.md +5 -0
- package/plugins/pbr/commands/update.md +37 -0
- package/plugins/pbr/commands/validate-phase.md +5 -0
- package/plugins/pbr/commands/verify-work.md +6 -0
- package/plugins/pbr/dashboard/package-lock.json +6 -0
- package/plugins/pbr/hooks/hooks.json +102 -13
- package/plugins/pbr/references/agent-contracts.md +37 -8
- package/plugins/pbr/references/agent-teams.md +3 -3
- package/plugins/pbr/references/archive/checkpoints.md +189 -0
- package/plugins/pbr/references/archive/context-quality-tiers.md +45 -0
- package/plugins/pbr/references/archive/pbr-rules.md +194 -0
- package/plugins/pbr/references/archive/verification-patterns.md +277 -0
- package/plugins/pbr/references/config-reference.md +182 -10
- package/plugins/pbr/references/continuation-format.md +1 -0
- package/plugins/pbr/references/deviation-rules.md +12 -0
- package/plugins/pbr/references/git-integration.md +110 -27
- package/plugins/pbr/references/hook-ordering.md +89 -0
- package/plugins/pbr/references/limitations.md +106 -0
- package/plugins/pbr/references/model-profiles.md +90 -7
- package/plugins/pbr/references/model-selection.md +1 -1
- package/plugins/pbr/references/node-repair.md +48 -0
- package/plugins/pbr/references/pbr-tools-cli.md +132 -2
- package/plugins/pbr/references/plan-authoring.md +65 -0
- package/plugins/pbr/references/plan-format.md +161 -10
- package/plugins/pbr/references/pretooluse-jsonl-behavior.md +58 -0
- package/plugins/pbr/references/questioning.md +138 -49
- package/plugins/pbr/references/reading-verification.md +4 -4
- package/plugins/pbr/references/signal-files.md +41 -0
- package/plugins/pbr/references/tmux-setup.md +288 -0
- package/plugins/pbr/references/ui-brand.md +449 -0
- package/plugins/pbr/references/worktree-sparse-checkout.md +86 -0
- package/plugins/pbr/scripts/architecture-guard.js +257 -0
- package/plugins/pbr/scripts/audit-checks/behavioral-compliance.js +2098 -0
- package/plugins/pbr/scripts/audit-checks/error-analysis.js +895 -0
- package/plugins/pbr/scripts/audit-checks/feature-verification.js +723 -0
- package/plugins/pbr/scripts/audit-checks/index.js +433 -0
- package/plugins/pbr/scripts/audit-checks/infrastructure.js +816 -0
- package/plugins/pbr/scripts/audit-checks/quality-metrics.js +452 -0
- package/plugins/pbr/scripts/audit-checks/session-quality.js +980 -0
- package/plugins/pbr/scripts/audit-checks/si-agent-hook-config-checks.js +467 -0
- package/plugins/pbr/scripts/audit-checks/si-cross-cutting-checks.js +272 -0
- package/plugins/pbr/scripts/audit-checks/si-skill-checks.js +424 -0
- package/plugins/pbr/scripts/audit-checks/workflow-compliance.js +1210 -0
- package/plugins/pbr/scripts/audit-dimensions.js +552 -0
- package/plugins/pbr/scripts/auto-continue.js +211 -32
- package/plugins/pbr/scripts/block-skill-self-read.js +85 -0
- package/plugins/pbr/scripts/check-agent-state-write.js +74 -0
- package/plugins/pbr/scripts/check-config-change.js +188 -0
- package/plugins/pbr/scripts/check-cross-plugin-sync.js +93 -0
- package/plugins/pbr/scripts/check-dangerous-commands.js +9 -5
- package/plugins/pbr/scripts/check-direct-state-write.js +37 -0
- package/plugins/pbr/scripts/check-phase-boundary.js +2 -8
- package/plugins/pbr/scripts/check-plan-format.js +149 -274
- package/plugins/pbr/scripts/check-roadmap-sync.js +175 -10
- package/plugins/pbr/scripts/check-skill-workflow.js +38 -34
- package/plugins/pbr/scripts/check-state-sync.js +344 -216
- package/plugins/pbr/scripts/check-subagent-output.js +297 -256
- package/plugins/pbr/scripts/check-summary-gate.js +1 -1
- package/plugins/pbr/scripts/config-schema.json +1252 -95
- package/plugins/pbr/scripts/context-bridge.js +439 -0
- package/plugins/pbr/scripts/context-budget-check.js +89 -9
- package/plugins/pbr/scripts/context-quality.js +272 -0
- package/plugins/pbr/scripts/enforce-pbr-workflow.js +277 -0
- package/plugins/pbr/scripts/event-handler.js +129 -77
- package/plugins/pbr/scripts/event-logger.js +61 -26
- package/plugins/pbr/scripts/feedback-loop.js +172 -0
- package/plugins/pbr/scripts/graph-update.js +199 -0
- package/plugins/pbr/scripts/hook-logger.js +76 -35
- package/plugins/pbr/scripts/hook-server-client.js +258 -0
- package/plugins/pbr/scripts/hook-server.js +334 -0
- package/plugins/pbr/scripts/hooks-schema.json +5 -1
- package/plugins/pbr/scripts/instructions-loaded.js +107 -0
- package/plugins/pbr/scripts/intel-queue.js +152 -0
- package/plugins/pbr/scripts/intent-router.cjs +147 -0
- package/plugins/pbr/scripts/intercept-plan-mode.js +52 -0
- package/plugins/pbr/scripts/lib/alternatives.js +203 -0
- package/plugins/pbr/scripts/lib/auto-cleanup.js +221 -0
- package/plugins/pbr/scripts/lib/auto-verify.js +103 -0
- package/plugins/pbr/scripts/lib/autonomy.js +91 -0
- package/plugins/pbr/scripts/lib/build.js +719 -0
- package/plugins/pbr/scripts/lib/ci-fix-loop.js +228 -0
- package/plugins/pbr/scripts/lib/circuit-state.js +133 -0
- package/plugins/pbr/scripts/lib/config.js +901 -0
- package/plugins/pbr/scripts/lib/context.js +254 -0
- package/plugins/pbr/scripts/lib/convention-detector.js +413 -0
- package/plugins/pbr/scripts/lib/core.js +939 -0
- package/plugins/pbr/scripts/lib/dashboard-launch.js +170 -0
- package/plugins/pbr/scripts/lib/decision-extraction.js +267 -0
- package/plugins/pbr/scripts/lib/dependency-break.js +147 -0
- package/plugins/pbr/scripts/lib/format-validators.js +947 -0
- package/plugins/pbr/scripts/lib/gates/advisories.js +129 -0
- package/plugins/pbr/scripts/lib/gates/build-dependency.js +115 -0
- package/plugins/pbr/scripts/lib/gates/build-executor.js +104 -0
- package/plugins/pbr/scripts/lib/gates/doc-existence.js +46 -0
- package/plugins/pbr/scripts/lib/gates/helpers.js +141 -0
- package/plugins/pbr/scripts/lib/gates/inline-execution.js +185 -0
- package/plugins/pbr/scripts/lib/gates/milestone-complete.js +136 -0
- package/plugins/pbr/scripts/lib/gates/milestone-summary.js +119 -0
- package/plugins/pbr/scripts/lib/gates/multi-phase-loader.js +147 -0
- package/plugins/pbr/scripts/lib/gates/plan-executor.js +36 -0
- package/plugins/pbr/scripts/lib/gates/quick-executor.js +76 -0
- package/plugins/pbr/scripts/lib/gates/review-planner.js +61 -0
- package/plugins/pbr/scripts/lib/gates/review-verifier.js +69 -0
- package/plugins/pbr/scripts/lib/gates/rich-agent-context.js +143 -0
- package/plugins/pbr/scripts/lib/health-checks.js +215 -0
- package/plugins/pbr/scripts/lib/history.js +150 -0
- package/plugins/pbr/scripts/lib/init.js +302 -0
- package/plugins/pbr/scripts/lib/learnings.js +432 -0
- package/plugins/pbr/scripts/lib/migrate.js +169 -0
- package/plugins/pbr/scripts/lib/parse-args.js +134 -0
- package/plugins/pbr/scripts/lib/pattern-routing.js +55 -0
- package/plugins/pbr/scripts/lib/phase.js +935 -0
- package/plugins/pbr/scripts/lib/pre-research.js +133 -0
- package/plugins/pbr/scripts/lib/preview.js +174 -0
- package/plugins/pbr/scripts/lib/quick-init.js +131 -0
- package/plugins/pbr/scripts/lib/reference.js +236 -0
- package/plugins/pbr/scripts/lib/resolve-root.js +66 -0
- package/plugins/pbr/scripts/lib/roadmap.js +784 -0
- package/plugins/pbr/scripts/lib/session-briefing.js +879 -0
- package/plugins/pbr/scripts/lib/skill-section.js +99 -0
- package/plugins/pbr/scripts/lib/smart-next-task.js +225 -0
- package/plugins/pbr/scripts/lib/snapshot-manager.js +225 -0
- package/plugins/pbr/scripts/lib/spot-check.js +509 -0
- package/plugins/pbr/scripts/lib/state.js +565 -0
- package/plugins/pbr/scripts/lib/status-render.js +511 -0
- package/plugins/pbr/scripts/lib/step-verify.js +149 -0
- package/plugins/pbr/scripts/lib/subagent-validators.js +1010 -0
- package/plugins/pbr/scripts/lib/suggest-next.js +316 -0
- package/plugins/pbr/scripts/lib/tech-debt-scanner.js +116 -0
- package/plugins/pbr/scripts/lib/test-cache.js +54 -0
- package/plugins/pbr/scripts/lib/todo.js +300 -0
- package/plugins/pbr/scripts/lib/trust-gate.js +84 -0
- package/plugins/pbr/scripts/local-llm/client.js +237 -0
- package/plugins/pbr/scripts/local-llm/health.js +220 -0
- package/plugins/pbr/scripts/local-llm/metrics.js +340 -0
- package/plugins/pbr/scripts/local-llm/operations/classify-artifact.js +76 -0
- package/plugins/pbr/scripts/local-llm/operations/classify-commit.js +137 -0
- package/plugins/pbr/scripts/local-llm/operations/classify-error.js +75 -0
- package/plugins/pbr/scripts/local-llm/operations/classify-file-intent.js +171 -0
- package/plugins/pbr/scripts/local-llm/operations/score-source.js +72 -0
- package/plugins/pbr/scripts/local-llm/operations/summarize-context.js +62 -0
- package/plugins/pbr/scripts/local-llm/operations/triage-test-output.js +72 -0
- package/plugins/pbr/scripts/local-llm/operations/validate-task.js +59 -0
- package/plugins/pbr/scripts/local-llm/router.js +101 -0
- package/plugins/pbr/scripts/local-llm/shadow.js +60 -0
- package/plugins/pbr/scripts/local-llm/threshold-tuner.js +118 -0
- package/plugins/pbr/scripts/log-subagent.js +129 -26
- package/plugins/pbr/scripts/log-tool-failure.js +58 -5
- package/plugins/pbr/scripts/milestone-learnings.js +569 -0
- package/plugins/pbr/scripts/package.json +1 -0
- package/plugins/pbr/scripts/pbr-tools.js +1361 -1214
- package/plugins/pbr/scripts/post-bash-triage.js +163 -0
- package/plugins/pbr/scripts/post-compact.js +135 -0
- package/plugins/pbr/scripts/post-hoc.js +286 -0
- package/plugins/pbr/scripts/post-write-dispatch.js +315 -30
- package/plugins/pbr/scripts/post-write-quality.js +3 -3
- package/plugins/pbr/scripts/pre-bash-dispatch.js +81 -4
- package/plugins/pbr/scripts/pre-write-dispatch.js +76 -20
- package/plugins/pbr/scripts/progress-tracker.js +145 -277
- package/plugins/pbr/scripts/quick-status.js +179 -0
- package/plugins/pbr/scripts/record-incident.js +37 -0
- package/plugins/pbr/scripts/risk-classifier.cjs +123 -0
- package/plugins/pbr/scripts/run-hook.js +49 -8
- package/plugins/pbr/scripts/session-cleanup.js +379 -7
- package/plugins/pbr/scripts/session-tracker.js +124 -0
- package/plugins/pbr/scripts/status-line.js +540 -27
- package/plugins/pbr/scripts/suggest-compact.js +183 -7
- package/plugins/pbr/scripts/sync-context-to-claude.js +100 -0
- package/plugins/pbr/scripts/task-completed.js +125 -3
- package/plugins/pbr/scripts/test/config.test.js +126 -0
- package/plugins/pbr/scripts/test/cross-platform.test.js +131 -0
- package/plugins/pbr/scripts/test/fixtures/config.json +20 -0
- package/plugins/pbr/scripts/test/fixtures/plan.md +54 -0
- package/plugins/pbr/scripts/test/fixtures/project.md +30 -0
- package/plugins/pbr/scripts/test/fixtures/roadmap.md +55 -0
- package/plugins/pbr/scripts/test/fixtures/state.md +60 -0
- package/plugins/pbr/scripts/test/fixtures/summary.md +35 -0
- package/plugins/pbr/scripts/test/fixtures.test.js +184 -0
- package/plugins/pbr/scripts/test/phase.test.js +142 -0
- package/plugins/pbr/scripts/test/roadmap.test.js +96 -0
- package/plugins/pbr/scripts/test/state.test.js +163 -0
- package/plugins/pbr/scripts/track-context-budget.js +323 -88
- package/plugins/pbr/scripts/trust-tracker.js +193 -0
- package/plugins/pbr/scripts/validate-commit.js +76 -11
- package/plugins/pbr/scripts/validate-skill-args.js +18 -14
- package/plugins/pbr/scripts/validate-task.js +93 -614
- package/plugins/pbr/scripts/worktree-create.js +144 -0
- package/plugins/pbr/scripts/worktree-remove.js +147 -0
- package/plugins/pbr/skills/audit/SKILL.md +478 -0
- package/plugins/pbr/skills/autonomous/SKILL.md +460 -0
- package/plugins/pbr/skills/begin/SKILL.md +447 -142
- package/plugins/pbr/skills/begin/templates/STATE.md.tmpl +1 -2
- package/plugins/pbr/skills/begin/templates/config.json.tmpl +423 -36
- package/plugins/pbr/skills/begin/templates/researcher-prompt.md.tmpl +28 -0
- package/plugins/pbr/skills/begin/templates/roadmap-prompt.md.tmpl +26 -3
- package/plugins/pbr/skills/begin/templates/synthesis-prompt.md.tmpl +33 -5
- package/plugins/pbr/skills/build/SKILL.md +1010 -327
- package/plugins/pbr/skills/build/templates/continuation-prompt.md.tmpl +26 -0
- package/plugins/pbr/skills/build/templates/executor-prompt.md.tmpl +77 -0
- package/plugins/pbr/skills/build/templates/inline-verifier-prompt.md.tmpl +33 -0
- package/plugins/pbr/skills/config/SKILL.md +108 -9
- package/plugins/pbr/skills/continue/SKILL.md +118 -19
- package/plugins/pbr/skills/dashboard/SKILL.md +21 -9
- package/plugins/pbr/skills/debug/SKILL.md +62 -10
- package/plugins/pbr/skills/debug/templates/continuation-prompt.md.tmpl +12 -1
- package/plugins/pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +12 -5
- package/plugins/pbr/skills/discuss/SKILL.md +155 -23
- package/plugins/pbr/skills/discuss/templates/CONTEXT.md.tmpl +21 -1
- package/plugins/pbr/skills/do/SKILL.md +119 -24
- package/plugins/pbr/skills/explore/SKILL.md +83 -16
- package/plugins/pbr/skills/health/SKILL.md +74 -17
- package/plugins/pbr/skills/help/SKILL.md +123 -39
- package/plugins/pbr/skills/import/SKILL.md +327 -13
- package/plugins/pbr/skills/intel/SKILL.md +131 -0
- package/plugins/pbr/skills/milestone/SKILL.md +342 -260
- package/plugins/pbr/skills/milestone/templates/audit-output.md.tmpl +76 -0
- package/plugins/pbr/skills/milestone/templates/complete-output.md.tmpl +32 -0
- package/plugins/pbr/skills/milestone/templates/edge-cases.md +54 -0
- package/plugins/pbr/skills/milestone/templates/gaps-output.md.tmpl +25 -0
- package/plugins/pbr/skills/milestone/templates/integration-checker-prompt.md.tmpl +25 -0
- package/plugins/pbr/skills/milestone/templates/new-output.md.tmpl +29 -0
- package/plugins/pbr/skills/note/SKILL.md +10 -2
- package/plugins/pbr/skills/pause/SKILL.md +51 -7
- package/plugins/pbr/skills/pause/templates/continue-here.md.tmpl +33 -52
- package/plugins/pbr/skills/plan/SKILL.md +418 -268
- package/plugins/pbr/skills/plan/templates/checker-prompt.md.tmpl +5 -2
- package/plugins/pbr/skills/plan/templates/completion-output.md.tmpl +27 -0
- package/plugins/pbr/skills/plan/templates/revision-prompt.md.tmpl +21 -5
- package/plugins/pbr/skills/profile/SKILL.md +183 -0
- package/plugins/pbr/skills/profile-user/SKILL.md +224 -0
- package/plugins/pbr/skills/quick/SKILL.md +440 -95
- package/plugins/pbr/skills/release/SKILL.md +206 -0
- package/plugins/pbr/skills/resume/SKILL.md +122 -27
- package/plugins/pbr/skills/review/SKILL.md +219 -154
- package/plugins/pbr/skills/review/templates/verifier-prompt.md.tmpl +7 -0
- package/plugins/pbr/skills/scan/SKILL.md +36 -12
- package/plugins/pbr/skills/scan/templates/mapper-prompt.md.tmpl +1 -1
- package/plugins/pbr/skills/session-report/SKILL.md +128 -0
- package/plugins/pbr/skills/setup/SKILL.md +149 -202
- package/plugins/pbr/skills/shared/agent-context-enrichment.md +21 -0
- package/plugins/pbr/skills/shared/agent-type-resolution.md +20 -0
- package/plugins/pbr/skills/shared/commit-planning-docs.md +8 -0
- package/plugins/pbr/skills/shared/context-budget.md +66 -1
- package/plugins/pbr/skills/shared/context-loader-task.md +15 -8
- package/plugins/pbr/skills/shared/digest-select.md +2 -2
- package/plugins/pbr/skills/shared/domain-probes.md +1 -1
- package/plugins/pbr/skills/shared/error-reporting.md +38 -60
- package/plugins/pbr/skills/shared/gate-prompts.md +4 -2
- package/plugins/pbr/skills/shared/memory-capture.md +48 -0
- package/plugins/pbr/skills/shared/phase-argument-parsing.md +4 -4
- package/plugins/pbr/skills/shared/revision-loop.md +24 -6
- package/plugins/pbr/skills/shared/state-update.md +47 -54
- package/plugins/pbr/skills/shared/universal-anti-patterns.md +27 -4
- package/plugins/pbr/skills/ship/SKILL.md +154 -0
- package/plugins/pbr/skills/status/SKILL.md +201 -53
- package/plugins/pbr/skills/test/SKILL.md +254 -0
- package/plugins/pbr/skills/todo/SKILL.md +13 -11
- package/plugins/pbr/skills/ui-phase/SKILL.md +179 -0
- package/plugins/pbr/skills/ui-review/SKILL.md +206 -0
- package/plugins/pbr/skills/undo/SKILL.md +218 -0
- package/plugins/pbr/skills/validate-phase/SKILL.md +358 -0
- package/plugins/pbr/templates/CONTEXT.md.tmpl +45 -20
- package/plugins/pbr/templates/DISCOVERY.md.tmpl +29 -0
- package/plugins/pbr/templates/HANDOFF.json.tmpl +30 -0
- package/plugins/pbr/templates/INTEGRATION-REPORT.md.tmpl +18 -2
- package/plugins/pbr/templates/KNOWLEDGE.md.tmpl +39 -0
- package/plugins/pbr/templates/MILESTONE-AUDIT.md.tmpl +44 -0
- package/plugins/pbr/templates/PROJECT.md.tmpl +126 -0
- package/plugins/pbr/templates/REQUIREMENTS.md.tmpl +96 -0
- package/plugins/pbr/templates/RETROSPECTIVE.md.tmpl +43 -0
- package/plugins/pbr/templates/ROADMAP.md.tmpl +108 -14
- package/plugins/pbr/templates/SUMMARY-complex.md.tmpl +133 -0
- package/plugins/pbr/templates/SUMMARY-minimal.md.tmpl +55 -0
- package/plugins/pbr/templates/SUMMARY.md.tmpl +21 -0
- package/plugins/pbr/templates/VERIFICATION-DETAIL.md.tmpl +49 -13
- package/plugins/pbr/templates/project-CONTEXT.md.tmpl +59 -0
- package/plugins/pbr/templates/research-outputs/ARCHITECTURE.md.tmpl +91 -0
- package/plugins/pbr/templates/research-outputs/FEATURES.md.tmpl +64 -0
- package/plugins/pbr/templates/research-outputs/PITFALLS.md.tmpl +50 -0
- package/plugins/pbr/templates/research-outputs/STACK.md.tmpl +63 -0
- package/plugins/pbr/templates/research-outputs/SUMMARY.md.tmpl +98 -0
- package/scripts/build-hooks.js +61 -0
- package/scripts/check-ci.js +100 -0
- package/scripts/clean-changelog.js +362 -0
- package/scripts/generate-derivatives.js +581 -0
- package/scripts/posttest.js +93 -0
- package/scripts/release.js +196 -0
- package/scripts/run-tests.cjs +29 -0
- package/dashboard/bin/cli.js +0 -25
- package/dashboard/public/css/layout.css +0 -472
- package/dashboard/public/css/status-colors.css +0 -98
- package/dashboard/public/js/htmx-title.js +0 -5
- package/dashboard/public/js/sidebar-toggle.js +0 -20
- package/dashboard/src/app.js +0 -78
- package/dashboard/src/middleware/errorHandler.js +0 -52
- package/dashboard/src/middleware/notFoundHandler.js +0 -9
- package/dashboard/src/repositories/planning.repository.js +0 -130
- package/dashboard/src/routes/events.routes.js +0 -40
- package/dashboard/src/routes/index.routes.js +0 -31
- package/dashboard/src/routes/pages.routes.js +0 -308
- package/dashboard/src/server.js +0 -42
- package/dashboard/src/services/dashboard.service.js +0 -309
- package/dashboard/src/services/milestone.service.js +0 -154
- package/dashboard/src/services/phase.service.js +0 -226
- package/dashboard/src/services/project.service.js +0 -57
- package/dashboard/src/services/roadmap.service.js +0 -171
- package/dashboard/src/services/sse.service.js +0 -58
- package/dashboard/src/services/todo.service.js +0 -254
- package/dashboard/src/services/watcher.service.js +0 -48
- package/dashboard/src/views/coming-soon.ejs +0 -11
- package/dashboard/src/views/error.ejs +0 -13
- package/dashboard/src/views/index.ejs +0 -5
- package/dashboard/src/views/layout.ejs +0 -1
- package/dashboard/src/views/milestone-detail.ejs +0 -5
- package/dashboard/src/views/milestones.ejs +0 -5
- package/dashboard/src/views/partials/dashboard-content.ejs +0 -77
- package/dashboard/src/views/partials/footer.ejs +0 -3
- package/dashboard/src/views/partials/head.ejs +0 -27
- package/dashboard/src/views/partials/header.ejs +0 -12
- package/dashboard/src/views/partials/layout-bottom.ejs +0 -15
- package/dashboard/src/views/partials/layout-top.ejs +0 -8
- package/dashboard/src/views/partials/milestone-detail-content.ejs +0 -19
- package/dashboard/src/views/partials/milestones-content.ejs +0 -44
- package/dashboard/src/views/partials/phase-content.ejs +0 -189
- package/dashboard/src/views/partials/phase-doc-content.ejs +0 -38
- package/dashboard/src/views/partials/phases-content.ejs +0 -117
- package/dashboard/src/views/partials/roadmap-content.ejs +0 -142
- package/dashboard/src/views/partials/sidebar.ejs +0 -46
- package/dashboard/src/views/partials/todo-create-content.ejs +0 -53
- package/dashboard/src/views/partials/todo-detail-content.ejs +0 -38
- package/dashboard/src/views/partials/todos-content.ejs +0 -53
- package/dashboard/src/views/phase-detail.ejs +0 -5
- package/dashboard/src/views/phase-doc.ejs +0 -5
- package/dashboard/src/views/phases.ejs +0 -5
- package/dashboard/src/views/roadmap.ejs +0 -5
- package/dashboard/src/views/todo-create.ejs +0 -5
- package/dashboard/src/views/todo-detail.ejs +0 -5
- package/dashboard/src/views/todos.ejs +0 -5
- package/plugins/copilot-pbr/CHANGELOG.md +0 -19
- package/plugins/copilot-pbr/README.md +0 -129
- package/plugins/copilot-pbr/agents/codebase-mapper.agent.md +0 -151
- package/plugins/copilot-pbr/agents/debugger.agent.md +0 -172
- package/plugins/copilot-pbr/agents/executor.agent.md +0 -267
- package/plugins/copilot-pbr/agents/general.agent.md +0 -88
- package/plugins/copilot-pbr/agents/integration-checker.agent.md +0 -119
- package/plugins/copilot-pbr/agents/plan-checker.agent.md +0 -199
- package/plugins/copilot-pbr/agents/planner.agent.md +0 -238
- package/plugins/copilot-pbr/agents/researcher.agent.md +0 -186
- package/plugins/copilot-pbr/agents/synthesizer.agent.md +0 -126
- package/plugins/copilot-pbr/agents/verifier.agent.md +0 -228
- package/plugins/copilot-pbr/hooks/hooks.json +0 -144
- package/plugins/copilot-pbr/plugin.json +0 -30
- package/plugins/copilot-pbr/references/agent-anti-patterns.md +0 -25
- package/plugins/copilot-pbr/references/agent-contracts.md +0 -297
- package/plugins/copilot-pbr/references/agent-interactions.md +0 -135
- package/plugins/copilot-pbr/references/agent-teams.md +0 -55
- package/plugins/copilot-pbr/references/checkpoints.md +0 -158
- package/plugins/copilot-pbr/references/common-bug-patterns.md +0 -14
- package/plugins/copilot-pbr/references/config-reference.md +0 -442
- package/plugins/copilot-pbr/references/continuation-format.md +0 -213
- package/plugins/copilot-pbr/references/deviation-rules.md +0 -113
- package/plugins/copilot-pbr/references/git-integration.md +0 -227
- package/plugins/copilot-pbr/references/integration-patterns.md +0 -118
- package/plugins/copilot-pbr/references/model-profiles.md +0 -100
- package/plugins/copilot-pbr/references/model-selection.md +0 -32
- package/plugins/copilot-pbr/references/pbr-rules.md +0 -195
- package/plugins/copilot-pbr/references/pbr-tools-cli.md +0 -285
- package/plugins/copilot-pbr/references/plan-authoring.md +0 -182
- package/plugins/copilot-pbr/references/plan-format.md +0 -288
- package/plugins/copilot-pbr/references/planning-config.md +0 -214
- package/plugins/copilot-pbr/references/questioning.md +0 -215
- package/plugins/copilot-pbr/references/reading-verification.md +0 -128
- package/plugins/copilot-pbr/references/stub-patterns.md +0 -161
- package/plugins/copilot-pbr/references/subagent-coordination.md +0 -120
- package/plugins/copilot-pbr/references/ui-formatting.md +0 -444
- package/plugins/copilot-pbr/references/verification-patterns.md +0 -199
- package/plugins/copilot-pbr/references/wave-execution.md +0 -96
- package/plugins/copilot-pbr/rules/pbr-workflow.mdc +0 -48
- package/plugins/copilot-pbr/setup.ps1 +0 -93
- package/plugins/copilot-pbr/setup.sh +0 -93
- package/plugins/copilot-pbr/skills/begin/SKILL.md +0 -589
- package/plugins/copilot-pbr/skills/begin/templates/PROJECT.md.tmpl +0 -34
- package/plugins/copilot-pbr/skills/begin/templates/REQUIREMENTS.md.tmpl +0 -19
- package/plugins/copilot-pbr/skills/begin/templates/STATE.md.tmpl +0 -50
- package/plugins/copilot-pbr/skills/begin/templates/config.json.tmpl +0 -64
- package/plugins/copilot-pbr/skills/begin/templates/researcher-prompt.md.tmpl +0 -20
- package/plugins/copilot-pbr/skills/begin/templates/roadmap-prompt.md.tmpl +0 -31
- package/plugins/copilot-pbr/skills/begin/templates/synthesis-prompt.md.tmpl +0 -17
- package/plugins/copilot-pbr/skills/build/SKILL.md +0 -955
- package/plugins/copilot-pbr/skills/config/SKILL.md +0 -250
- package/plugins/copilot-pbr/skills/continue/SKILL.md +0 -159
- package/plugins/copilot-pbr/skills/dashboard/SKILL.md +0 -43
- package/plugins/copilot-pbr/skills/debug/SKILL.md +0 -508
- package/plugins/copilot-pbr/skills/debug/templates/continuation-prompt.md.tmpl +0 -17
- package/plugins/copilot-pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +0 -28
- package/plugins/copilot-pbr/skills/discuss/SKILL.md +0 -353
- package/plugins/copilot-pbr/skills/discuss/templates/CONTEXT.md.tmpl +0 -62
- package/plugins/copilot-pbr/skills/discuss/templates/decision-categories.md +0 -10
- package/plugins/copilot-pbr/skills/do/SKILL.md +0 -66
- package/plugins/copilot-pbr/skills/explore/SKILL.md +0 -373
- package/plugins/copilot-pbr/skills/health/SKILL.md +0 -274
- package/plugins/copilot-pbr/skills/health/templates/check-pattern.md.tmpl +0 -31
- package/plugins/copilot-pbr/skills/health/templates/output-format.md.tmpl +0 -64
- package/plugins/copilot-pbr/skills/help/SKILL.md +0 -152
- package/plugins/copilot-pbr/skills/import/SKILL.md +0 -502
- package/plugins/copilot-pbr/skills/milestone/SKILL.md +0 -745
- package/plugins/copilot-pbr/skills/milestone/templates/audit-report.md.tmpl +0 -49
- package/plugins/copilot-pbr/skills/milestone/templates/stats-file.md.tmpl +0 -31
- package/plugins/copilot-pbr/skills/note/SKILL.md +0 -213
- package/plugins/copilot-pbr/skills/pause/SKILL.md +0 -247
- package/plugins/copilot-pbr/skills/pause/templates/continue-here.md.tmpl +0 -72
- package/plugins/copilot-pbr/skills/plan/SKILL.md +0 -662
- package/plugins/copilot-pbr/skills/plan/templates/checker-prompt.md.tmpl +0 -22
- package/plugins/copilot-pbr/skills/plan/templates/gap-closure-prompt.md.tmpl +0 -33
- package/plugins/copilot-pbr/skills/plan/templates/planner-prompt.md.tmpl +0 -39
- package/plugins/copilot-pbr/skills/plan/templates/researcher-prompt.md.tmpl +0 -20
- package/plugins/copilot-pbr/skills/plan/templates/revision-prompt.md.tmpl +0 -24
- package/plugins/copilot-pbr/skills/quick/SKILL.md +0 -376
- package/plugins/copilot-pbr/skills/resume/SKILL.md +0 -399
- package/plugins/copilot-pbr/skills/review/SKILL.md +0 -653
- package/plugins/copilot-pbr/skills/review/templates/debugger-prompt.md.tmpl +0 -61
- package/plugins/copilot-pbr/skills/review/templates/gap-planner-prompt.md.tmpl +0 -41
- package/plugins/copilot-pbr/skills/review/templates/verifier-prompt.md.tmpl +0 -116
- package/plugins/copilot-pbr/skills/scan/SKILL.md +0 -299
- package/plugins/copilot-pbr/skills/scan/templates/mapper-prompt.md.tmpl +0 -202
- package/plugins/copilot-pbr/skills/setup/SKILL.md +0 -296
- package/plugins/copilot-pbr/skills/shared/commit-planning-docs.md +0 -36
- package/plugins/copilot-pbr/skills/shared/config-loading.md +0 -103
- package/plugins/copilot-pbr/skills/shared/context-budget.md +0 -41
- package/plugins/copilot-pbr/skills/shared/context-loader-task.md +0 -87
- package/plugins/copilot-pbr/skills/shared/digest-select.md +0 -80
- package/plugins/copilot-pbr/skills/shared/domain-probes.md +0 -126
- package/plugins/copilot-pbr/skills/shared/error-reporting.md +0 -81
- package/plugins/copilot-pbr/skills/shared/gate-prompts.md +0 -389
- package/plugins/copilot-pbr/skills/shared/phase-argument-parsing.md +0 -46
- package/plugins/copilot-pbr/skills/shared/progress-display.md +0 -53
- package/plugins/copilot-pbr/skills/shared/revision-loop.md +0 -82
- package/plugins/copilot-pbr/skills/shared/state-loading.md +0 -63
- package/plugins/copilot-pbr/skills/shared/state-update.md +0 -162
- package/plugins/copilot-pbr/skills/shared/universal-anti-patterns.md +0 -38
- package/plugins/copilot-pbr/skills/status/SKILL.md +0 -362
- package/plugins/copilot-pbr/skills/statusline/SKILL.md +0 -149
- package/plugins/copilot-pbr/skills/todo/SKILL.md +0 -279
- package/plugins/copilot-pbr/templates/CONTEXT.md.tmpl +0 -53
- package/plugins/copilot-pbr/templates/INTEGRATION-REPORT.md.tmpl +0 -152
- package/plugins/copilot-pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -98
- package/plugins/copilot-pbr/templates/ROADMAP.md.tmpl +0 -41
- package/plugins/copilot-pbr/templates/SUMMARY.md.tmpl +0 -82
- package/plugins/copilot-pbr/templates/VERIFICATION-DETAIL.md.tmpl +0 -117
- package/plugins/copilot-pbr/templates/codebase/ARCHITECTURE.md.tmpl +0 -98
- package/plugins/copilot-pbr/templates/codebase/CONCERNS.md.tmpl +0 -93
- package/plugins/copilot-pbr/templates/codebase/CONVENTIONS.md.tmpl +0 -104
- package/plugins/copilot-pbr/templates/codebase/INTEGRATIONS.md.tmpl +0 -78
- package/plugins/copilot-pbr/templates/codebase/STACK.md.tmpl +0 -78
- package/plugins/copilot-pbr/templates/codebase/STRUCTURE.md.tmpl +0 -80
- package/plugins/copilot-pbr/templates/codebase/TESTING.md.tmpl +0 -107
- package/plugins/copilot-pbr/templates/continue-here.md.tmpl +0 -74
- package/plugins/copilot-pbr/templates/prompt-partials/phase-project-context.md.tmpl +0 -38
- package/plugins/copilot-pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
- package/plugins/copilot-pbr/templates/research/STACK.md.tmpl +0 -71
- package/plugins/copilot-pbr/templates/research/SUMMARY.md.tmpl +0 -112
- package/plugins/copilot-pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
- package/plugins/copilot-pbr/templates/research-outputs/project-research.md.tmpl +0 -99
- package/plugins/copilot-pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
- package/plugins/cursor-pbr/.cursor-plugin/plugin.json +0 -32
- package/plugins/cursor-pbr/CHANGELOG.md +0 -15
- package/plugins/cursor-pbr/README.md +0 -118
- package/plugins/cursor-pbr/agents/codebase-mapper.md +0 -150
- package/plugins/cursor-pbr/agents/debugger.md +0 -171
- package/plugins/cursor-pbr/agents/executor.md +0 -266
- package/plugins/cursor-pbr/agents/general.md +0 -87
- package/plugins/cursor-pbr/agents/integration-checker.md +0 -118
- package/plugins/cursor-pbr/agents/plan-checker.md +0 -198
- package/plugins/cursor-pbr/agents/planner.md +0 -237
- package/plugins/cursor-pbr/agents/researcher.md +0 -185
- package/plugins/cursor-pbr/agents/synthesizer.md +0 -125
- package/plugins/cursor-pbr/agents/verifier.md +0 -227
- package/plugins/cursor-pbr/assets/.gitkeep +0 -0
- package/plugins/cursor-pbr/assets/logo.svg +0 -21
- package/plugins/cursor-pbr/hooks/hooks.json +0 -203
- package/plugins/cursor-pbr/references/agent-anti-patterns.md +0 -25
- package/plugins/cursor-pbr/references/agent-contracts.md +0 -297
- package/plugins/cursor-pbr/references/agent-interactions.md +0 -135
- package/plugins/cursor-pbr/references/agent-teams.md +0 -55
- package/plugins/cursor-pbr/references/checkpoints.md +0 -158
- package/plugins/cursor-pbr/references/common-bug-patterns.md +0 -14
- package/plugins/cursor-pbr/references/config-reference.md +0 -442
- package/plugins/cursor-pbr/references/continuation-format.md +0 -213
- package/plugins/cursor-pbr/references/deviation-rules.md +0 -113
- package/plugins/cursor-pbr/references/git-integration.md +0 -227
- package/plugins/cursor-pbr/references/integration-patterns.md +0 -118
- package/plugins/cursor-pbr/references/model-profiles.md +0 -100
- package/plugins/cursor-pbr/references/model-selection.md +0 -32
- package/plugins/cursor-pbr/references/pbr-rules.md +0 -195
- package/plugins/cursor-pbr/references/pbr-tools-cli.md +0 -285
- package/plugins/cursor-pbr/references/plan-authoring.md +0 -182
- package/plugins/cursor-pbr/references/plan-format.md +0 -288
- package/plugins/cursor-pbr/references/planning-config.md +0 -214
- package/plugins/cursor-pbr/references/questioning.md +0 -215
- package/plugins/cursor-pbr/references/reading-verification.md +0 -128
- package/plugins/cursor-pbr/references/stub-patterns.md +0 -161
- package/plugins/cursor-pbr/references/subagent-coordination.md +0 -120
- package/plugins/cursor-pbr/references/ui-formatting.md +0 -444
- package/plugins/cursor-pbr/references/verification-patterns.md +0 -199
- package/plugins/cursor-pbr/references/wave-execution.md +0 -96
- package/plugins/cursor-pbr/rules/pbr-workflow.mdc +0 -48
- package/plugins/cursor-pbr/setup.ps1 +0 -78
- package/plugins/cursor-pbr/setup.sh +0 -83
- package/plugins/cursor-pbr/skills/begin/SKILL.md +0 -589
- package/plugins/cursor-pbr/skills/begin/templates/PROJECT.md.tmpl +0 -34
- package/plugins/cursor-pbr/skills/begin/templates/REQUIREMENTS.md.tmpl +0 -19
- package/plugins/cursor-pbr/skills/begin/templates/STATE.md.tmpl +0 -50
- package/plugins/cursor-pbr/skills/begin/templates/config.json.tmpl +0 -64
- package/plugins/cursor-pbr/skills/begin/templates/researcher-prompt.md.tmpl +0 -20
- package/plugins/cursor-pbr/skills/begin/templates/roadmap-prompt.md.tmpl +0 -31
- package/plugins/cursor-pbr/skills/begin/templates/synthesis-prompt.md.tmpl +0 -17
- package/plugins/cursor-pbr/skills/build/SKILL.md +0 -956
- package/plugins/cursor-pbr/skills/config/SKILL.md +0 -252
- package/plugins/cursor-pbr/skills/continue/SKILL.md +0 -159
- package/plugins/cursor-pbr/skills/dashboard/SKILL.md +0 -44
- package/plugins/cursor-pbr/skills/debug/SKILL.md +0 -512
- package/plugins/cursor-pbr/skills/debug/templates/continuation-prompt.md.tmpl +0 -17
- package/plugins/cursor-pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +0 -28
- package/plugins/cursor-pbr/skills/discuss/SKILL.md +0 -354
- package/plugins/cursor-pbr/skills/discuss/templates/CONTEXT.md.tmpl +0 -62
- package/plugins/cursor-pbr/skills/discuss/templates/decision-categories.md +0 -10
- package/plugins/cursor-pbr/skills/do/SKILL.md +0 -67
- package/plugins/cursor-pbr/skills/explore/SKILL.md +0 -376
- package/plugins/cursor-pbr/skills/health/SKILL.md +0 -274
- package/plugins/cursor-pbr/skills/health/templates/check-pattern.md.tmpl +0 -31
- package/plugins/cursor-pbr/skills/health/templates/output-format.md.tmpl +0 -64
- package/plugins/cursor-pbr/skills/help/SKILL.md +0 -152
- package/plugins/cursor-pbr/skills/import/SKILL.md +0 -505
- package/plugins/cursor-pbr/skills/milestone/SKILL.md +0 -746
- package/plugins/cursor-pbr/skills/milestone/templates/audit-report.md.tmpl +0 -49
- package/plugins/cursor-pbr/skills/milestone/templates/stats-file.md.tmpl +0 -31
- package/plugins/cursor-pbr/skills/note/SKILL.md +0 -214
- package/plugins/cursor-pbr/skills/pause/SKILL.md +0 -248
- package/plugins/cursor-pbr/skills/pause/templates/continue-here.md.tmpl +0 -72
- package/plugins/cursor-pbr/skills/plan/SKILL.md +0 -663
- package/plugins/cursor-pbr/skills/plan/templates/checker-prompt.md.tmpl +0 -22
- package/plugins/cursor-pbr/skills/plan/templates/gap-closure-prompt.md.tmpl +0 -33
- package/plugins/cursor-pbr/skills/plan/templates/planner-prompt.md.tmpl +0 -39
- package/plugins/cursor-pbr/skills/plan/templates/researcher-prompt.md.tmpl +0 -20
- package/plugins/cursor-pbr/skills/plan/templates/revision-prompt.md.tmpl +0 -24
- package/plugins/cursor-pbr/skills/quick/SKILL.md +0 -376
- package/plugins/cursor-pbr/skills/resume/SKILL.md +0 -399
- package/plugins/cursor-pbr/skills/review/SKILL.md +0 -654
- package/plugins/cursor-pbr/skills/review/templates/debugger-prompt.md.tmpl +0 -61
- package/plugins/cursor-pbr/skills/review/templates/gap-planner-prompt.md.tmpl +0 -41
- package/plugins/cursor-pbr/skills/review/templates/verifier-prompt.md.tmpl +0 -116
- package/plugins/cursor-pbr/skills/scan/SKILL.md +0 -300
- package/plugins/cursor-pbr/skills/scan/templates/mapper-prompt.md.tmpl +0 -202
- package/plugins/cursor-pbr/skills/setup/SKILL.md +0 -296
- package/plugins/cursor-pbr/skills/shared/commit-planning-docs.md +0 -36
- package/plugins/cursor-pbr/skills/shared/config-loading.md +0 -103
- package/plugins/cursor-pbr/skills/shared/context-budget.md +0 -41
- package/plugins/cursor-pbr/skills/shared/context-loader-task.md +0 -87
- package/plugins/cursor-pbr/skills/shared/digest-select.md +0 -80
- package/plugins/cursor-pbr/skills/shared/domain-probes.md +0 -126
- package/plugins/cursor-pbr/skills/shared/error-reporting.md +0 -81
- package/plugins/cursor-pbr/skills/shared/gate-prompts.md +0 -389
- package/plugins/cursor-pbr/skills/shared/phase-argument-parsing.md +0 -46
- package/plugins/cursor-pbr/skills/shared/progress-display.md +0 -53
- package/plugins/cursor-pbr/skills/shared/revision-loop.md +0 -82
- package/plugins/cursor-pbr/skills/shared/state-loading.md +0 -63
- package/plugins/cursor-pbr/skills/shared/state-update.md +0 -162
- package/plugins/cursor-pbr/skills/shared/universal-anti-patterns.md +0 -38
- package/plugins/cursor-pbr/skills/status/SKILL.md +0 -362
- package/plugins/cursor-pbr/skills/statusline/SKILL.md +0 -150
- package/plugins/cursor-pbr/skills/todo/SKILL.md +0 -280
- package/plugins/cursor-pbr/templates/CONTEXT.md.tmpl +0 -53
- package/plugins/cursor-pbr/templates/INTEGRATION-REPORT.md.tmpl +0 -152
- package/plugins/cursor-pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -98
- package/plugins/cursor-pbr/templates/ROADMAP.md.tmpl +0 -41
- package/plugins/cursor-pbr/templates/SUMMARY.md.tmpl +0 -82
- package/plugins/cursor-pbr/templates/VERIFICATION-DETAIL.md.tmpl +0 -117
- package/plugins/cursor-pbr/templates/codebase/ARCHITECTURE.md.tmpl +0 -98
- package/plugins/cursor-pbr/templates/codebase/CONCERNS.md.tmpl +0 -93
- package/plugins/cursor-pbr/templates/codebase/CONVENTIONS.md.tmpl +0 -104
- package/plugins/cursor-pbr/templates/codebase/INTEGRATIONS.md.tmpl +0 -78
- package/plugins/cursor-pbr/templates/codebase/STACK.md.tmpl +0 -78
- package/plugins/cursor-pbr/templates/codebase/STRUCTURE.md.tmpl +0 -80
- package/plugins/cursor-pbr/templates/codebase/TESTING.md.tmpl +0 -107
- package/plugins/cursor-pbr/templates/continue-here.md.tmpl +0 -74
- package/plugins/cursor-pbr/templates/prompt-partials/phase-project-context.md.tmpl +0 -38
- package/plugins/cursor-pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
- package/plugins/cursor-pbr/templates/research/STACK.md.tmpl +0 -71
- package/plugins/cursor-pbr/templates/research/SUMMARY.md.tmpl +0 -112
- package/plugins/cursor-pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
- package/plugins/cursor-pbr/templates/research-outputs/project-research.md.tmpl +0 -99
- package/plugins/cursor-pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
- package/plugins/pbr/references/agent-interactions.md +0 -134
- package/plugins/pbr/references/checkpoints.md +0 -157
- package/plugins/pbr/references/pbr-rules.md +0 -194
- package/plugins/pbr/references/planning-config.md +0 -213
- package/plugins/pbr/references/subagent-coordination.md +0 -119
- package/plugins/pbr/references/ui-formatting.md +0 -444
- package/plugins/pbr/references/verification-patterns.md +0 -198
- package/plugins/pbr/scripts/validate-plugin-structure.js +0 -183
- package/plugins/pbr/skills/milestone/templates/audit-report.md.tmpl +0 -48
- package/plugins/pbr/skills/shared/progress-display.md +0 -53
- package/plugins/pbr/skills/shared/state-loading.md +0 -62
- package/plugins/pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -97
- package/plugins/pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
- package/plugins/pbr/templates/research/STACK.md.tmpl +0 -71
- package/plugins/pbr/templates/research/SUMMARY.md.tmpl +0 -112
- package/plugins/pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
- package/plugins/pbr/templates/research-outputs/project-research.md.tmpl +0 -99
- package/plugins/pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
- /package/plugins/pbr/references/{agent-anti-patterns.md → archive/agent-anti-patterns.md} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,276 +2,1158 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Plan-Build-Run will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
## [11.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v9.0...plan-build-run-v11.0) — 2026-03-19
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
### CLI Tools
|
|
9
8
|
|
|
9
|
+
* Wire incidents subcommand into pbr-tools.cjs dispatcher ([c12f3719](https://github.com/SienkLogic/plan-build-run/commit/c12f3719))
|
|
10
|
+
* Create incidents.cjs library with record/list/query/summary operations ([2c63e7d6](https://github.com/SienkLogic/plan-build-run/commit/2c63e7d6))
|
|
11
|
+
* Harden roadmap.cjs for v9+ 3-column progress table format ([2bb9aa31](https://github.com/SienkLogic/plan-build-run/commit/2bb9aa31))
|
|
12
|
+
* Add state reconcile command to re-derive phase counts from ROADMAP.md ([ba0187ed](https://github.com/SienkLogic/plan-build-run/commit/ba0187ed))
|
|
10
13
|
|
|
11
|
-
###
|
|
14
|
+
### Configuration
|
|
12
15
|
|
|
13
|
-
*
|
|
14
|
-
* **06-02:** add CRITICAL markers to file-creation steps in begin, build, milestone, setup, pause ([edd9322](https://github.com/SienkLogic/plan-build-run/commit/edd932287bfeb390aa67aee0cb17b44c886339d2))
|
|
15
|
-
* **07-01:** add Write tool to verifier/integration-checker and update prose across all plugins ([20bcd55](https://github.com/SienkLogic/plan-build-run/commit/20bcd550cb3c01312c805c543e01e72a7dd8dd88))
|
|
16
|
-
* **07-01:** register missing skills in check-skill-workflow.js switch statement ([26c4264](https://github.com/SienkLogic/plan-build-run/commit/26c42640f199eae7de4570cb0fcb8fdab514cc64))
|
|
17
|
-
* **07-02:** add debugger advisory gate and milestone gaps_found status check ([d999fe0](https://github.com/SienkLogic/plan-build-run/commit/d999fe0cf65febf877c731d983edb49e1cfa3dc7))
|
|
18
|
-
* **07-02:** add mtime-based recency checks for researcher and synthesizer output ([4581529](https://github.com/SienkLogic/plan-build-run/commit/45815292c8e1604d2b5307092b2b2d6fdb3c2eec))
|
|
19
|
-
* **08-01:** add inline fallback formats to 7 template-dependent agents ([e383118](https://github.com/SienkLogic/plan-build-run/commit/e3831187a35e0bf2924f0e156971b530d71dada3))
|
|
20
|
-
* **08-02:** add CRITICAL markers and fix agent handoff issues ([a921c29](https://github.com/SienkLogic/plan-build-run/commit/a921c29005b232aa662ee7364f19154f103c827f))
|
|
21
|
-
* **09-01:** add gate error fix guidance and discuss deep-dive CRITICAL enforcement ([6257ac5](https://github.com/SienkLogic/plan-build-run/commit/6257ac5bb69c04078fc1fd845049900274e4079c))
|
|
22
|
-
* **09-01:** add health auto-fix for common corruption patterns ([6209e20](https://github.com/SienkLogic/plan-build-run/commit/6209e2012ec972ae351bd967cd1fa1087b767474))
|
|
23
|
-
* **09-01:** add rollback safety, setup idempotency, and todo archive safety ([8106793](https://github.com/SienkLogic/plan-build-run/commit/8106793c6dc728a58c8be6a5f1ccaffc9cef83a6))
|
|
24
|
-
* **09-02:** rewrite ui-formatting.md with unified double-line box format ([1030f30](https://github.com/SienkLogic/plan-build-run/commit/1030f3078d171f200d1d85a29481deb65f927875))
|
|
25
|
-
* **09-02:** update error-reporting fragment with block reason guidance ([55780b2](https://github.com/SienkLogic/plan-build-run/commit/55780b2b54725b8d503e0b46291c80fe5a92219b))
|
|
26
|
-
* **09-03:** replace heavy bar and thin divider banners with double-line box format in all 24 skills ([1754b2b](https://github.com/SienkLogic/plan-build-run/commit/1754b2bc8dbb625c48ef618036eef3bda06f6380))
|
|
27
|
-
* **09-03:** sync banner replacements and 09-01/09-02 changes to cursor-pbr and copilot-pbr ([4b01088](https://github.com/SienkLogic/plan-build-run/commit/4b010881e275b10ed8ebcace60e74535e66f8d49))
|
|
28
|
-
* **09-04:** replace Next Up headings with double-line box format in all PBR skills ([8f34dbc](https://github.com/SienkLogic/plan-build-run/commit/8f34dbc157a67a353e3b4c977249aac667838f32))
|
|
29
|
-
* **09-04:** sync Next Up box format to cursor-pbr and copilot-pbr derivatives ([a819e95](https://github.com/SienkLogic/plan-build-run/commit/a819e952483fb348a8c64c27abe59f80590ad712))
|
|
30
|
-
* **tools:** add state-sync plans_total fix, anti-pattern rule for Skill-in-Task, and social images ([afdc5f2](https://github.com/SienkLogic/plan-build-run/commit/afdc5f2d10c9cae77e2382332e9243a238c1f54e))
|
|
16
|
+
* Restore .planning/ to gitignore ([40d0ba66](https://github.com/SienkLogic/plan-build-run/commit/40d0ba66))
|
|
31
17
|
|
|
18
|
+
### Hooks
|
|
32
19
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
20
|
+
* Close v11.0 audit gaps — incident_journal config default, test-cache relocation, checkpoint_auto_resolve wiring, notification throttling ([1f97bfff](https://github.com/SienkLogic/plan-build-run/commit/1f97bfff))
|
|
21
|
+
* Wire incident recording into pre-bash-dispatch, post-write-dispatch, and log-tool-failure ([3c15879d](https://github.com/SienkLogic/plan-build-run/commit/3c15879d))
|
|
22
|
+
* Add record-incident.js shared hook helper for incident journal ([6b51bda6](https://github.com/SienkLogic/plan-build-run/commit/6b51bda6))
|
|
23
|
+
* Add test result cache module with 60s TTL ([4058838d](https://github.com/SienkLogic/plan-build-run/commit/4058838d))
|
|
24
|
+
* Add autonomous.max_retries and autonomous.error_strategy to CONFIG_DEFAULTS ([e0a85ee2](https://github.com/SienkLogic/plan-build-run/commit/e0a85ee2))
|
|
25
|
+
* Update build-dependency gate to skip speculative dependency phases ([01c3a7f0](https://github.com/SienkLogic/plan-build-run/commit/01c3a7f0))
|
|
26
|
+
* Add isPlanSpeculative helper and update build-executor gate for speculative/empty dirs ([ea587513](https://github.com/SienkLogic/plan-build-run/commit/ea587513))
|
|
27
|
+
* Wire checkDirectStateWrite into post-write-dispatch.js ([31b19276](https://github.com/SienkLogic/plan-build-run/commit/31b19276))
|
|
28
|
+
* Add checkDirectStateWrite advisory hook for STATE.md and ROADMAP.md bypass detection ([704b92cc](https://github.com/SienkLogic/plan-build-run/commit/704b92cc))
|
|
29
|
+
* Wire session_id into log-subagent.js logHook and logEvent calls ([f3261cdf](https://github.com/SienkLogic/plan-build-run/commit/f3261cdf))
|
|
30
|
+
* Add .context-tracker and .active-agent cleanup to session-cleanup.js ([2b72a80e](https://github.com/SienkLogic/plan-build-run/commit/2b72a80e))
|
|
31
|
+
* Update .active-agent readers for session-scoped path with global fallback ([bfa38392](https://github.com/SienkLogic/plan-build-run/commit/bfa38392))
|
|
32
|
+
* Add session_id support to logHook() and logEvent() for multi-session debugging ([a947b868](https://github.com/SienkLogic/plan-build-run/commit/a947b868))
|
|
33
|
+
* Session-scope .active-agent writes in log-subagent.js ([3e569968](https://github.com/SienkLogic/plan-build-run/commit/3e569968))
|
|
34
|
+
* Make stateAdvancePlan() atomic with single lockedFileUpdate call ([545f7aad](https://github.com/SienkLogic/plan-build-run/commit/545f7aad))
|
|
35
|
+
* Wrap configWrite() with lockedFileUpdate for crash-safe concurrent writes ([4611cbaf](https://github.com/SienkLogic/plan-build-run/commit/4611cbaf))
|
|
36
|
+
* IH-09 dispatch chain uses kebab-case script names from hook logs ([226c3935](https://github.com/SienkLogic/plan-build-run/commit/226c3935))
|
|
37
|
+
|
|
38
|
+
### Skills
|
|
39
|
+
|
|
40
|
+
* Wire test result caching into autonomous Step 3d verification ([04690e88](https://github.com/SienkLogic/plan-build-run/commit/04690e88))
|
|
41
|
+
* Add autonomous state detection to resume skill ([33505ee8](https://github.com/SienkLogic/plan-build-run/commit/33505ee8))
|
|
42
|
+
* Add git branch creation to autonomous Step 3e and expand .autonomous-state.json schema ([bc7f9b0c](https://github.com/SienkLogic/plan-build-run/commit/bc7f9b0c))
|
|
43
|
+
* Add discuss auto-skip and error metrics to autonomous state schema ([83e1bfc5](https://github.com/SienkLogic/plan-build-run/commit/83e1bfc5))
|
|
44
|
+
* Add error classification and graduated retry loop to autonomous Step 3c ([14a12c7c](https://github.com/SienkLogic/plan-build-run/commit/14a12c7c))
|
|
45
|
+
* Pass --speculative flag in autonomous skill speculative Task() prompt ([1502ebd5](https://github.com/SienkLogic/plan-build-run/commit/1502ebd5))
|
|
46
|
+
* Add checkpoint manifest re-init after speculative plan swap in autonomous mode ([b08ee23e](https://github.com/SienkLogic/plan-build-run/commit/b08ee23e))
|
|
47
|
+
* Add --speculative flag guards to plan skill .active-skill and STATE.md writes ([9c40acb2](https://github.com/SienkLogic/plan-build-run/commit/9c40acb2))
|
|
48
|
+
* Sync plan-build-run/ copies of modified SKILL.md files ([94b6e35c](https://github.com/SienkLogic/plan-build-run/commit/94b6e35c))
|
|
49
|
+
* Add state reconcile step to milestone post-archival cleanup ([09b13ca9](https://github.com/SienkLogic/plan-build-run/commit/09b13ca9))
|
|
50
|
+
* Update help with 9 missing skills and fix AGENT_TO_SKILL wiring ([b38ad2f3](https://github.com/SienkLogic/plan-build-run/commit/b38ad2f3))
|
|
51
|
+
* Correct MILESTONE-AUDIT template path in milestone skill ([63eebda7](https://github.com/SienkLogic/plan-build-run/commit/63eebda7))
|
|
52
|
+
|
|
53
|
+
### Testing
|
|
54
|
+
|
|
55
|
+
* Update gate tests for speculative planning (empty dirs now allowed) ([930a82c8](https://github.com/SienkLogic/plan-build-run/commit/930a82c8))
|
|
56
|
+
* IH-10 excludes test-sourced entries from source tag analysis ([747cf848](https://github.com/SienkLogic/plan-build-run/commit/747cf848))
|
|
57
|
+
* EF-01 single-source counting with rate cap, EF-05 test entry filter ([56a66e08](https://github.com/SienkLogic/plan-build-run/commit/56a66e08))
|
|
58
|
+
|
|
59
|
+
### Other
|
|
60
|
+
|
|
61
|
+
* Add null config guards to FV-05 and FV-06 feature verification checks ([8ac294b3](https://github.com/SienkLogic/plan-build-run/commit/8ac294b3))
|
|
62
|
+
* Separate enforcement blocks from tool failures in EF-01 counting ([9c5cdda5](https://github.com/SienkLogic/plan-build-run/commit/9c5cdda5))
|
|
63
|
+
|
|
64
|
+
## [2.12.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.11.0...plan-build-run-v2.12.0) — 2026-03-19
|
|
65
|
+
|
|
66
|
+
### CI/CD
|
|
67
|
+
|
|
68
|
+
* Remove npm run validate from release workflow (script was removed in Phase 32) ([e0378d74](https://github.com/SienkLogic/plan-build-run/commit/e0378d74))
|
|
69
|
+
* Fix MD025 lint error and skip git-dependent tests on Windows ([8e2773e8](https://github.com/SienkLogic/plan-build-run/commit/8e2773e8))
|
|
70
|
+
|
|
71
|
+
### CLI Tools
|
|
72
|
+
|
|
73
|
+
* Wire ci-fix command into pbr-tools.js dispatcher ([36b985cc](https://github.com/SienkLogic/plan-build-run/commit/36b985cc))
|
|
74
|
+
* Add ci-fix-loop module with Jest/ESLint parsing and auto-fix loop ([91de02f8](https://github.com/SienkLogic/plan-build-run/commit/91de02f8))
|
|
75
|
+
* Add auto-cleanup subcommand to pbr-tools.js dispatcher ([5b7ca819](https://github.com/SienkLogic/plan-build-run/commit/5b7ca819))
|
|
76
|
+
* Add auto-cleanup library with matchScore, autoCloseTodos, autoArchiveNotes ([7a57d4bc](https://github.com/SienkLogic/plan-build-run/commit/7a57d4bc))
|
|
77
|
+
* Wire quick-status subcommand into pbr-tools.js dispatcher ([9b3bcaf2](https://github.com/SienkLogic/plan-build-run/commit/9b3bcaf2))
|
|
78
|
+
* Add quick-status.js lightweight status snapshot script ([96cc4772](https://github.com/SienkLogic/plan-build-run/commit/96cc4772))
|
|
79
|
+
* Add idle-state reset to stateReconcile for post-milestone cleanup ([00a46ff8](https://github.com/SienkLogic/plan-build-run/commit/00a46ff8))
|
|
80
|
+
|
|
81
|
+
### Dashboard
|
|
82
|
+
|
|
83
|
+
* Wire --stop flag into CLI ([a94b5789](https://github.com/SienkLogic/plan-build-run/commit/a94b5789))
|
|
84
|
+
* Add cross-platform stopDashboard module ([4a86464e](https://github.com/SienkLogic/plan-build-run/commit/4a86464e))
|
|
85
|
+
|
|
86
|
+
### Hooks
|
|
87
|
+
|
|
88
|
+
* Wire pre-commit quality checks into bash dispatch pipeline ([329d3c60](https://github.com/SienkLogic/plan-build-run/commit/329d3c60))
|
|
89
|
+
* Add pre-commit quality gate check functions ([d0609851](https://github.com/SienkLogic/plan-build-run/commit/d0609851))
|
|
90
|
+
* Add session-cleanup to DIRECT_FALLBACK_SCRIPTS in hook-server-client.js ([245aec35](https://github.com/SienkLogic/plan-build-run/commit/245aec35))
|
|
91
|
+
* Add .context-tracker removal to session-cleanup.js ([286e4f2c](https://github.com/SienkLogic/plan-build-run/commit/286e4f2c))
|
|
92
|
+
* Wire notification throttle into hook-server.js response path ([950ef737](https://github.com/SienkLogic/plan-build-run/commit/950ef737))
|
|
93
|
+
* Wire notification throttle into log-notification.js ([3c2cd558](https://github.com/SienkLogic/plan-build-run/commit/3c2cd558))
|
|
94
|
+
* Add notification throttle module with time-window deduplication ([a6641c80](https://github.com/SienkLogic/plan-build-run/commit/a6641c80))
|
|
95
|
+
* Ensure logHook source field cannot be overridden by details spread ([7a50b8e9](https://github.com/SienkLogic/plan-build-run/commit/7a50b8e9))
|
|
96
|
+
* Add MSYS path bridging for PBR_PROJECT_ROOT in pbr-tools.js and run-hook.js ([9019f0ae](https://github.com/SienkLogic/plan-build-run/commit/9019f0ae))
|
|
97
|
+
* Rename ambiguous duration_ms to agent_duration_ms in task-completed logs ([386a119a](https://github.com/SienkLogic/plan-build-run/commit/386a119a))
|
|
98
|
+
* Downgrade check-plan-format blocks to warnings for Write tool operations ([18912b3d](https://github.com/SienkLogic/plan-build-run/commit/18912b3d))
|
|
99
|
+
|
|
100
|
+
### Plugin
|
|
101
|
+
|
|
102
|
+
* Fix comma-separated allowed-tools and remove stale duplicate ([ec808e71](https://github.com/SienkLogic/plan-build-run/commit/ec808e71))
|
|
103
|
+
|
|
104
|
+
## [2.11.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.10.0...plan-build-run-v2.11.0) — 2026-03-19
|
|
105
|
+
|
|
106
|
+
### Agents
|
|
107
|
+
|
|
108
|
+
* Add count-accuracy note to intel-updater for Glob-derived component counts ([497afa70](https://github.com/SienkLogic/plan-build-run/commit/497afa70))
|
|
109
|
+
|
|
110
|
+
### CLI Tools
|
|
111
|
+
|
|
112
|
+
* Fix release script Windows compatibility (head -1, /dev/null) ([bbded916](https://github.com/SienkLogic/plan-build-run/commit/bbded916))
|
|
113
|
+
* Wire incidents subcommand into pbr-tools.cjs dispatcher ([c12f3719](https://github.com/SienkLogic/plan-build-run/commit/c12f3719))
|
|
114
|
+
* Create incidents.cjs library with record/list/query/summary operations ([2c63e7d6](https://github.com/SienkLogic/plan-build-run/commit/2c63e7d6))
|
|
115
|
+
* Harden roadmap.cjs for v9+ 3-column progress table format ([2bb9aa31](https://github.com/SienkLogic/plan-build-run/commit/2bb9aa31))
|
|
116
|
+
* Add state reconcile command to re-derive phase counts from ROADMAP.md ([ba0187ed](https://github.com/SienkLogic/plan-build-run/commit/ba0187ed))
|
|
117
|
+
|
|
118
|
+
### Hooks
|
|
119
|
+
|
|
120
|
+
* Fix module paths and hook names after Phase 14 refactoring ([d71b5126](https://github.com/SienkLogic/plan-build-run/commit/d71b5126))
|
|
121
|
+
* Sync check-subagent-output.js from plugins/pbr/scripts/ copy ([39bcf1b5](https://github.com/SienkLogic/plan-build-run/commit/39bcf1b5))
|
|
122
|
+
* Add source field to logHook entries for audit traceability ([ad4e243a](https://github.com/SienkLogic/plan-build-run/commit/ad4e243a))
|
|
123
|
+
* Update skill count assertion to 37 for new validate skill ([a170b001](https://github.com/SienkLogic/plan-build-run/commit/a170b001))
|
|
124
|
+
* Replace nyquist-auditor no-op stub with VALIDATION.md check ([7f4a7822](https://github.com/SienkLogic/plan-build-run/commit/7f4a7822))
|
|
125
|
+
* Close v11.0 audit gaps — incident_journal config default, test-cache relocation, checkpoint_auto_resolve wiring, notification throttling ([1f97bfff](https://github.com/SienkLogic/plan-build-run/commit/1f97bfff))
|
|
126
|
+
* Wire incident recording into pre-bash-dispatch, post-write-dispatch, and log-tool-failure ([3c15879d](https://github.com/SienkLogic/plan-build-run/commit/3c15879d))
|
|
127
|
+
* Add record-incident.js shared hook helper for incident journal ([6b51bda6](https://github.com/SienkLogic/plan-build-run/commit/6b51bda6))
|
|
128
|
+
* Add test result cache module with 60s TTL ([4058838d](https://github.com/SienkLogic/plan-build-run/commit/4058838d))
|
|
129
|
+
* Add autonomous.max_retries and autonomous.error_strategy to CONFIG_DEFAULTS ([e0a85ee2](https://github.com/SienkLogic/plan-build-run/commit/e0a85ee2))
|
|
130
|
+
* Update build-dependency gate to skip speculative dependency phases ([01c3a7f0](https://github.com/SienkLogic/plan-build-run/commit/01c3a7f0))
|
|
131
|
+
* Add isPlanSpeculative helper and update build-executor gate for speculative/empty dirs ([ea587513](https://github.com/SienkLogic/plan-build-run/commit/ea587513))
|
|
132
|
+
* Wire checkDirectStateWrite into post-write-dispatch.js ([31b19276](https://github.com/SienkLogic/plan-build-run/commit/31b19276))
|
|
133
|
+
* Add checkDirectStateWrite advisory hook for STATE.md and ROADMAP.md bypass detection ([704b92cc](https://github.com/SienkLogic/plan-build-run/commit/704b92cc))
|
|
134
|
+
* Wire session_id into log-subagent.js logHook and logEvent calls ([f3261cdf](https://github.com/SienkLogic/plan-build-run/commit/f3261cdf))
|
|
135
|
+
* Add .context-tracker and .active-agent cleanup to session-cleanup.js ([2b72a80e](https://github.com/SienkLogic/plan-build-run/commit/2b72a80e))
|
|
136
|
+
* Update .active-agent readers for session-scoped path with global fallback ([bfa38392](https://github.com/SienkLogic/plan-build-run/commit/bfa38392))
|
|
137
|
+
* Add session_id support to logHook() and logEvent() for multi-session debugging ([a947b868](https://github.com/SienkLogic/plan-build-run/commit/a947b868))
|
|
138
|
+
* Session-scope .active-agent writes in log-subagent.js ([3e569968](https://github.com/SienkLogic/plan-build-run/commit/3e569968))
|
|
139
|
+
* Make stateAdvancePlan() atomic with single lockedFileUpdate call ([545f7aad](https://github.com/SienkLogic/plan-build-run/commit/545f7aad))
|
|
140
|
+
* Wrap configWrite() with lockedFileUpdate for crash-safe concurrent writes ([4611cbaf](https://github.com/SienkLogic/plan-build-run/commit/4611cbaf))
|
|
141
|
+
* IH-09 dispatch chain uses kebab-case script names from hook logs ([226c3935](https://github.com/SienkLogic/plan-build-run/commit/226c3935))
|
|
142
|
+
|
|
143
|
+
### Plugin
|
|
144
|
+
|
|
145
|
+
* Add validate-phase command registration ([d8dedd35](https://github.com/SienkLogic/plan-build-run/commit/d8dedd35))
|
|
146
|
+
|
|
147
|
+
### Skills
|
|
148
|
+
|
|
149
|
+
* Add MILESTONE.md auto-generation to milestone new and autonomous skills ([99e0c4e4](https://github.com/SienkLogic/plan-build-run/commit/99e0c4e4))
|
|
150
|
+
* Sync plan-build-run/ copies after Phase 29 CRITICAL marker pass ([33af4964](https://github.com/SienkLogic/plan-build-run/commit/33af4964))
|
|
151
|
+
* Consolidate pre-build dependency checking in build Step 1 ([a34aba4a](https://github.com/SienkLogic/plan-build-run/commit/a34aba4a))
|
|
152
|
+
* Add NEXT UP routing block to ship skill ([638ee6ac](https://github.com/SienkLogic/plan-build-run/commit/638ee6ac))
|
|
153
|
+
* Add /pbr:intel to scan and begin NEXT UP routing blocks ([0feb2739](https://github.com/SienkLogic/plan-build-run/commit/0feb2739))
|
|
154
|
+
* Add /pbr:autonomous suggestion to status routing when 2+ phases pending ([0d469d2b](https://github.com/SienkLogic/plan-build-run/commit/0d469d2b))
|
|
155
|
+
* Add /pbr:release suggestion to milestone complete NEXT UP block ([fe52ebfd](https://github.com/SienkLogic/plan-build-run/commit/fe52ebfd))
|
|
156
|
+
* Add /pbr:test advisory suggestion to continue built-status routing ([9075fe10](https://github.com/SienkLogic/plan-build-run/commit/9075fe10))
|
|
157
|
+
* Add /pbr:ship and /pbr:ui-review conditional suggestions to build NEXT UP ([672b65b1](https://github.com/SienkLogic/plan-build-run/commit/672b65b1))
|
|
158
|
+
* Wire roadmapper agent into begin skill Step 8 ([27f186ec](https://github.com/SienkLogic/plan-build-run/commit/27f186ec))
|
|
159
|
+
* Sync plan-build-run/ copies after Phase 26 quality gate wiring ([0b7fc4df](https://github.com/SienkLogic/plan-build-run/commit/0b7fc4df))
|
|
160
|
+
* Add validate-phase routing to build skill NEXT UP block ([db90ce36](https://github.com/SienkLogic/plan-build-run/commit/db90ce36))
|
|
161
|
+
* Add validate-phase NL routing and static fallback to do skill ([349f33e5](https://github.com/SienkLogic/plan-build-run/commit/349f33e5))
|
|
162
|
+
* Route built status to validate-phase in status skill ([66f22428](https://github.com/SienkLogic/plan-build-run/commit/66f22428))
|
|
163
|
+
* Insert validate-phase step 3d-pre into autonomous skill ([2a8ffa05](https://github.com/SienkLogic/plan-build-run/commit/2a8ffa05))
|
|
164
|
+
* Add validate-phase suggestion to test NEXT UP and config toggle ([c57749b6](https://github.com/SienkLogic/plan-build-run/commit/c57749b6))
|
|
165
|
+
* Route built status to validate-phase in continue skill ([83da9172](https://github.com/SienkLogic/plan-build-run/commit/83da9172))
|
|
166
|
+
* Fix validate-phase skill directory naming and sync, update test counts ([817b62a5](https://github.com/SienkLogic/plan-build-run/commit/817b62a5))
|
|
167
|
+
* Create /pbr:validate-phase skill with nyquist-auditor integration ([886a5fbe](https://github.com/SienkLogic/plan-build-run/commit/886a5fbe))
|
|
168
|
+
* Wire test result caching into autonomous Step 3d verification ([04690e88](https://github.com/SienkLogic/plan-build-run/commit/04690e88))
|
|
169
|
+
* Add autonomous state detection to resume skill ([33505ee8](https://github.com/SienkLogic/plan-build-run/commit/33505ee8))
|
|
170
|
+
* Add git branch creation to autonomous Step 3e and expand .autonomous-state.json schema ([bc7f9b0c](https://github.com/SienkLogic/plan-build-run/commit/bc7f9b0c))
|
|
171
|
+
* Add discuss auto-skip and error metrics to autonomous state schema ([83e1bfc5](https://github.com/SienkLogic/plan-build-run/commit/83e1bfc5))
|
|
172
|
+
* Add error classification and graduated retry loop to autonomous Step 3c ([14a12c7c](https://github.com/SienkLogic/plan-build-run/commit/14a12c7c))
|
|
173
|
+
* Pass --speculative flag in autonomous skill speculative Task() prompt ([1502ebd5](https://github.com/SienkLogic/plan-build-run/commit/1502ebd5))
|
|
174
|
+
* Add checkpoint manifest re-init after speculative plan swap in autonomous mode ([b08ee23e](https://github.com/SienkLogic/plan-build-run/commit/b08ee23e))
|
|
175
|
+
* Add --speculative flag guards to plan skill .active-skill and STATE.md writes ([9c40acb2](https://github.com/SienkLogic/plan-build-run/commit/9c40acb2))
|
|
176
|
+
* Sync plan-build-run/ copies of modified SKILL.md files ([94b6e35c](https://github.com/SienkLogic/plan-build-run/commit/94b6e35c))
|
|
177
|
+
* Add state reconcile step to milestone post-archival cleanup ([09b13ca9](https://github.com/SienkLogic/plan-build-run/commit/09b13ca9))
|
|
178
|
+
* Update help with 9 missing skills and fix AGENT_TO_SKILL wiring ([b38ad2f3](https://github.com/SienkLogic/plan-build-run/commit/b38ad2f3))
|
|
179
|
+
* Correct MILESTONE-AUDIT template path in milestone skill ([63eebda7](https://github.com/SienkLogic/plan-build-run/commit/63eebda7))
|
|
180
|
+
|
|
181
|
+
### Testing
|
|
182
|
+
|
|
183
|
+
* Mock child_process.spawn in dashboard-launch test to prevent orphaned processes in CI ([78817954](https://github.com/SienkLogic/plan-build-run/commit/78817954))
|
|
184
|
+
* Mock net.createConnection in dashboard-launch test for CI compatibility ([09ed381a](https://github.com/SienkLogic/plan-build-run/commit/09ed381a))
|
|
185
|
+
* Avoid network call in dashboard-launch test for CI compatibility ([15bc04f8](https://github.com/SienkLogic/plan-build-run/commit/15bc04f8))
|
|
186
|
+
* Fix lint errors in new test files (duplicate keys, empty blocks) ([13506354](https://github.com/SienkLogic/plan-build-run/commit/13506354))
|
|
187
|
+
* Update gate tests for speculative planning (empty dirs now allowed) ([930a82c8](https://github.com/SienkLogic/plan-build-run/commit/930a82c8))
|
|
188
|
+
* IH-10 excludes test-sourced entries from source tag analysis ([747cf848](https://github.com/SienkLogic/plan-build-run/commit/747cf848))
|
|
189
|
+
* EF-01 single-source counting with rate cap, EF-05 test entry filter ([56a66e08](https://github.com/SienkLogic/plan-build-run/commit/56a66e08))
|
|
190
|
+
|
|
191
|
+
### Other
|
|
192
|
+
|
|
193
|
+
* Add null config guards to FV-05 and FV-06 feature verification checks ([8ac294b3](https://github.com/SienkLogic/plan-build-run/commit/8ac294b3))
|
|
194
|
+
* Separate enforcement blocks from tool failures in EF-01 counting ([9c5cdda5](https://github.com/SienkLogic/plan-build-run/commit/9c5cdda5))
|
|
195
|
+
|
|
196
|
+
## [2.10.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.9.0...plan-build-run-v2.10.0) — 2026-03-18
|
|
197
|
+
|
|
198
|
+
### Agents
|
|
199
|
+
|
|
200
|
+
* Upgrade audit agent with dimension categories and per-dimension scoring ([5a886ac8](https://github.com/SienkLogic/plan-build-run/commit/5a886ac8))
|
|
201
|
+
* Implement EF-02 agent failure/timeout detection ([56f51d27](https://github.com/SienkLogic/plan-build-run/commit/56f51d27))
|
|
202
|
+
* Add SI-04 agent type refs and SI-05 completion marker contract checks with proximity heuristic ([e82eeef7](https://github.com/SienkLogic/plan-build-run/commit/e82eeef7))
|
|
203
|
+
|
|
204
|
+
### CI/CD
|
|
205
|
+
|
|
206
|
+
* Add BC-09 enforce-PBR-workflow advisory tracking check ([824bbc1a](https://github.com/SienkLogic/plan-build-run/commit/824bbc1a))
|
|
207
|
+
* Add CI verification and compaction quality checks (WC-01, WC-07) ([4a904e9f](https://github.com/SienkLogic/plan-build-run/commit/4a904e9f))
|
|
208
|
+
* Add ci section, git.auto_pr, and expand status_line.sections enum to 8 values ([6ba1b9e4](https://github.com/SienkLogic/plan-build-run/commit/6ba1b9e4))
|
|
209
|
+
|
|
210
|
+
### CLI Tools
|
|
211
|
+
|
|
212
|
+
* Add STATE.md integrity and frontmatter checks (WC-02, WC-03) ([8040edd0](https://github.com/SienkLogic/plan-build-run/commit/8040edd0))
|
|
213
|
+
|
|
214
|
+
### Configuration
|
|
215
|
+
|
|
216
|
+
* Restore .planning/ to gitignore ([40d0ba66](https://github.com/SienkLogic/plan-build-run/commit/40d0ba66))
|
|
217
|
+
* Sync config-schema.json copies and autonomous skill after speculative planner changes ([ed74d7c6](https://github.com/SienkLogic/plan-build-run/commit/ed74d7c6))
|
|
218
|
+
* Add speculative_depth property to config schema and config.json ([12ca6a9a](https://github.com/SienkLogic/plan-build-run/commit/12ca6a9a))
|
|
219
|
+
* Add audit section to config-schema.json and sync to bin copy ([648c7cb2](https://github.com/SienkLogic/plan-build-run/commit/648c7cb2))
|
|
220
|
+
* Lower global coverage thresholds to match actual after status-line additions ([c6af4520](https://github.com/SienkLogic/plan-build-run/commit/c6af4520))
|
|
221
|
+
|
|
222
|
+
### Context Management
|
|
223
|
+
|
|
224
|
+
* Add BC-10 unmanaged commit detection and BC-11 context delegation threshold ([a0f319db](https://github.com/SienkLogic/plan-build-run/commit/a0f319db))
|
|
225
|
+
|
|
226
|
+
### Hooks
|
|
227
|
+
|
|
228
|
+
* Wire all 8 audit category modules into index.js dispatch ([adf7b4b8](https://github.com/SienkLogic/plan-build-run/commit/adf7b4b8))
|
|
229
|
+
* Implement EF-03 hook false positive and EF-04 hook false negative analysis ([15b788b0](https://github.com/SienkLogic/plan-build-run/commit/15b788b0))
|
|
230
|
+
* Add IH-09 dispatch chain, IH-10 log separation, runAllInfraChecks aggregate ([8138be15](https://github.com/SienkLogic/plan-build-run/commit/8138be15))
|
|
231
|
+
* Add IH-03 hook perf, IH-07 log rotation, IH-08 disk usage checks ([8204fb65](https://github.com/SienkLogic/plan-build-run/commit/8204fb65))
|
|
232
|
+
* Add infrastructure check module with hook server and dashboard health checks (IH-01, IH-02) ([d473836f](https://github.com/SienkLogic/plan-build-run/commit/d473836f))
|
|
233
|
+
* Implement agent and hook checks SI-06 through SI-09 ([377d08a7](https://github.com/SienkLogic/plan-build-run/commit/377d08a7))
|
|
234
|
+
* Read coverage from coverage-final.json (33%) instead of stale coverage-summary.json (13%) ([9153cb13](https://github.com/SienkLogic/plan-build-run/commit/9153cb13))
|
|
235
|
+
* Coverage reader prefers bin/lib aggregate (75%) over global total (13%) ([777eeecb](https://github.com/SienkLogic/plan-build-run/commit/777eeecb))
|
|
236
|
+
* Add test/CI writers and fix coverage reader for dev status line ([208bcb69](https://github.com/SienkLogic/plan-build-run/commit/208bcb69))
|
|
237
|
+
* Add dev line to status bar with version, skills, hooks, coverage, tests, CI, todos, quick tasks ([e37a0f7f](https://github.com/SienkLogic/plan-build-run/commit/e37a0f7f))
|
|
238
|
+
* Status line null phases, stale context tier, hook server indicator ([0b91df0b](https://github.com/SienkLogic/plan-build-run/commit/0b91df0b))
|
|
239
|
+
|
|
240
|
+
### Plugin
|
|
241
|
+
|
|
242
|
+
* Fix researcher Write tool, autonomous Task tool, and milestone template path ([fd930215](https://github.com/SienkLogic/plan-build-run/commit/fd930215))
|
|
243
|
+
|
|
244
|
+
### Skills
|
|
245
|
+
|
|
246
|
+
* Upgrade audit skill with programmatic checks, report v2, and verbosity control ([b3945e46](https://github.com/SienkLogic/plan-build-run/commit/b3945e46))
|
|
247
|
+
* Add BC-12 skill self-read prevention detection ([a2b40276](https://github.com/SienkLogic/plan-build-run/commit/a2b40276))
|
|
248
|
+
* Add behavioral-compliance module with JSONL helpers and BC-01 skill sequence check ([b1885ae6](https://github.com/SienkLogic/plan-build-run/commit/b1885ae6))
|
|
249
|
+
* Sync autonomous SKILL.md to plan-build-run copy ([d25471e4](https://github.com/SienkLogic/plan-build-run/commit/d25471e4))
|
|
250
|
+
* Add speculative plan skip logic and completion stats to autonomous mode ([aa22a720](https://github.com/SienkLogic/plan-build-run/commit/aa22a720))
|
|
251
|
+
* Add staleness detection and re-planning for speculative plans ([9518ce08](https://github.com/SienkLogic/plan-build-run/commit/9518ce08))
|
|
252
|
+
* Add speculative planner dispatch during build in autonomous mode ([e7f13bd8](https://github.com/SienkLogic/plan-build-run/commit/e7f13bd8))
|
|
253
|
+
* Implement SI-01 through SI-03 skill reference validation checks ([9072a3f3](https://github.com/SienkLogic/plan-build-run/commit/9072a3f3))
|
|
254
|
+
* Add --preset/--dimension/--skip/--only CLI flags and dimension resolution to audit SKILL.md ([33c0787c](https://github.com/SienkLogic/plan-build-run/commit/33c0787c))
|
|
255
|
+
* Auto-run npm release on milestone complete, fix release tag detection ([a9d59314](https://github.com/SienkLogic/plan-build-run/commit/a9d59314))
|
|
256
|
+
|
|
257
|
+
### Testing
|
|
258
|
+
|
|
259
|
+
* Add WC-09 commit pattern validation and WC-12 test health baseline checks ([57194cd5](https://github.com/SienkLogic/plan-build-run/commit/57194cd5))
|
|
260
|
+
|
|
261
|
+
### Other
|
|
262
|
+
|
|
263
|
+
* Wire BC-13,14,15 and SQ-07,08,09,10 into index.js check maps ([d5dc1304](https://github.com/SienkLogic/plan-build-run/commit/d5dc1304))
|
|
264
|
+
* Implement SQ-07, SQ-08, SQ-09, SQ-10 audit check functions ([08ef1eaa](https://github.com/SienkLogic/plan-build-run/commit/08ef1eaa))
|
|
265
|
+
* Implement BC-13, BC-14, BC-15 audit check functions ([d9b12456](https://github.com/SienkLogic/plan-build-run/commit/d9b12456))
|
|
266
|
+
* Upgrade index.js to aggregate SI, IH, FV, QM check modules with unified runAllChecks() ([c1fb077c](https://github.com/SienkLogic/plan-build-run/commit/c1fb077c))
|
|
267
|
+
* Add QM-05 self-validation and runAllQualityMetricChecks aggregator ([f9afdc64](https://github.com/SienkLogic/plan-build-run/commit/f9afdc64))
|
|
268
|
+
* Add baseline comparison check QM-03 ([e6f4b79f](https://github.com/SienkLogic/plan-build-run/commit/e6f4b79f))
|
|
269
|
+
* Add error correlation check across audit dimensions (QM-04) ([acb2bc3f](https://github.com/SienkLogic/plan-build-run/commit/acb2bc3f))
|
|
270
|
+
* Add quality-metrics module with session degradation and throughput checks (QM-01, QM-02) ([0ca3b75b](https://github.com/SienkLogic/plan-build-run/commit/0ca3b75b))
|
|
271
|
+
* Add FV-13 meta-check and wire FV_CHECKS map into index.js ([28c230d2](https://github.com/SienkLogic/plan-build-run/commit/28c230d2))
|
|
272
|
+
* Add FV-08 through FV-12 check functions ([88299b38](https://github.com/SienkLogic/plan-build-run/commit/88299b38))
|
|
273
|
+
* Add feature-verification.js with helpers and FV-01 through FV-03 ([5e57912e](https://github.com/SienkLogic/plan-build-run/commit/5e57912e))
|
|
274
|
+
* Add SQ-04 routing, SQ-05 memory tracking, SQ-06 convention monitoring ([043fa179](https://github.com/SienkLogic/plan-build-run/commit/043fa179))
|
|
275
|
+
* Implement SQ-03 session duration and cost analysis ([8206bff5](https://github.com/SienkLogic/plan-build-run/commit/8206bff5))
|
|
276
|
+
* Implement SQ-02 briefing freshness and size check ([ba281c14](https://github.com/SienkLogic/plan-build-run/commit/ba281c14))
|
|
277
|
+
* Implement SQ-01 session start quality check with shared JSONL helpers ([d3db066a](https://github.com/SienkLogic/plan-build-run/commit/d3db066a))
|
|
278
|
+
* Add BC-07 CRITICAL marker compliance and BC-08 gate compliance checks ([1c714792](https://github.com/SienkLogic/plan-build-run/commit/1c714792))
|
|
279
|
+
* Add BC-06 artifact creation order check ([5872359a](https://github.com/SienkLogic/plan-build-run/commit/5872359a))
|
|
280
|
+
* Add BC-04 post-condition verification and BC-05 orchestrator budget discipline ([48324dba](https://github.com/SienkLogic/plan-build-run/commit/48324dba))
|
|
281
|
+
* Add BC-02 state machine transitions and BC-03 pre-condition verification ([5135cb38](https://github.com/SienkLogic/plan-build-run/commit/5135cb38))
|
|
282
|
+
* Add model selection and git branching compliance checks (WC-10, WC-11) ([4575cb0f](https://github.com/SienkLogic/plan-build-run/commit/4575cb0f))
|
|
283
|
+
* Add WC-05 artifact completeness and WC-06 format validation checks ([6d741f3d](https://github.com/SienkLogic/plan-build-run/commit/6d741f3d))
|
|
284
|
+
* Add ROADMAP sync and naming convention checks (WC-04, WC-08) ([742674fa](https://github.com/SienkLogic/plan-build-run/commit/742674fa))
|
|
285
|
+
* Implement EF-07 session cleanup verification with all 7 EF checks exported ([8a8ccee1](https://github.com/SienkLogic/plan-build-run/commit/8a8ccee1))
|
|
286
|
+
* Implement EF-06 cross-session interference detection with stale file checks ([dd24a1a1](https://github.com/SienkLogic/plan-build-run/commit/dd24a1a1))
|
|
287
|
+
* Implement EF-05 retry/repetition pattern detection ([f1090c70](https://github.com/SienkLogic/plan-build-run/commit/f1090c70))
|
|
288
|
+
* Implement EF-01 tool failure rate analysis with shared JSONL helpers ([3442c193](https://github.com/SienkLogic/plan-build-run/commit/3442c193))
|
|
289
|
+
* Add stale file, plugin cache, and config schema checks (IH-04, IH-05, IH-06) ([81ed02e6](https://github.com/SienkLogic/plan-build-run/commit/81ed02e6))
|
|
290
|
+
* Implement command, config, and version checks SI-10 through SI-12 ([eb8a1933](https://github.com/SienkLogic/plan-build-run/commit/eb8a1933))
|
|
291
|
+
* Create SI checks index module with all 15 dimensions ([814570ad](https://github.com/SienkLogic/plan-build-run/commit/814570ad))
|
|
292
|
+
* Implement cross-cutting SI checks (SI-13, SI-14, SI-15) ([8747ed37](https://github.com/SienkLogic/plan-build-run/commit/8747ed37))
|
|
293
|
+
* Deduplicate --only dimension resolution to handle code+slug aliases ([60c4d26b](https://github.com/SienkLogic/plan-build-run/commit/60c4d26b))
|
|
294
|
+
* Implement resolveDimensions() and explainResolution() in audit-dimensions.js ([a114bc61](https://github.com/SienkLogic/plan-build-run/commit/a114bc61))
|
|
295
|
+
* Create audit dimension registry with 88 dimensions across 9 categories ([ee179a65](https://github.com/SienkLogic/plan-build-run/commit/ee179a65))
|
|
296
|
+
|
|
297
|
+
## [2.9.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.8.0...plan-build-run-v2.9.0) — 2026-03-18
|
|
298
|
+
|
|
299
|
+
### Agents
|
|
300
|
+
|
|
301
|
+
* Add Knowledge Capture write instructions to executor, verifier, debugger ([cea3e587](https://github.com/SienkLogic/plan-build-run/commit/cea3e587))
|
|
302
|
+
* Add KNOWLEDGE.md to files_to_read for all 10 agents ([d3723794](https://github.com/SienkLogic/plan-build-run/commit/d3723794))
|
|
303
|
+
* Integrate node-repair reference and repair loop into executor ([30bdfa07](https://github.com/SienkLogic/plan-build-run/commit/30bdfa07))
|
|
304
|
+
* Add deviation taxonomy, fix plans, and DISCOVERY.md references to agents ([a21978eb](https://github.com/SienkLogic/plan-build-run/commit/a21978eb))
|
|
305
|
+
* Update executor/verifier for 13-state model and building/built status ([a64e88a5](https://github.com/SienkLogic/plan-build-run/commit/a64e88a5))
|
|
306
|
+
* Update planner Mode 4 fallback format with PBR-aligned ROADMAP fields ([0b9e5f09](https://github.com/SienkLogic/plan-build-run/commit/0b9e5f09))
|
|
307
|
+
* Update roadmapper output format for PBR-aligned ROADMAP fields ([0b3efdea](https://github.com/SienkLogic/plan-build-run/commit/0b3efdea))
|
|
308
|
+
|
|
309
|
+
### CI/CD
|
|
310
|
+
|
|
311
|
+
* Replace release-please with component-grouped changelog system ([73457e14](https://github.com/SienkLogic/plan-build-run/commit/73457e14))
|
|
312
|
+
* Regenerate from correct tag ranges, removing duplicate entries ([dd996cff](https://github.com/SienkLogic/plan-build-run/commit/dd996cff))
|
|
313
|
+
|
|
314
|
+
### CLI Tools
|
|
315
|
+
|
|
316
|
+
* Replace non-existent writeStateMd import in verify.cjs, sync config-schema.json ([94caea14](https://github.com/SienkLogic/plan-build-run/commit/94caea14))
|
|
317
|
+
* Guard Progress table parser against sections without actual tables ([5c7e6bc7](https://github.com/SienkLogic/plan-build-run/commit/5c7e6bc7))
|
|
318
|
+
* Add loadGlobalDefaults and saveGlobalDefaults for cross-project defaults ([991156d7](https://github.com/SienkLogic/plan-build-run/commit/991156d7))
|
|
319
|
+
* Add WAITING.json signal functions to state.cjs ([65a56e9b](https://github.com/SienkLogic/plan-build-run/commit/65a56e9b))
|
|
320
|
+
* Add RETROSPECTIVE.md generation, ROADMAP details-collapse, and milestone index to cmdMilestoneComplete ([97172728](https://github.com/SienkLogic/plan-build-run/commit/97172728))
|
|
321
|
+
* Add velocity metrics and session continuity to state.cjs ([4cf6b330](https://github.com/SienkLogic/plan-build-run/commit/4cf6b330))
|
|
322
|
+
* Merge PBR + PBR status values into unified 13-state lifecycle ([8c27154f](https://github.com/SienkLogic/plan-build-run/commit/8c27154f))
|
|
323
|
+
* Update roadmap.cjs for PBR-aligned format with dynamic column detection and details-tag support ([1b820cbc](https://github.com/SienkLogic/plan-build-run/commit/1b820cbc))
|
|
324
|
+
|
|
325
|
+
### Configuration
|
|
326
|
+
|
|
327
|
+
* Add extended_context to config reference and model profiles docs ([8677fb03](https://github.com/SienkLogic/plan-build-run/commit/8677fb03))
|
|
328
|
+
|
|
329
|
+
### Context Management
|
|
330
|
+
|
|
331
|
+
* Bridge real context data from status-line to .context-budget.json ([886e2649](https://github.com/SienkLogic/plan-build-run/commit/886e2649))
|
|
332
|
+
|
|
333
|
+
### Dashboard
|
|
334
|
+
|
|
335
|
+
* Add velocity/session parsing, update status labels to 13-state model ([dc2d7d1f](https://github.com/SienkLogic/plan-build-run/commit/dc2d7d1f))
|
|
336
|
+
* Update planning reader for <details> milestones and phase Requirements/Success Criteria ([af65b4bd](https://github.com/SienkLogic/plan-build-run/commit/af65b4bd))
|
|
54
337
|
|
|
55
338
|
### Documentation
|
|
56
339
|
|
|
57
|
-
*
|
|
58
|
-
|
|
59
|
-
|
|
340
|
+
* Add node-repair.md reference for task failure taxonomy ([c725c78f](https://github.com/SienkLogic/plan-build-run/commit/c725c78f))
|
|
341
|
+
* Add deviation taxonomy reference format to deviation-rules.md ([4e9ce6e4](https://github.com/SienkLogic/plan-build-run/commit/4e9ce6e4))
|
|
342
|
+
|
|
343
|
+
### Hooks
|
|
344
|
+
|
|
345
|
+
* Refocus milestone-learnings.js to aggregate into project-scoped KNOWLEDGE.md ([7556560c](https://github.com/SienkLogic/plan-build-run/commit/7556560c))
|
|
346
|
+
* Add seed trigger checking after executor phase completion ([9e7c4b46](https://github.com/SienkLogic/plan-build-run/commit/9e7c4b46))
|
|
347
|
+
* Add SessionStart awareness sweep for seeds, deferred, tech debt, research, knowledge ([56c8c1a3](https://github.com/SienkLogic/plan-build-run/commit/56c8c1a3))
|
|
348
|
+
* Detect WAITING.json and HANDOFF.json at SessionStart ([cfc2c450](https://github.com/SienkLogic/plan-build-run/commit/cfc2c450))
|
|
349
|
+
* Read 3 days of logs and classify rare-event hooks in checkHookCoverage ([d097dfca](https://github.com/SienkLogic/plan-build-run/commit/d097dfca))
|
|
350
|
+
* Add entry/skip/complete logging to 3 remaining hooks ([3e21eebd](https://github.com/SienkLogic/plan-build-run/commit/3e21eebd))
|
|
351
|
+
* Add checkHookCoverage to health-checks cross-referencing hooks.json vs logs ([2f93ae55](https://github.com/SienkLogic/plan-build-run/commit/2f93ae55))
|
|
352
|
+
* Add source field and PBR_LOG_DIR support to hook-logger ([8bb5d140](https://github.com/SienkLogic/plan-build-run/commit/8bb5d140))
|
|
353
|
+
* Remove noisy velocity/session absence warnings, sync build SKILL.md ([1a10dc77](https://github.com/SienkLogic/plan-build-run/commit/1a10dc77))
|
|
354
|
+
* Add deviation review check to check-subagent-output ([8b4d649e](https://github.com/SienkLogic/plan-build-run/commit/8b4d649e))
|
|
355
|
+
* Add deviations and fix_plans validation to check-plan-format ([e5c4f46d](https://github.com/SienkLogic/plan-build-run/commit/e5c4f46d))
|
|
356
|
+
* Add readCurrentStatus and VALID_PHASE_STATUSES to gate helpers ([c9f91734](https://github.com/SienkLogic/plan-build-run/commit/c9f91734))
|
|
357
|
+
* Add session continuity frontmatter reading and expanded stale status detection ([c2ed2307](https://github.com/SienkLogic/plan-build-run/commit/c2ed2307))
|
|
358
|
+
* Update smart-next-task status routing for 13-state lifecycle ([ae549f02](https://github.com/SienkLogic/plan-build-run/commit/ae549f02))
|
|
359
|
+
* Use STATUS_LABELS for display and expand status ordering in check-state-sync.js ([e9e017be](https://github.com/SienkLogic/plan-build-run/commit/e9e017be))
|
|
360
|
+
* Add 13-state lifecycle validation to validateState() in check-plan-format.js ([72785d54](https://github.com/SienkLogic/plan-build-run/commit/72785d54))
|
|
361
|
+
* Add dynamic column detection and details-tag stripping to progress-tracker.js ([fd9234ac](https://github.com/SienkLogic/plan-build-run/commit/fd9234ac))
|
|
362
|
+
* Strip HTML details/summary tags in check-roadmap-sync.js for collapsed milestones ([479b6db0](https://github.com/SienkLogic/plan-build-run/commit/479b6db0))
|
|
363
|
+
* Add dynamic column detection to updateProgressTable in check-state-sync.js ([cefa54eb](https://github.com/SienkLogic/plan-build-run/commit/cefa54eb))
|
|
364
|
+
* Update validateRoadmap and validateContext for PBR-aligned ROADMAP format ([045a3d01](https://github.com/SienkLogic/plan-build-run/commit/045a3d01))
|
|
365
|
+
* Replace static port 19871 with dynamic allocation in hook-server.test.js ([4886f286](https://github.com/SienkLogic/plan-build-run/commit/4886f286))
|
|
366
|
+
* Report actual bound port in hook-server ready signal ([c22390bf](https://github.com/SienkLogic/plan-build-run/commit/c22390bf))
|
|
367
|
+
* Add CONFIG_DEFAULTS and configEnsureComplete for auto-population ([dda3f8bb](https://github.com/SienkLogic/plan-build-run/commit/dda3f8bb))
|
|
368
|
+
* Surface hook errors via additionalContext instead of silent exit ([ae7330a0](https://github.com/SienkLogic/plan-build-run/commit/ae7330a0))
|
|
369
|
+
* Fix clearRootCache import to use hooks path instead of plugins path ([364c92e9](https://github.com/SienkLogic/plan-build-run/commit/364c92e9))
|
|
370
|
+
|
|
371
|
+
### Skills
|
|
372
|
+
|
|
373
|
+
* Add KNOWLEDGE.md to begin init, milestone aggregation, and executor context ([2b8b5a2c](https://github.com/SienkLogic/plan-build-run/commit/2b8b5a2c))
|
|
374
|
+
* Add KNOWLEDGE.md to context-loader-task.md briefing files ([950953a4](https://github.com/SienkLogic/plan-build-run/commit/950953a4))
|
|
375
|
+
* Wire extended_context gates into build, review, scan, and plan skills ([122a2aa6](https://github.com/SienkLogic/plan-build-run/commit/122a2aa6))
|
|
376
|
+
* Add --prd express path to plan skill for PRD-driven planning ([87a0df8a](https://github.com/SienkLogic/plan-build-run/commit/87a0df8a))
|
|
377
|
+
* Add /pbr:session-report skill for post-session summaries ([dc90c6d2](https://github.com/SienkLogic/plan-build-run/commit/dc90c6d2))
|
|
378
|
+
* Add /pbr:ship skill for PR creation from planning artifacts ([c3fc12a4](https://github.com/SienkLogic/plan-build-run/commit/c3fc12a4))
|
|
379
|
+
* Add UAT gap intake path to debug skill ([0e67aa92](https://github.com/SienkLogic/plan-build-run/commit/0e67aa92))
|
|
380
|
+
* Add node repair reference and ESCALATE handling to build skill ([b4740565](https://github.com/SienkLogic/plan-build-run/commit/b4740565))
|
|
381
|
+
* Add HANDOFF.json and WAITING.json support to resume skill ([ba1a7b22](https://github.com/SienkLogic/plan-build-run/commit/ba1a7b22))
|
|
382
|
+
* Add HANDOFF.json creation to pause skill ([146bd7f9](https://github.com/SienkLogic/plan-build-run/commit/146bd7f9))
|
|
383
|
+
* Add deviation-rules reference to build, fix plan review to review ([7d0b7762](https://github.com/SienkLogic/plan-build-run/commit/7d0b7762))
|
|
384
|
+
* Add PROJECT.md evolution review to milestone, update begin for new format ([20762452](https://github.com/SienkLogic/plan-build-run/commit/20762452))
|
|
385
|
+
* Add session continuity fields to pause/resume skills ([ea8c27ac](https://github.com/SienkLogic/plan-build-run/commit/ea8c27ac))
|
|
386
|
+
* Update status and continue skills for 13-state model and velocity display ([4fe1067a](https://github.com/SienkLogic/plan-build-run/commit/4fe1067a))
|
|
387
|
+
* Update plan/build/review/discuss for new ROADMAP format and CONTEXT.md sections ([44d8e6fe](https://github.com/SienkLogic/plan-build-run/commit/44d8e6fe))
|
|
388
|
+
* Update begin skill and roadmap prompt for Requirements/Success Criteria fields ([56366b30](https://github.com/SienkLogic/plan-build-run/commit/56366b30))
|
|
389
|
+
* Update milestone complete to use <details> collapse and milestone index ([40598b26](https://github.com/SienkLogic/plan-build-run/commit/40598b26))
|
|
390
|
+
* Add npm release prompt to milestone complete workflow ([3f8c2290](https://github.com/SienkLogic/plan-build-run/commit/3f8c2290))
|
|
391
|
+
|
|
392
|
+
### Templates
|
|
393
|
+
|
|
394
|
+
* Add KNOWLEDGE.md.tmpl for project knowledge capture ([e30ff512](https://github.com/SienkLogic/plan-build-run/commit/e30ff512))
|
|
395
|
+
* Add extended_context to config schema, defaults, and template ([6b9c9361](https://github.com/SienkLogic/plan-build-run/commit/6b9c9361))
|
|
396
|
+
* Add UAT.md.tmpl for user acceptance testing ([7fc0a09b](https://github.com/SienkLogic/plan-build-run/commit/7fc0a09b))
|
|
397
|
+
* Add HANDOFF.json.tmpl for session pause/resume state ([f50eaf68](https://github.com/SienkLogic/plan-build-run/commit/f50eaf68))
|
|
398
|
+
* Add MILESTONE-AUDIT.md.tmpl with structured YAML scores ([643437b3](https://github.com/SienkLogic/plan-build-run/commit/643437b3))
|
|
399
|
+
* Add RETROSPECTIVE.md.tmpl for cross-milestone trends ([46fbcab8](https://github.com/SienkLogic/plan-build-run/commit/46fbcab8))
|
|
400
|
+
* Create DISCOVERY.md template with Don't Hand-Roll section ([3340d9b1](https://github.com/SienkLogic/plan-build-run/commit/3340d9b1))
|
|
401
|
+
* Add fix plan generation and gap severity to VERIFICATION template ([085cdaa6](https://github.com/SienkLogic/plan-build-run/commit/085cdaa6))
|
|
402
|
+
* Add deviation taxonomy and requirements_completed to SUMMARY templates ([e9ca0ff8](https://github.com/SienkLogic/plan-build-run/commit/e9ca0ff8))
|
|
403
|
+
* Add PBR evolution protocol and lifecycle sections to PROJECT.md ([d7fc03e9](https://github.com/SienkLogic/plan-build-run/commit/d7fc03e9))
|
|
404
|
+
* Add Specific References and Code Patterns sections to project-CONTEXT.md.tmpl ([6962a0f7](https://github.com/SienkLogic/plan-build-run/commit/6962a0f7))
|
|
405
|
+
* Add specifics and code_context sections to CONTEXT.md.tmpl ([8ca7dffd](https://github.com/SienkLogic/plan-build-run/commit/8ca7dffd))
|
|
406
|
+
* Update ROADMAP.md.tmpl with PBR-aligned format ([b0710bc6](https://github.com/SienkLogic/plan-build-run/commit/b0710bc6))
|
|
407
|
+
|
|
408
|
+
### Testing
|
|
409
|
+
|
|
410
|
+
* Use hooks.jsonl path matching getHookHealthSummary implementation ([b4edd282](https://github.com/SienkLogic/plan-build-run/commit/b4edd282))
|
|
411
|
+
* Add extended_context to schema test and sync mirror files ([51c6201c](https://github.com/SienkLogic/plan-build-run/commit/51c6201c))
|
|
412
|
+
* Update health-checks count to accommodate new checkHookCoverage check ([fe278bd8](https://github.com/SienkLogic/plan-build-run/commit/fe278bd8))
|
|
413
|
+
* Resolve macOS symlink in helpers.js and helpers.test.js (/var -> /private/var) ([03231a26](https://github.com/SienkLogic/plan-build-run/commit/03231a26))
|
|
414
|
+
* Replace static ports 19872-19874 with dynamic allocation in state-enrichment.test.js ([d9ce2b3b](https://github.com/SienkLogic/plan-build-run/commit/d9ce2b3b))
|
|
415
|
+
* Add temp directory cleanup to 7 test files that leaked mkdtempSync dirs ([c9e48a07](https://github.com/SienkLogic/plan-build-run/commit/c9e48a07))
|
|
416
|
+
|
|
417
|
+
### Other
|
|
418
|
+
|
|
419
|
+
* Wire extended_context into begin and setup profile presets ([abfd2a37](https://github.com/SienkLogic/plan-build-run/commit/abfd2a37))
|
|
420
|
+
* Add entry-point and skip-reason logging to post-bash-triage.js ([3c295a89](https://github.com/SienkLogic/plan-build-run/commit/3c295a89))
|
|
421
|
+
* Add entry-point and skip-reason logging to graph-update.js ([7ca8c9eb](https://github.com/SienkLogic/plan-build-run/commit/7ca8c9eb))
|
|
422
|
+
* Commit daily log file refactor — dated filenames, append-only, 30-day retention ([61345577](https://github.com/SienkLogic/plan-build-run/commit/61345577))
|
|
423
|
+
|
|
424
|
+
## [2.8.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.7.0...plan-build-run-v2.8.0) — 2026-03-18
|
|
425
|
+
|
|
426
|
+
### Agents
|
|
427
|
+
|
|
428
|
+
* Add post-execution verifier integration for --full flag ([53099336](https://github.com/SienkLogic/plan-build-run/commit/53099336))
|
|
429
|
+
* Add plan-checker integration for --full flag in quick SKILL.md ([a2618d28](https://github.com/SienkLogic/plan-build-run/commit/a2618d28))
|
|
430
|
+
* Add consistent files_to_read context passing to both executor paths ([f4152c8f](https://github.com/SienkLogic/plan-build-run/commit/f4152c8f))
|
|
431
|
+
* Pass CONTEXT.md to verifier in review skill files_to_read ([bc7eb48e](https://github.com/SienkLogic/plan-build-run/commit/bc7eb48e))
|
|
432
|
+
* Enhance verifier Step 7b with REQ-ID deliverable cross-checking and untraced detection ([2128e24b](https://github.com/SienkLogic/plan-build-run/commit/2128e24b))
|
|
433
|
+
* Add phase goals to executor prompt template ([d138e049](https://github.com/SienkLogic/plan-build-run/commit/d138e049))
|
|
434
|
+
* Add read_first, acceptance_criteria, node repair, and paralysis guard to executor agent ([9ea2ccca](https://github.com/SienkLogic/plan-build-run/commit/9ea2ccca))
|
|
435
|
+
* Update planner agent to generate read_first and acceptance_criteria ([b625023e](https://github.com/SienkLogic/plan-build-run/commit/b625023e))
|
|
436
|
+
* Refine plan-checker agent to 9 dimensions with structured YAML output ([32c795db](https://github.com/SienkLogic/plan-build-run/commit/32c795db))
|
|
437
|
+
* Update tests for RH-01 agent output changes and sync plan-build-run copies ([53ca648d](https://github.com/SienkLogic/plan-build-run/commit/53ca648d))
|
|
438
|
+
* Update agent-contracts.md implements field and VERIFICATION.md frontmatter ([e64f7abc](https://github.com/SienkLogic/plan-build-run/commit/e64f7abc))
|
|
439
|
+
* Update executor-prompt.md.tmpl CONTEXT.md references to PROJECT.md ([1d1d7053](https://github.com/SienkLogic/plan-build-run/commit/1d1d7053))
|
|
440
|
+
|
|
441
|
+
### CI/CD
|
|
442
|
+
|
|
443
|
+
* Prefix unused variables in test files to resolve ESLint warnings ([9ead0690](https://github.com/SienkLogic/plan-build-run/commit/9ead0690))
|
|
444
|
+
* Add workflow.node_repair_budget config validation ([137f2a4d](https://github.com/SienkLogic/plan-build-run/commit/137f2a4d))
|
|
445
|
+
|
|
446
|
+
### CLI Tools
|
|
447
|
+
|
|
448
|
+
* Add auto-repair to initResume via stateRederive on drift ([636d189f](https://github.com/SienkLogic/plan-build-run/commit/636d189f))
|
|
449
|
+
* Add detectDrift helper and drift field to init commands ([853410dd](https://github.com/SienkLogic/plan-build-run/commit/853410dd))
|
|
450
|
+
* Wire statePhaseComplete and stateRederive into pbr-tools.cjs dispatcher ([b826ce33](https://github.com/SienkLogic/plan-build-run/commit/b826ce33))
|
|
451
|
+
* Implement stateRederive with drift detection and atomic correction ([8b0f7275](https://github.com/SienkLogic/plan-build-run/commit/8b0f7275))
|
|
452
|
+
* Implement statePhaseComplete with atomic lockedFileUpdate ([8b84d3b3](https://github.com/SienkLogic/plan-build-run/commit/8b84d3b3))
|
|
453
|
+
|
|
454
|
+
### Hooks
|
|
455
|
+
|
|
456
|
+
* Resolve macOS symlink in resolve-root test (/var -> /private/var) ([8a163798](https://github.com/SienkLogic/plan-build-run/commit/8a163798))
|
|
457
|
+
* Prefix unused variables in hooks/ source files with underscore ([ee270c28](https://github.com/SienkLogic/plan-build-run/commit/ee270c28))
|
|
458
|
+
* Add validateContext and SUMMARY metrics warnings to check-plan-format ([8fb4ab00](https://github.com/SienkLogic/plan-build-run/commit/8fb4ab00))
|
|
459
|
+
* Add completion marker and Self-Check section validation to check-subagent-output ([4d5da4f8](https://github.com/SienkLogic/plan-build-run/commit/4d5da4f8))
|
|
460
|
+
* Add read_first and acceptance_criteria validation to check-plan-format hook ([5b25a0ff](https://github.com/SienkLogic/plan-build-run/commit/5b25a0ff))
|
|
461
|
+
* Migrate auto-continue from signal file to config flag with backward compat ([03d62a7f](https://github.com/SienkLogic/plan-build-run/commit/03d62a7f))
|
|
462
|
+
* Add mtime-based dirty flag detection to check-state-sync ([d2070554](https://github.com/SienkLogic/plan-build-run/commit/d2070554))
|
|
463
|
+
* Wire resolveProjectRoot into hook-logger getLogPath for correct root discovery ([1e923d77](https://github.com/SienkLogic/plan-build-run/commit/1e923d77))
|
|
464
|
+
* Switch hook-logger to append-only writes with appendFileSync ([f68568ea](https://github.com/SienkLogic/plan-build-run/commit/f68568ea))
|
|
465
|
+
* Add fail-open telemetry to validate-task.js catch block ([e26d54aa](https://github.com/SienkLogic/plan-build-run/commit/e26d54aa))
|
|
466
|
+
* Sync git-integration.md commit types with validate-commit.js ([f67182c0](https://github.com/SienkLogic/plan-build-run/commit/f67182c0))
|
|
467
|
+
* Update 4 agent expectedFile entries in check-subagent-output.js ([6b51eae2](https://github.com/SienkLogic/plan-build-run/commit/6b51eae2))
|
|
468
|
+
|
|
469
|
+
### Plugin
|
|
470
|
+
|
|
471
|
+
* Elevate universal anti-patterns to plugin-level CLAUDE.md ([f059b3cc](https://github.com/SienkLogic/plan-build-run/commit/f059b3cc))
|
|
472
|
+
|
|
473
|
+
### Skills
|
|
474
|
+
|
|
475
|
+
* Update tests for new validation rules and sync SKILL.md copies ([ebc312b9](https://github.com/SienkLogic/plan-build-run/commit/ebc312b9))
|
|
476
|
+
* Add velocity metrics display to status SKILL.md ([f26715e6](https://github.com/SienkLogic/plan-build-run/commit/f26715e6))
|
|
477
|
+
* Add velocity metrics writing to build SKILL.md after phase completion ([f8098eda](https://github.com/SienkLogic/plan-build-run/commit/f8098eda))
|
|
478
|
+
* Enhance build SKILL.md with type-specific checkpoint routing UX ([6f731389](https://github.com/SienkLogic/plan-build-run/commit/6f731389))
|
|
479
|
+
* Update resume skill to parse XML sections with backward compat ([8628e0c1](https://github.com/SienkLogic/plan-build-run/commit/8628e0c1))
|
|
480
|
+
* Add commit-planning-docs.md references to 6 skills that write .planning/ files ([8681742f](https://github.com/SienkLogic/plan-build-run/commit/8681742f))
|
|
481
|
+
* Add error-reporting.md references to 14 skills with error exit paths ([f7af2cab](https://github.com/SienkLogic/plan-build-run/commit/f7af2cab))
|
|
482
|
+
* Add commit-planning-docs reference to config, setup, and profile skills ([04f6b2c2](https://github.com/SienkLogic/plan-build-run/commit/04f6b2c2))
|
|
483
|
+
* Add 6 standard patterns to test skill (active-skill, state, commit, files_to_read, error, gate) ([9de69156](https://github.com/SienkLogic/plan-build-run/commit/9de69156))
|
|
484
|
+
* Instrument discuss skill with 6 missing patterns ([4d2faf27](https://github.com/SienkLogic/plan-build-run/commit/4d2faf27))
|
|
485
|
+
* Add deferred items forward path to plan skill from prior phase SUMMARY and CONTEXT.md ([7bd7a7a0](https://github.com/SienkLogic/plan-build-run/commit/7bd7a7a0))
|
|
486
|
+
* Add branded invocation banners to ui-phase and ui-review skills ([e9bc9236](https://github.com/SienkLogic/plan-build-run/commit/e9bc9236))
|
|
487
|
+
* Add branded invocation banners to profile-user and quick skills ([265acf15](https://github.com/SienkLogic/plan-build-run/commit/265acf15))
|
|
488
|
+
* Add branded invocation banners to autonomous, do, and intel skills ([12816ab6](https://github.com/SienkLogic/plan-build-run/commit/12816ab6))
|
|
489
|
+
* Replace stale skill names and dead link in shared fragments ([83ae3954](https://github.com/SienkLogic/plan-build-run/commit/83ae3954))
|
|
490
|
+
* Add ROADMAP.md backup step before destructive archival in milestone skill ([8fc48f6c](https://github.com/SienkLogic/plan-build-run/commit/8fc48f6c))
|
|
491
|
+
* Correct broken ${CLAUDE_PLUGIN_ROOT} syntax in ui-phase and ui-review skills ([ba2d666a](https://github.com/SienkLogic/plan-build-run/commit/ba2d666a))
|
|
492
|
+
|
|
493
|
+
### Templates
|
|
494
|
+
|
|
495
|
+
* Rewrite continue-here.md.tmpl with structured XML sections ([57fb91bb](https://github.com/SienkLogic/plan-build-run/commit/57fb91bb))
|
|
496
|
+
* Update CONTEXT.md template with 4 XML-style sections (domain, decisions, canonical_refs, deferred) ([85ab253e](https://github.com/SienkLogic/plan-build-run/commit/85ab253e))
|
|
60
497
|
|
|
498
|
+
### Other
|
|
61
499
|
|
|
62
|
-
|
|
500
|
+
* Redefine composable flags with --discuss, --research, --full semantics ([0d3d78f7](https://github.com/SienkLogic/plan-build-run/commit/0d3d78f7))
|
|
501
|
+
* Lower STATE.md advisory cap from 150 to 100 lines ([59e1cba1](https://github.com/SienkLogic/plan-build-run/commit/59e1cba1))
|
|
502
|
+
* Wire YAML-based issue passing into revision loop with early-exit on stall ([d6f7a65f](https://github.com/SienkLogic/plan-build-run/commit/d6f7a65f))
|
|
503
|
+
* Add must_haves sub-field validation for truths, artifacts, key_links ([df686325](https://github.com/SienkLogic/plan-build-run/commit/df686325))
|
|
504
|
+
* Add canonical field validation for type, depends_on, files_modified, autonomous ([b9c6ff60](https://github.com/SienkLogic/plan-build-run/commit/b9c6ff60))
|
|
505
|
+
* Refactor processEvent to run all checks independently with collect-and-merge ([213c40a3](https://github.com/SienkLogic/plan-build-run/commit/213c40a3))
|
|
506
|
+
* Implement verify-and-retry TOCTOU protection in incrementTracker ([fb91464d](https://github.com/SienkLogic/plan-build-run/commit/fb91464d))
|
|
507
|
+
* Add logHook error telemetry to all 3 dispatcher catch blocks ([528b1ce1](https://github.com/SienkLogic/plan-build-run/commit/528b1ce1))
|
|
508
|
+
* Create resolveProjectRoot utility with walk-up discovery and caching ([e13fbeec](https://github.com/SienkLogic/plan-build-run/commit/e13fbeec))
|
|
509
|
+
* Rewrite validateConfig() with top-level depth and exhaustive knownKeys ([604fbb79](https://github.com/SienkLogic/plan-build-run/commit/604fbb79))
|
|
510
|
+
* Remove HISTORY.md archival section, rewrite for STATE.md History ([a702fcbd](https://github.com/SienkLogic/plan-build-run/commit/a702fcbd))
|
|
511
|
+
* Replace stale CONTEXT.md and HISTORY.md refs in context-loader-task.md ([8b5a9b28](https://github.com/SienkLogic/plan-build-run/commit/8b5a9b28))
|
|
63
512
|
|
|
64
|
-
|
|
513
|
+
## [2.7.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.6.0...plan-build-run-v2.7.0) — 2026-03-18
|
|
65
514
|
|
|
66
|
-
|
|
515
|
+
### CI/CD
|
|
67
516
|
|
|
517
|
+
* Clean up coverage collection and fix plugin count test ([4189b37f](https://github.com/SienkLogic/plan-build-run/commit/4189b37f))
|
|
518
|
+
* Lower branch coverage threshold to 62% (was 68%, actual 63.5%) ([30857c83](https://github.com/SienkLogic/plan-build-run/commit/30857c83))
|
|
519
|
+
* Exclude hooks/lib and hooks/local-llm from coverage collection ([6ed6ed4f](https://github.com/SienkLogic/plan-build-run/commit/6ed6ed4f))
|
|
68
520
|
|
|
69
|
-
###
|
|
521
|
+
### Context Management
|
|
70
522
|
|
|
71
|
-
*
|
|
523
|
+
* Context quality scoring module with scoreContext, getQualityReport, writeQualityReport ([6bd91ac1](https://github.com/SienkLogic/plan-build-run/commit/6bd91ac1))
|
|
72
524
|
|
|
73
|
-
|
|
525
|
+
### Hooks
|
|
74
526
|
|
|
527
|
+
* Wire skip-RAG into SessionStart briefing, sync hooks/ copies with quality scoring ([45ab1561](https://github.com/SienkLogic/plan-build-run/commit/45ab1561))
|
|
528
|
+
* Orchestrator budget scaling in suggest-compact, quality scoring in track-context-budget ([5d2a056f](https://github.com/SienkLogic/plan-build-run/commit/5d2a056f))
|
|
75
529
|
|
|
76
|
-
###
|
|
530
|
+
### Other
|
|
77
531
|
|
|
78
|
-
*
|
|
532
|
+
* Implement buildEnhancedBriefing with config toggle, audit logging, and structured output ([6f37f340](https://github.com/SienkLogic/plan-build-run/commit/6f37f340))
|
|
533
|
+
* Add feature_status and orchestrator_budget_pct validation to health check ([aacdd9c1](https://github.com/SienkLogic/plan-build-run/commit/aacdd9c1))
|
|
534
|
+
* Add 5 Phase 1 config properties to both schema copies ([acf65930](https://github.com/SienkLogic/plan-build-run/commit/acf65930))
|
|
79
535
|
|
|
80
|
-
## [2.
|
|
536
|
+
## [2.6.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.5.0...plan-build-run-v2.6.0) — 2026-03-17
|
|
81
537
|
|
|
538
|
+
### Agents
|
|
82
539
|
|
|
83
|
-
|
|
540
|
+
* Reference memory-capture.md in 4 skills after agent completion ([0072d887](https://github.com/SienkLogic/plan-build-run/commit/0072d887))
|
|
541
|
+
* Add memory_suggestion protocol to 4 agents and shared fragment ([e39e2bbe](https://github.com/SienkLogic/plan-build-run/commit/e39e2bbe))
|
|
542
|
+
* Enable project memory for 6 decision-making agents (verifier, audit, plan-checker, integration-checker, general, researcher) ([bec02f29](https://github.com/SienkLogic/plan-build-run/commit/bec02f29))
|
|
84
543
|
|
|
85
|
-
|
|
544
|
+
### CI/CD
|
|
86
545
|
|
|
87
|
-
|
|
546
|
+
* Convert indented code blocks to fenced in 4 agent files (MD046) ([7b5e3a5a](https://github.com/SienkLogic/plan-build-run/commit/7b5e3a5a))
|
|
88
547
|
|
|
548
|
+
### Hooks
|
|
89
549
|
|
|
90
|
-
|
|
550
|
+
* Add comprehensive artifact validation gates and compliance tracking ([1d70fd35](https://github.com/SienkLogic/plan-build-run/commit/1d70fd35))
|
|
551
|
+
* Emit valid stdout in PreToolUse catch blocks instead of silent exit ([8ee7ffed](https://github.com/SienkLogic/plan-build-run/commit/8ee7ffed))
|
|
552
|
+
* Wire intel-queue hook, fix require path, update invocation schema ([54bc528b](https://github.com/SienkLogic/plan-build-run/commit/54bc528b))
|
|
553
|
+
* Wire PostCompact event in hooks.json ([2542a378](https://github.com/SienkLogic/plan-build-run/commit/2542a378))
|
|
554
|
+
* Create post-compact.js hook scripts for context recovery after compaction ([1fca720d](https://github.com/SienkLogic/plan-build-run/commit/1fca720d))
|
|
91
555
|
|
|
92
|
-
|
|
93
|
-
* **04-01:** add post-artifact validation for begin/plan/build and VERIFICATION.md ([3cb4bc1](https://github.com/SienkLogic/plan-build-run/commit/3cb4bc1c0f277c6beca99f7c336fba5e7376f9ec))
|
|
94
|
-
* **05-01:** add STATE.md validation, checkpoint manifest check, and active-skill integrity warning ([d780d97](https://github.com/SienkLogic/plan-build-run/commit/d780d97e620915cb05e70372ce8c9d6003fd1ac8))
|
|
556
|
+
### Skills
|
|
95
557
|
|
|
96
|
-
|
|
558
|
+
* Improve status render routing, milestone parsing, and SKILL.md enforcement ([1ee590d1](https://github.com/SienkLogic/plan-build-run/commit/1ee590d1))
|
|
559
|
+
* Fix intel skill banner and config gate — use PBR branding, avoid Bash for config check, replace $HOME paths ([13b56801](https://github.com/SienkLogic/plan-build-run/commit/13b56801))
|
|
97
560
|
|
|
561
|
+
### Testing
|
|
98
562
|
|
|
99
|
-
|
|
563
|
+
* Add PostCompact to valid events, update doc-sprawl for allow output ([a94fb09e](https://github.com/SienkLogic/plan-build-run/commit/a94fb09e))
|
|
100
564
|
|
|
101
|
-
|
|
102
|
-
* **02-02:** add review planner gate to validate-task.js ([89ffb05](https://github.com/SienkLogic/plan-build-run/commit/89ffb05bc6384fc47fbf85ac7c875e16a29db0b9))
|
|
103
|
-
* **02-02:** strengthen ROADMAP sync warnings to CRITICAL level ([7120d60](https://github.com/SienkLogic/plan-build-run/commit/7120d60fdc6678d8c9853679b0d3464116821097))
|
|
565
|
+
### Other
|
|
104
566
|
|
|
567
|
+
* PBR 2.0 Acceleration Framework (v5.0) — 16 phases, 67 plans (#96) ([414b87fa](https://github.com/SienkLogic/plan-build-run/commit/414b87fa))
|
|
568
|
+
* Handle YAML null string in suggest-next checkpoint check ([e7ee9ec3](https://github.com/SienkLogic/plan-build-run/commit/e7ee9ec3))
|
|
569
|
+
* Add verify spot-check CLI for plan/summary/verification/quick output validation ([81b80e3c](https://github.com/SienkLogic/plan-build-run/commit/81b80e3c))
|
|
570
|
+
* Add suggest-next CLI for deterministic routing across status/continue/resume ([c444d363](https://github.com/SienkLogic/plan-build-run/commit/c444d363))
|
|
571
|
+
* Add parse-args and status fingerprint CLI commands for input validation and state tracking ([5f3e83e2](https://github.com/SienkLogic/plan-build-run/commit/5f3e83e2))
|
|
572
|
+
* Add quick init and slug-generate CLI commands to prevent directory creation failures ([385f3f9d](https://github.com/SienkLogic/plan-build-run/commit/385f3f9d))
|
|
573
|
+
* Add deterministic status render CLI command for consistent progress output ([0e0f2970](https://github.com/SienkLogic/plan-build-run/commit/0e0f2970))
|
|
574
|
+
* Add worktree.sparse_paths config property to both schema files ([a60381f1](https://github.com/SienkLogic/plan-build-run/commit/a60381f1))
|
|
575
|
+
* Add intel patch-meta CLI command for accurate JSON timestamps ([b7e81656](https://github.com/SienkLogic/plan-build-run/commit/b7e81656))
|
|
576
|
+
* Add intel CLI subcommands (snapshot, validate, extract-exports) ([12f1be88](https://github.com/SienkLogic/plan-build-run/commit/12f1be88))
|
|
105
577
|
|
|
106
|
-
|
|
578
|
+
## [2.5.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.4.0...plan-build-run-v2.5.0) — 2026-03-17
|
|
107
579
|
|
|
108
|
-
|
|
580
|
+
### Agents
|
|
109
581
|
|
|
110
|
-
|
|
582
|
+
* Create pbr:ui-checker agent with 6-dimension scoring rubric ([0eff7049](https://github.com/SienkLogic/plan-build-run/commit/0eff7049))
|
|
583
|
+
* Create pbr:ui-researcher agent with Claude in Chrome MCP tools ([2a3c727f](https://github.com/SienkLogic/plan-build-run/commit/2a3c727f))
|
|
584
|
+
* Wire cross-project copy into executor and milestone-learnings ([be0445a6](https://github.com/SienkLogic/plan-build-run/commit/be0445a6))
|
|
585
|
+
* Create intel-updater agent definition ([b1dafb99](https://github.com/SienkLogic/plan-build-run/commit/b1dafb99))
|
|
586
|
+
* Add --audit flag to plan skill and planner self-validation Step 6b ([26ccbe62](https://github.com/SienkLogic/plan-build-run/commit/26ccbe62))
|
|
587
|
+
* Add inline execution bypass to build-executor gate ([bb96398c](https://github.com/SienkLogic/plan-build-run/commit/bb96398c))
|
|
588
|
+
* Add LEARNINGS.md reading instructions to planner agent (Step 1) ([a1cd851b](https://github.com/SienkLogic/plan-build-run/commit/a1cd851b))
|
|
589
|
+
* Add LEARNINGS.md writing instructions to executor agent (Step 3b) ([db20c608](https://github.com/SienkLogic/plan-build-run/commit/db20c608))
|
|
111
590
|
|
|
591
|
+
### CI/CD
|
|
112
592
|
|
|
113
|
-
|
|
593
|
+
* Add blank line before closing tag in ui-checker and ui-researcher agents ([730e3e56](https://github.com/SienkLogic/plan-build-run/commit/730e3e56))
|
|
594
|
+
* Auto-clean release PR body to strip internal phase scopes ([9535aa7f](https://github.com/SienkLogic/plan-build-run/commit/9535aa7f))
|
|
114
595
|
|
|
115
|
-
|
|
116
|
-
* **01-01:** extend agent output validation to all 10 PBR agent types ([9f4384f](https://github.com/SienkLogic/plan-build-run/commit/9f4384fa2391c3e5905243119da5bebbf65f6218))
|
|
117
|
-
* **01-02:** add skill-specific workflow rules and CRITICAL enforcement ([173e89e](https://github.com/SienkLogic/plan-build-run/commit/173e89e0dfc81aa425b222efd982b83a19e2b3d0))
|
|
118
|
-
* **tools:** add /pbr:statusline command to install PBR status line ([8bd9e7a](https://github.com/SienkLogic/plan-build-run/commit/8bd9e7a98b76cf8e1686eb7a936da8539fe20a08))
|
|
596
|
+
### CLI Tools
|
|
119
597
|
|
|
598
|
+
* Wire copy-global and query-global CLI commands in pbr-tools dispatchers ([9da1fe28](https://github.com/SienkLogic/plan-build-run/commit/9da1fe28))
|
|
599
|
+
* Add copyToGlobal and queryGlobal to learnings modules ([6e4fc4a3](https://github.com/SienkLogic/plan-build-run/commit/6e4fc4a3))
|
|
600
|
+
* Add cross_project config and LEARNINGS.md validation ([520b3030](https://github.com/SienkLogic/plan-build-run/commit/520b3030))
|
|
601
|
+
* Wire intel subcommands into pbr-tools.cjs dispatcher ([f8345867](https://github.com/SienkLogic/plan-build-run/commit/f8345867))
|
|
120
602
|
|
|
121
|
-
###
|
|
603
|
+
### Configuration
|
|
122
604
|
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
* **tools:** resolve lint errors in statusline workflow rules ([6c32db7](https://github.com/SienkLogic/plan-build-run/commit/6c32db7947ccaf392457750a26406ca92a3eef77))
|
|
126
|
-
* **tools:** revert release branch CI trigger (using non-strict protection instead) ([836ac24](https://github.com/SienkLogic/plan-build-run/commit/836ac2401d3381b395fcf6b2bf252ff78745abd5))
|
|
127
|
-
* **tools:** trigger CI on release-please branch pushes for auto-merge ([443e046](https://github.com/SienkLogic/plan-build-run/commit/443e0466f27eb51269999755eb2f8d37093d0f65))
|
|
605
|
+
* Add ui.enabled config property to config-schema.json ([eb2b792c](https://github.com/SienkLogic/plan-build-run/commit/eb2b792c))
|
|
606
|
+
* Add 17 new config properties to config-schema.json ([d6e91418](https://github.com/SienkLogic/plan-build-run/commit/d6e91418))
|
|
128
607
|
|
|
129
|
-
|
|
608
|
+
### Context Management
|
|
130
609
|
|
|
610
|
+
* Add buildCompositionAdvice() for composition-aware compact suggestions ([d7b4b826](https://github.com/SienkLogic/plan-build-run/commit/d7b4b826))
|
|
131
611
|
|
|
132
|
-
###
|
|
612
|
+
### Hooks
|
|
133
613
|
|
|
134
|
-
*
|
|
614
|
+
* Address 5 audit findings — verification, logging, active-skill, status-line ([6f2a2206](https://github.com/SienkLogic/plan-build-run/commit/6f2a2206))
|
|
615
|
+
* Fix remaining require paths in hooks/ copies ([7caeac79](https://github.com/SienkLogic/plan-build-run/commit/7caeac79))
|
|
616
|
+
* Restore correct require paths in hooks/ copies ([51813db6](https://github.com/SienkLogic/plan-build-run/commit/51813db6))
|
|
617
|
+
* Sync config-schema.json and check-plan-format.js copies ([7d0f312c](https://github.com/SienkLogic/plan-build-run/commit/7d0f312c))
|
|
618
|
+
* Correct intel.cjs require path in plugins/ progress-tracker ([eee39941](https://github.com/SienkLogic/plan-build-run/commit/eee39941))
|
|
619
|
+
* Wire intel queue into PostToolUse dispatch chain ([2c5d8cea](https://github.com/SienkLogic/plan-build-run/commit/2c5d8cea))
|
|
620
|
+
* Update suggest-compact.js to use adaptive thresholds from getEffectiveThresholds ([8527646c](https://github.com/SienkLogic/plan-build-run/commit/8527646c))
|
|
621
|
+
* Add context ledger functions to track-context-budget.js ([539476ad](https://github.com/SienkLogic/plan-build-run/commit/539476ad))
|
|
135
622
|
|
|
623
|
+
### Plugin
|
|
136
624
|
|
|
137
|
-
|
|
625
|
+
* Add 18 missing command registrations and CI sync test ([76d4ab5f](https://github.com/SienkLogic/plan-build-run/commit/76d4ab5f))
|
|
138
626
|
|
|
139
|
-
|
|
140
|
-
* **tools:** add milestone routing to explore skill completion ([57c3d9d](https://github.com/SienkLogic/plan-build-run/commit/57c3d9daea154b4bfb9ebe69ad1a09a8c617412d))
|
|
141
|
-
* **tools:** enforce quick task directory creation with CRITICAL markers and hook validation ([c7d61ba](https://github.com/SienkLogic/plan-build-run/commit/c7d61ba333423a228d930ccd6e7d63688f8cbb58))
|
|
627
|
+
### Skills
|
|
142
628
|
|
|
143
|
-
|
|
629
|
+
* Create /pbr:ui-review skill and command registration ([4a6c1144](https://github.com/SienkLogic/plan-build-run/commit/4a6c1144))
|
|
630
|
+
* Create /pbr:ui-phase skill and command registration ([4900272f](https://github.com/SienkLogic/plan-build-run/commit/4900272f))
|
|
631
|
+
* Create /pbr:profile-user skill with session analysis and questionnaire fallback ([c313e457](https://github.com/SienkLogic/plan-build-run/commit/c313e457))
|
|
632
|
+
* Add milestone branch handling to build SKILL.md Step 1 and Step 8d ([fc2a2502](https://github.com/SienkLogic/plan-build-run/commit/fc2a2502))
|
|
633
|
+
* Add milestone branch creation and merge logic to milestone SKILL.md ([6de017a8](https://github.com/SienkLogic/plan-build-run/commit/6de017a8))
|
|
634
|
+
* Add phase branch creation and merge logic to build SKILL.md ([7b5ae499](https://github.com/SienkLogic/plan-build-run/commit/7b5ae499))
|
|
635
|
+
* Add --through flag parsing and multi_phase config gate to plan skill ([733e92f5](https://github.com/SienkLogic/plan-build-run/commit/733e92f5))
|
|
636
|
+
* Add autonomous command registration and sync skill copy ([72edac73](https://github.com/SienkLogic/plan-build-run/commit/72edac73))
|
|
637
|
+
* Create /pbr:autonomous skill with phase chaining loop ([7ad3ddd0](https://github.com/SienkLogic/plan-build-run/commit/7ad3ddd0))
|
|
638
|
+
* Enhance checkpoint auto-resolve with config-driven resolution in build skill ([be60bb15](https://github.com/SienkLogic/plan-build-run/commit/be60bb15))
|
|
639
|
+
* Add --auto flag parsing, gate suppression, and auto-advance chaining to 5 skills ([fc173d11](https://github.com/SienkLogic/plan-build-run/commit/fc173d11))
|
|
640
|
+
* Create /pbr:intel skill and command registration ([7065ef9c](https://github.com/SienkLogic/plan-build-run/commit/7065ef9c))
|
|
641
|
+
* Add inline execution gate to build skill Step 6a ([79e81b8c](https://github.com/SienkLogic/plan-build-run/commit/79e81b8c))
|
|
642
|
+
* Add phase boundary clear protocol to build skill completion output ([6acf2ad7](https://github.com/SienkLogic/plan-build-run/commit/6acf2ad7))
|
|
144
643
|
|
|
644
|
+
### Templates
|
|
145
645
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
###
|
|
154
|
-
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
*
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
646
|
+
* Add new config sections to config.json.tmpl ([9111ce29](https://github.com/SienkLogic/plan-build-run/commit/9111ce29))
|
|
647
|
+
|
|
648
|
+
### Testing
|
|
649
|
+
|
|
650
|
+
* Update counts for new agents/skills/commands from v2.0 milestone ([c01b1812](https://github.com/SienkLogic/plan-build-run/commit/c01b1812))
|
|
651
|
+
* Update migrate tests for schema_version 3 ([008d42d6](https://github.com/SienkLogic/plan-build-run/commit/008d42d6))
|
|
652
|
+
|
|
653
|
+
### Other
|
|
654
|
+
|
|
655
|
+
* Add developer_profile config properties to schema ([b74d2b4f](https://github.com/SienkLogic/plan-build-run/commit/b74d2b4f))
|
|
656
|
+
* Add multi-phase planning loop with accumulated context and cross-phase conflict detection ([25393a1f](https://github.com/SienkLogic/plan-build-run/commit/25393a1f))
|
|
657
|
+
* Add speculative planning to build Step 8e and sync copies ([ca4f8d5a](https://github.com/SienkLogic/plan-build-run/commit/ca4f8d5a))
|
|
658
|
+
* Add confidence-gated verification skip to build Step 7 ([5894bce6](https://github.com/SienkLogic/plan-build-run/commit/5894bce6))
|
|
659
|
+
* Add phase replay enrichment to build Step 6d ([4de2d259](https://github.com/SienkLogic/plan-build-run/commit/4de2d259))
|
|
660
|
+
* Intel queue module with config gating, deduplication, and skip patterns ([deb15898](https://github.com/SienkLogic/plan-build-run/commit/deb15898))
|
|
661
|
+
* Add intel.cjs library module with query, status, diff, and update operations ([821df94b](https://github.com/SienkLogic/plan-build-run/commit/821df94b))
|
|
662
|
+
* Add inline execution decision gate module ([e153d331](https://github.com/SienkLogic/plan-build-run/commit/e153d331))
|
|
663
|
+
* Add getAdaptiveThresholds and getEffectiveThresholds to context-bridge ([8cabf2f7](https://github.com/SienkLogic/plan-build-run/commit/8cabf2f7))
|
|
664
|
+
* Add v2-to-v3 schema migration in migrate.cjs ([8060d301](https://github.com/SienkLogic/plan-build-run/commit/8060d301))
|
|
665
|
+
* Add scope inference and PBR rebranding to changelog cleaner ([76ce001b](https://github.com/SienkLogic/plan-build-run/commit/76ce001b))
|
|
666
|
+
* Add PBR-to-PBR rebranding to changelog cleaning script ([4cfaf37d](https://github.com/SienkLogic/plan-build-run/commit/4cfaf37d))
|
|
667
|
+
|
|
668
|
+
## [2.4.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.3.1...plan-build-run-v2.4.0) — 2026-03-16
|
|
669
|
+
|
|
670
|
+
### Context Management
|
|
671
|
+
|
|
672
|
+
* Add compact-first cycling, pane borders, two-line status bar, session search ([0cc3ee99](https://github.com/SienkLogic/plan-build-run/commit/0cc3ee99))
|
|
673
|
+
|
|
674
|
+
## [2.3.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.3.0...plan-build-run-v2.3.1) — 2026-03-16
|
|
675
|
+
|
|
676
|
+
### CI/CD
|
|
677
|
+
|
|
678
|
+
* Add release concurrency, npm publish guard, and Windows perf tolerance ([15df70c5](https://github.com/SienkLogic/plan-build-run/commit/15df70c5))
|
|
679
|
+
|
|
680
|
+
## [2.3.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.2.0...plan-build-run-v2.3.0) — 2026-03-16
|
|
681
|
+
|
|
682
|
+
### Skills
|
|
683
|
+
|
|
684
|
+
* Add /pbr:release skill and changelog generation to milestone complete ([a1b6207d](https://github.com/SienkLogic/plan-build-run/commit/a1b6207d))
|
|
685
|
+
|
|
686
|
+
## [2.2.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.1.1...plan-build-run-v2.2.0) — 2026-03-16
|
|
687
|
+
|
|
688
|
+
### Other
|
|
689
|
+
|
|
690
|
+
* Restore and enhance pbr-tmux with watch, multi, context-aware cycling ([d16400db](https://github.com/SienkLogic/plan-build-run/commit/d16400db))
|
|
691
|
+
|
|
692
|
+
## [2.1.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.1.0...plan-build-run-v2.1.1) — 2026-03-16
|
|
693
|
+
|
|
694
|
+
### Other
|
|
695
|
+
|
|
696
|
+
* Update validate script to use plugins/pbr/ as plugin root ([d77b233b](https://github.com/SienkLogic/plan-build-run/commit/d77b233b))
|
|
697
|
+
|
|
698
|
+
## [2.1.0](https://github.com/SienkLogic/plan-build-run/commits/plan-build-run-v2.1.0) — 2026-03-16
|
|
699
|
+
|
|
700
|
+
### Agents
|
|
701
|
+
|
|
702
|
+
* Scale synthesizer, codebase-mapper, plan-checker, integration-checker budgets for 1M ([8d37be02](https://github.com/SienkLogic/plan-build-run/commit/8d37be02))
|
|
703
|
+
* Scale planner, executor, debugger, verifier budgets for 1M context ([13db078a](https://github.com/SienkLogic/plan-build-run/commit/13db078a))
|
|
704
|
+
* Add cross-phase verification mode to verifier agent ([8b676c6f](https://github.com/SienkLogic/plan-build-run/commit/8b676c6f))
|
|
705
|
+
* Scale researcher cycles and output budgets for 1M context ([b2abaaf1](https://github.com/SienkLogic/plan-build-run/commit/b2abaaf1))
|
|
706
|
+
* Update all 14 agents with context-aware checkpoint rules ([bdbdfc43](https://github.com/SienkLogic/plan-build-run/commit/bdbdfc43))
|
|
707
|
+
* Standardize agent spawn types across all workflows ([ec5617c7](https://github.com/SienkLogic/plan-build-run/commit/ec5617c7))
|
|
708
|
+
* Add skills frontmatter and hooks examples to all agents ([cbe372a4](https://github.com/SienkLogic/plan-build-run/commit/cbe372a4))
|
|
709
|
+
* Extend anti-heredoc instruction to all file-writing agents ([1a1acd52](https://github.com/SienkLogic/plan-build-run/commit/1a1acd52))
|
|
710
|
+
* Add request_user_input mapping, multi-agent config, and agent role generation ([1455931f](https://github.com/SienkLogic/plan-build-run/commit/1455931f))
|
|
711
|
+
* Use $HOME instead of ~ for pbr-tools.cjs paths to prevent subagent MODULE_NOT_FOUND (#786) ([69b28eec](https://github.com/SienkLogic/plan-build-run/commit/69b28eec))
|
|
712
|
+
* Add analysis paralysis guard, exhaustive cross-check, and task-level TDD (#736) ([aaea14ef](https://github.com/SienkLogic/plan-build-run/commit/aaea14ef))
|
|
713
|
+
* Support both `.claude/skills/` and `.agents/skills/` for skill discovery (#759) ([eb1388c2](https://github.com/SienkLogic/plan-build-run/commit/eb1388c2))
|
|
714
|
+
* Propagate phase_req_ids from ROADMAP to workflow agents (#684) (#702) ([ea3c22d3](https://github.com/SienkLogic/plan-build-run/commit/ea3c22d3))
|
|
715
|
+
* Add project CLAUDE.md discovery to subagent spawn points ([8fd7d0b6](https://github.com/SienkLogic/plan-build-run/commit/8fd7d0b6))
|
|
716
|
+
* Add project skill discovery to subagent spawn points ([270b6c4a](https://github.com/SienkLogic/plan-build-run/commit/270b6c4a))
|
|
717
|
+
* Use inline Task() syntax for map-codebase agent spawning ([f77252cc](https://github.com/SienkLogic/plan-build-run/commit/f77252cc))
|
|
718
|
+
* Executor updates ROADMAP.md and REQUIREMENTS.md per-plan ([1764abc6](https://github.com/SienkLogic/plan-build-run/commit/1764abc6))
|
|
719
|
+
* Escape shell variables in agent bodies for Gemini CLI ([e449c5af](https://github.com/SienkLogic/plan-build-run/commit/e449c5af))
|
|
720
|
+
* Convert general-purpose subagent to OpenCode's "general" ([474b75ea](https://github.com/SienkLogic/plan-build-run/commit/474b75ea))
|
|
721
|
+
* Add scope boundary and fix attempt limit to executor (closes #490) ([8b75531b](https://github.com/SienkLogic/plan-build-run/commit/8b75531b))
|
|
722
|
+
* Use Write tool for file creation to prevent settings.local.json corruption ([c4ea3589](https://github.com/SienkLogic/plan-build-run/commit/c4ea3589))
|
|
723
|
+
* Return 'inherit' instead of 'opus' for model resolution (#558) ([2b9951b9](https://github.com/SienkLogic/plan-build-run/commit/2b9951b9))
|
|
724
|
+
* Add Write tool to pbr-verifier and document verifier bug root cause (#545) ([173ff7a0](https://github.com/SienkLogic/plan-build-run/commit/173ff7a0))
|
|
725
|
+
* Explicitly specify subagent_type="pbr-executor" ([42495068](https://github.com/SienkLogic/plan-build-run/commit/42495068))
|
|
726
|
+
* Researcher agent always writes RESEARCH.md regardless of commit_docs ([161aa611](https://github.com/SienkLogic/plan-build-run/commit/161aa611))
|
|
727
|
+
* Pass CONTEXT.md to all downstream agents ([32571390](https://github.com/SienkLogic/plan-build-run/commit/32571390))
|
|
728
|
+
* Gemini CLI agent loading errors (#347) ([5660b6fc](https://github.com/SienkLogic/plan-build-run/commit/5660b6fc))
|
|
729
|
+
* Use general-purpose agent for MCP-dependent subagents ([314916ba](https://github.com/SienkLogic/plan-build-run/commit/314916ba))
|
|
730
|
+
* Add model profiles for PBR agents ([4218f866](https://github.com/SienkLogic/plan-build-run/commit/4218f866))
|
|
731
|
+
* Add workflow agent settings to project init ([fbd5068b](https://github.com/SienkLogic/plan-build-run/commit/fbd5068b))
|
|
732
|
+
* Implement pbr-executor spawn for quick mode ([563bcdf7](https://github.com/SienkLogic/plan-build-run/commit/563bcdf7))
|
|
733
|
+
* Implement pbr-planner spawn for quick mode ([58bd6462](https://github.com/SienkLogic/plan-build-run/commit/58bd6462))
|
|
734
|
+
* Correct agent name in research-phase heading ([92b48937](https://github.com/SienkLogic/plan-build-run/commit/92b48937))
|
|
735
|
+
* Remove hardcoded 2025 year from search query examples ([6ad1d0a3](https://github.com/SienkLogic/plan-build-run/commit/6ad1d0a3))
|
|
736
|
+
* Add pbr-meta subagent for instant PBR expertise ([694bd151](https://github.com/SienkLogic/plan-build-run/commit/694bd151))
|
|
737
|
+
* Remove dead pbr-researcher agent references (#180) ([a6f7ff2e](https://github.com/SienkLogic/plan-build-run/commit/a6f7ff2e))
|
|
738
|
+
* Update agent output collection method ([fe94aaa0](https://github.com/SienkLogic/plan-build-run/commit/fe94aaa0))
|
|
739
|
+
* Consistent zero-padding and file naming across agents ([339e0613](https://github.com/SienkLogic/plan-build-run/commit/339e0613))
|
|
740
|
+
* Remove commit capability from project researcher agent ([1f8c112f](https://github.com/SienkLogic/plan-build-run/commit/1f8c112f))
|
|
741
|
+
* Synthesizer commits all research files together ([3ca4f0a4](https://github.com/SienkLogic/plan-build-run/commit/3ca4f0a4))
|
|
742
|
+
* Add pbr-research-synthesizer agent for SUMMARY.md creation ([1d155e97](https://github.com/SienkLogic/plan-build-run/commit/1d155e97))
|
|
743
|
+
* Integrate research into plan-phase with specialized agents ([2144960c](https://github.com/SienkLogic/plan-build-run/commit/2144960c))
|
|
744
|
+
* Add planner -> checker verification loop to plan-phase ([fb0ba884](https://github.com/SienkLogic/plan-build-run/commit/fb0ba884))
|
|
745
|
+
* Add revision_mode section to pbr-planner ([6b31a920](https://github.com/SienkLogic/plan-build-run/commit/6b31a920))
|
|
746
|
+
* Create pbr-plan-checker agent ([47eab1a2](https://github.com/SienkLogic/plan-build-run/commit/47eab1a2))
|
|
747
|
+
* Create planner-subagent-prompt.md template ([70fa2ad7](https://github.com/SienkLogic/plan-build-run/commit/70fa2ad7))
|
|
748
|
+
* Create pbr-planner agent file ([1f45befe](https://github.com/SienkLogic/plan-build-run/commit/1f45befe))
|
|
749
|
+
* Remove zombie pbr-milestone-auditor agent ([32e68cde](https://github.com/SienkLogic/plan-build-run/commit/32e68cde))
|
|
750
|
+
* Add dedicated codebase mapper agent ([411b5a36](https://github.com/SienkLogic/plan-build-run/commit/411b5a36))
|
|
751
|
+
* Add research-subagent-prompt.md template ([faaeae25](https://github.com/SienkLogic/plan-build-run/commit/faaeae25))
|
|
752
|
+
* Create pbr-researcher agent with research methodology ([2f8b5517](https://github.com/SienkLogic/plan-build-run/commit/2f8b5517))
|
|
753
|
+
* Create pbr-debugger agent with consolidated debugging expertise ([7cefaf11](https://github.com/SienkLogic/plan-build-run/commit/7cefaf11))
|
|
754
|
+
* Include agents folder in npm package ([d07ef333](https://github.com/SienkLogic/plan-build-run/commit/d07ef333))
|
|
755
|
+
* Add pbr-verifier subagent for phase goal verification ([f3f6707c](https://github.com/SienkLogic/plan-build-run/commit/f3f6707c))
|
|
756
|
+
* Update remaining general-purpose refs to pbr-executor ([82c522b8](https://github.com/SienkLogic/plan-build-run/commit/82c522b8))
|
|
757
|
+
* Add pbr-executor subagent with dedicated plan execution logic ([b2646c89](https://github.com/SienkLogic/plan-build-run/commit/b2646c89))
|
|
758
|
+
* Subagent isolation for investigation with checkpoint support ([00208b71](https://github.com/SienkLogic/plan-build-run/commit/00208b71))
|
|
759
|
+
* Replace resume with fresh continuation agents ([69300f97](https://github.com/SienkLogic/plan-build-run/commit/69300f97))
|
|
760
|
+
* Remove subagent-only context from orchestrator ([0dd4cedf](https://github.com/SienkLogic/plan-build-run/commit/0dd4cedf))
|
|
761
|
+
* Add checkpoint pause/resume for spawned agents ([72da23de](https://github.com/SienkLogic/plan-build-run/commit/72da23de))
|
|
762
|
+
* Add one-subagent-per-plan constraint ([b810d1dd](https://github.com/SienkLogic/plan-build-run/commit/b810d1dd))
|
|
763
|
+
* Add /pbr:status for parallel agent monitoring ([52ce9811](https://github.com/SienkLogic/plan-build-run/commit/52ce9811))
|
|
764
|
+
* Add parallel execution examples to agent-history ([cc7e0788](https://github.com/SienkLogic/plan-build-run/commit/cc7e0788))
|
|
765
|
+
* Update agent-history schema to v1.2 ([eaed8822](https://github.com/SienkLogic/plan-build-run/commit/eaed8822))
|
|
766
|
+
* Add subagent resume capability ([6ba85071](https://github.com/SienkLogic/plan-build-run/commit/6ba85071))
|
|
767
|
+
* Implement parallel Explore agent orchestration ([8a0dcd66](https://github.com/SienkLogic/plan-build-run/commit/8a0dcd66))
|
|
768
|
+
* Research subagent prompt templates ([08539ffd](https://github.com/SienkLogic/plan-build-run/commit/08539ffd))
|
|
769
|
+
|
|
770
|
+
### CI/CD
|
|
771
|
+
|
|
772
|
+
* Plan-Build-Run v2.0.0 — structured development workflow for Claude Code ([99ec00a0](https://github.com/SienkLogic/plan-build-run/commit/99ec00a0))
|
|
773
|
+
* Complete toPosixPath coverage for Windows output paths ([15226feb](https://github.com/SienkLogic/plan-build-run/commit/15226feb))
|
|
774
|
+
* Propagate coverage env in cross-platform test runner ([02a53197](https://github.com/SienkLogic/plan-build-run/commit/02a53197))
|
|
775
|
+
* Cross-platform test runner for Windows glob expansion ([ccb8ae1d](https://github.com/SienkLogic/plan-build-run/commit/ccb8ae1d))
|
|
776
|
+
* Use bash shell on Windows for glob expansion in test steps ([ffc1a2ef](https://github.com/SienkLogic/plan-build-run/commit/ffc1a2ef))
|
|
777
|
+
* Pin action SHAs and enforce coverage on all events ([f9fc2a3f](https://github.com/SienkLogic/plan-build-run/commit/f9fc2a3f))
|
|
778
|
+
* Add Node 18 skip condition for c8 v11 coverage step ([89649912](https://github.com/SienkLogic/plan-build-run/commit/89649912))
|
|
779
|
+
* Add c8 coverage tooling with 70% line threshold ([97d2136c](https://github.com/SienkLogic/plan-build-run/commit/97d2136c))
|
|
780
|
+
* Add CI status badge to README ([ad7c79aa](https://github.com/SienkLogic/plan-build-run/commit/ad7c79aa))
|
|
781
|
+
* Create GitHub Actions test workflow ([9aa96957](https://github.com/SienkLogic/plan-build-run/commit/9aa96957))
|
|
782
|
+
* Add auto-advance pipeline (--auto flag + workflow.auto_advance config) ([ed176840](https://github.com/SienkLogic/plan-build-run/commit/ed176840))
|
|
783
|
+
* Delegate deterministic workflow operations to pbr-tools CLI ([36f5bb3d](https://github.com/SienkLogic/plan-build-run/commit/36f5bb3d))
|
|
784
|
+
* Commit package-lock.json for reproducible builds ([1cf19751](https://github.com/SienkLogic/plan-build-run/commit/1cf19751))
|
|
785
|
+
* Add CI/CD and release automation ([a3a16be2](https://github.com/SienkLogic/plan-build-run/commit/a3a16be2))
|
|
786
|
+
* Add model_profile config and clarify workflow questions ([e7ceaf64](https://github.com/SienkLogic/plan-build-run/commit/e7ceaf64))
|
|
787
|
+
* Add /pbr:settings command for workflow toggles ([cffb3f24](https://github.com/SienkLogic/plan-build-run/commit/cffb3f24))
|
|
788
|
+
* Add commit_docs option to workflow preferences ([a1935c2d](https://github.com/SienkLogic/plan-build-run/commit/a1935c2d))
|
|
789
|
+
* Remove /pbr:research-phase from workflow suggestions ([15d4e270](https://github.com/SienkLogic/plan-build-run/commit/15d4e270))
|
|
790
|
+
* Add deviation rules, commit rules, and workflow references ([46cf4b11](https://github.com/SienkLogic/plan-build-run/commit/46cf4b11))
|
|
791
|
+
* Add read_parallelization_config step to plan-phase workflow ([8e67241e](https://github.com/SienkLogic/plan-build-run/commit/8e67241e))
|
|
792
|
+
* Create execute-phase.md workflow structure ([af7720c9](https://github.com/SienkLogic/plan-build-run/commit/af7720c9))
|
|
793
|
+
* Create verify-work workflow ([a9a9efff](https://github.com/SienkLogic/plan-build-run/commit/a9a9efff))
|
|
794
|
+
* Add git commit step to map-codebase workflow ([21387f8f](https://github.com/SienkLogic/plan-build-run/commit/21387f8f))
|
|
795
|
+
* /pbr:map-codebase command and workflow skeleton ([cfde2916](https://github.com/SienkLogic/plan-build-run/commit/cfde2916))
|
|
796
|
+
* /pbr:create-roadmap command with research-aware workflow ([a3c35145](https://github.com/SienkLogic/plan-build-run/commit/a3c35145))
|
|
797
|
+
|
|
798
|
+
### CLI Tools
|
|
799
|
+
|
|
800
|
+
* Add context_window_tokens to portableKeys in config.js and config.cjs ([16893262](https://github.com/SienkLogic/plan-build-run/commit/16893262))
|
|
801
|
+
* Support both bold and plain field formats in all state.cjs functions ([8c017034](https://github.com/SienkLogic/plan-build-run/commit/8c017034))
|
|
802
|
+
* Preserve multi-word commit messages in CLI router ([4155e673](https://github.com/SienkLogic/plan-build-run/commit/4155e673))
|
|
803
|
+
* Add YAML frontmatter sync to STATE.md for machine readability ([0ca1a59a](https://github.com/SienkLogic/plan-build-run/commit/0ca1a59a))
|
|
804
|
+
* Map requirements-completed frontmatter in summary-extract (#627) (#716) ([0176a3ec](https://github.com/SienkLogic/plan-build-run/commit/0176a3ec))
|
|
805
|
+
* Frontmatter CRUD, verification suite, template fill, state progression (#485) ([6a2d1f1b](https://github.com/SienkLogic/plan-build-run/commit/6a2d1f1b))
|
|
806
|
+
* Use frontmatter for categorization and wave calculation ([5c8e5dff](https://github.com/SienkLogic/plan-build-run/commit/5c8e5dff))
|
|
807
|
+
* Read parallelization frontmatter in execute-phase ([9fcc2a44](https://github.com/SienkLogic/plan-build-run/commit/9fcc2a44))
|
|
808
|
+
* Add parallelization frontmatter to write_phase_prompt ([31a77ae1](https://github.com/SienkLogic/plan-build-run/commit/31a77ae1))
|
|
809
|
+
* Add parallelization frontmatter to phase-prompt template ([560ef346](https://github.com/SienkLogic/plan-build-run/commit/560ef346))
|
|
810
|
+
* Intelligent context assembly via frontmatter dependency graph ([b26cbe69](https://github.com/SienkLogic/plan-build-run/commit/b26cbe69))
|
|
811
|
+
* YAML frontmatter schema with dependency graph metadata enabling automatic context assembly ([3307c05f](https://github.com/SienkLogic/plan-build-run/commit/3307c05f))
|
|
812
|
+
|
|
813
|
+
### Configuration
|
|
814
|
+
|
|
815
|
+
* Add user-level default settings via ~/.claude/defaults.json (closes #492) ([37bb14ea](https://github.com/SienkLogic/plan-build-run/commit/37bb14ea))
|
|
816
|
+
* Add per-agent model overrides (#510) ([a5caf919](https://github.com/SienkLogic/plan-build-run/commit/a5caf919))
|
|
817
|
+
* Auto-create config.json when missing (#264) ([4dff9899](https://github.com/SienkLogic/plan-build-run/commit/4dff9899))
|
|
818
|
+
* Split new-project to only create PROJECT.md + config.json ([5182cec7](https://github.com/SienkLogic/plan-build-run/commit/5182cec7))
|
|
819
|
+
|
|
820
|
+
### Context Management
|
|
821
|
+
|
|
822
|
+
* Scale context-bridge and lib/context thresholds from config ([8c6b6e9e](https://github.com/SienkLogic/plan-build-run/commit/8c6b6e9e))
|
|
823
|
+
* Scale context bar to show 100% at actual 80% limit ([87b2cd0e](https://github.com/SienkLogic/plan-build-run/commit/87b2cd0e))
|
|
824
|
+
* TDD features use dedicated plans for full context quality ([85f0ea5c](https://github.com/SienkLogic/plan-build-run/commit/85f0ea5c))
|
|
825
|
+
|
|
826
|
+
### Hooks
|
|
827
|
+
|
|
828
|
+
* Apply threshold scaling to hooks/ copies and fix config cache paths ([52e781c3](https://github.com/SienkLogic/plan-build-run/commit/52e781c3))
|
|
829
|
+
* Add allow logging to PreToolUse dispatch scripts for visibility ([b7318288](https://github.com/SienkLogic/plan-build-run/commit/b7318288))
|
|
830
|
+
* Scale track-context-budget and suggest-compact from config ([86fd842c](https://github.com/SienkLogic/plan-build-run/commit/86fd842c))
|
|
831
|
+
* Make context monitor advisory instead of imperative ([07f44cc1](https://github.com/SienkLogic/plan-build-run/commit/07f44cc1))
|
|
832
|
+
* Respect CLAUDE_CONFIG_DIR for custom config directories ([90e7d308](https://github.com/SienkLogic/plan-build-run/commit/90e7d308))
|
|
833
|
+
* Add stdin timeout guard to prevent hook errors ([7554503b](https://github.com/SienkLogic/plan-build-run/commit/7554503b))
|
|
834
|
+
* Correct statusline context scaling to match autocompact buffer ([59dfad97](https://github.com/SienkLogic/plan-build-run/commit/59dfad97))
|
|
835
|
+
* Use AfterTool instead of PostToolUse for Gemini CLI hooks ([630a705b](https://github.com/SienkLogic/plan-build-run/commit/630a705b))
|
|
836
|
+
* Context window monitor hook with agent-side WARNING/CRITICAL alerts ([7542d364](https://github.com/SienkLogic/plan-build-run/commit/7542d364))
|
|
837
|
+
* Quote config dir in hook templates for local installs (#605) ([c5fbd051](https://github.com/SienkLogic/plan-build-run/commit/c5fbd051))
|
|
838
|
+
* Template hook paths for OpenCode/Gemini runtimes (#585) ([9a7bb22e](https://github.com/SienkLogic/plan-build-run/commit/9a7bb22e))
|
|
839
|
+
* Build hooks/dist on the fly for dev installs (#413) ([e146b084](https://github.com/SienkLogic/plan-build-run/commit/e146b084))
|
|
840
|
+
* Add detached: true to SessionStart hook spawn for Windows ([1344bd8f](https://github.com/SienkLogic/plan-build-run/commit/1344bd8f))
|
|
841
|
+
* Use absolute paths for hook commands on Windows (#207) ([a1d60b71](https://github.com/SienkLogic/plan-build-run/commit/a1d60b71))
|
|
842
|
+
* Rename statusline.js to pbr-statusline.js for consistent hook naming ([900fc95e](https://github.com/SienkLogic/plan-build-run/commit/900fc95e))
|
|
843
|
+
* Simplify SessionStart hook + gitignore intel/ ([9099d484](https://github.com/SienkLogic/plan-build-run/commit/9099d484))
|
|
844
|
+
* Add Stop hook to prune deleted files ([fa48a13c](https://github.com/SienkLogic/plan-build-run/commit/fa48a13c))
|
|
845
|
+
* Make PostToolUse hook opt-in only ([f0b8afe7](https://github.com/SienkLogic/plan-build-run/commit/f0b8afe7))
|
|
846
|
+
* Create SessionStart context injection hook ([a3521161](https://github.com/SienkLogic/plan-build-run/commit/a3521161))
|
|
847
|
+
* Update check now finds VERSION in local project installs (#166) ([c033a85e](https://github.com/SienkLogic/plan-build-run/commit/c033a85e))
|
|
848
|
+
* Prevent console window flash on Windows (#167) ([3fb6bfbb](https://github.com/SienkLogic/plan-build-run/commit/3fb6bfbb))
|
|
849
|
+
* Windows hook support via Node.js conversion ([967734df](https://github.com/SienkLogic/plan-build-run/commit/967734df))
|
|
850
|
+
* Remove stale STATE.md from notify hook ([b0da21ba](https://github.com/SienkLogic/plan-build-run/commit/b0da21ba))
|
|
851
|
+
* Match STATE.md field names in notify hook ([055cc24e](https://github.com/SienkLogic/plan-build-run/commit/055cc24e))
|
|
852
|
+
* Add cross-platform completion notification hook ([35989f20](https://github.com/SienkLogic/plan-build-run/commit/35989f20))
|
|
853
|
+
|
|
854
|
+
### Plugin
|
|
855
|
+
|
|
856
|
+
* Remove "execution" from plan-phase description to fix autocomplete (#518) ([7ed1ec89](https://github.com/SienkLogic/plan-build-run/commit/7ed1ec89))
|
|
857
|
+
|
|
858
|
+
### Skills
|
|
859
|
+
|
|
860
|
+
* Add pre-spawn conflict detection to build skill at 1M context ([ff8a80e3](https://github.com/SienkLogic/plan-build-run/commit/ff8a80e3))
|
|
861
|
+
* Surface cross-phase findings in review and build skills ([f9726d26](https://github.com/SienkLogic/plan-build-run/commit/f9726d26))
|
|
862
|
+
* Add multi-phase lookahead to continue skill at 1M context ([089f0691](https://github.com/SienkLogic/plan-build-run/commit/089f0691))
|
|
863
|
+
* Update build, plan, review, explore skills with 1M read depth ([c3327a19](https://github.com/SienkLogic/plan-build-run/commit/c3327a19))
|
|
864
|
+
* Add context-aware read depth to shared skill fragments ([ee2b33b5](https://github.com/SienkLogic/plan-build-run/commit/ee2b33b5))
|
|
865
|
+
* Add missing skills frontmatter to pbr-nyquist-auditor ([73efecca](https://github.com/SienkLogic/plan-build-run/commit/73efecca))
|
|
866
|
+
* Use Skill instead of Task for auto-advance phase transitions ([b3e3e3dd](https://github.com/SienkLogic/plan-build-run/commit/b3e3e3dd))
|
|
867
|
+
* Auto-advance chain broken — Skills don't resolve inside Task subagents (#669) ([131f24b5](https://github.com/SienkLogic/plan-build-run/commit/131f24b5))
|
|
868
|
+
* Add codex skills-first installer runtime ([5a733dca](https://github.com/SienkLogic/plan-build-run/commit/5a733dca))
|
|
869
|
+
|
|
870
|
+
### Templates
|
|
871
|
+
|
|
872
|
+
* Add context_window_tokens to config schemas and template ([1f66e155](https://github.com/SienkLogic/plan-build-run/commit/1f66e155))
|
|
873
|
+
* Align resolve-model variable names with template placeholders (#737) ([b5bd9c2b](https://github.com/SienkLogic/plan-build-run/commit/b5bd9c2b))
|
|
874
|
+
* Add parallelization config to config.json template ([8b8b5d62](https://github.com/SienkLogic/plan-build-run/commit/8b8b5d62))
|
|
875
|
+
* Create UAT issues template ([654b066d](https://github.com/SienkLogic/plan-build-run/commit/654b066d))
|
|
876
|
+
* Restore plan-format.md - output template, not instructional content ([1609618e](https://github.com/SienkLogic/plan-build-run/commit/1609618e))
|
|
877
|
+
* Research-project command, workflow, and template ([c7a88a6a](https://github.com/SienkLogic/plan-build-run/commit/c7a88a6a))
|
|
878
|
+
|
|
879
|
+
### Testing
|
|
880
|
+
|
|
881
|
+
* Auto-inject cold-start smoke test for server/db phases ([40be3b05](https://github.com/SienkLogic/plan-build-run/commit/40be3b05))
|
|
882
|
+
* Remove MEDIUM severity test overfitting in config.test.cjs ([898b82de](https://github.com/SienkLogic/plan-build-run/commit/898b82de))
|
|
883
|
+
* Remove HIGH severity test overfitting in 4 test files ([c9e73e9c](https://github.com/SienkLogic/plan-build-run/commit/c9e73e9c))
|
|
884
|
+
* Add comprehensive validate-health test suite ([0342886e](https://github.com/SienkLogic/plan-build-run/commit/0342886e))
|
|
885
|
+
* Add createTempGitProject helper to tests/helpers.cjs ([339966e2](https://github.com/SienkLogic/plan-build-run/commit/339966e2))
|
|
886
|
+
* Add state-snapshot after test generation ([d9058210](https://github.com/SienkLogic/plan-build-run/commit/d9058210))
|
|
887
|
+
|
|
888
|
+
### Other
|
|
889
|
+
|
|
890
|
+
* Guard agent_checkpoint_pct > 50 on context_window_tokens >= 500k ([73573af8](https://github.com/SienkLogic/plan-build-run/commit/73573af8))
|
|
891
|
+
* Add agent_checkpoint_pct to config schema and profiles ([61e6778e](https://github.com/SienkLogic/plan-build-run/commit/61e6778e))
|
|
892
|
+
* Resolve @file: protocol in all INIT consumers for Windows compatibility (#841) ([517ee0dc](https://github.com/SienkLogic/plan-build-run/commit/517ee0dc))
|
|
893
|
+
* Add --discuss flag to /pbr:quick for lightweight pre-planning discussion (#861) ([a7c08bfb](https://github.com/SienkLogic/plan-build-run/commit/a7c08bfb))
|
|
894
|
+
* Harden Nyquist defaults, add retroactive validation, compress prompts (#855) ([ef032bc8](https://github.com/SienkLogic/plan-build-run/commit/ef032bc8))
|
|
895
|
+
* Replace $HOME/.claude paths for non-Claude runtimes ([e2b6179b](https://github.com/SienkLogic/plan-build-run/commit/e2b6179b))
|
|
896
|
+
* Prevent auto_advance config from persisting across sessions ([609f7f3e](https://github.com/SienkLogic/plan-build-run/commit/609f7f3e))
|
|
897
|
+
* Disambiguate local vs global install when CWD is HOME ([1c6f4fe1](https://github.com/SienkLogic/plan-build-run/commit/1c6f4fe1))
|
|
898
|
+
* Compute wave numbers for gap closure plans ([dacd0bee](https://github.com/SienkLogic/plan-build-run/commit/dacd0bee))
|
|
899
|
+
* Deduplicate extractField into shared helper with regex escaping ([641cdbda](https://github.com/SienkLogic/plan-build-run/commit/641cdbda))
|
|
900
|
+
* Deduplicate phase filter and handle empty MILESTONES.md ([8b8d1074](https://github.com/SienkLogic/plan-build-run/commit/8b8d1074))
|
|
901
|
+
* Escape reqId in regex patterns to prevent injection ([22fe139e](https://github.com/SienkLogic/plan-build-run/commit/22fe139e))
|
|
902
|
+
* Break freeform answer loop in AskUserQuestion ([b0e5717e](https://github.com/SienkLogic/plan-build-run/commit/b0e5717e))
|
|
903
|
+
* Derive total_phases from ROADMAP when phases lack directories ([e1b32778](https://github.com/SienkLogic/plan-build-run/commit/e1b32778))
|
|
904
|
+
* Scope phase counting to current milestone ([b863ed6d](https://github.com/SienkLogic/plan-build-run/commit/b863ed6d))
|
|
905
|
+
* Load prior context before gray area identification ([30ecb567](https://github.com/SienkLogic/plan-build-run/commit/30ecb567))
|
|
906
|
+
* Replace echo with printf in shell snippets to prevent jq parse errors ([4010e3ff](https://github.com/SienkLogic/plan-build-run/commit/4010e3ff))
|
|
907
|
+
* Detect runtime config directory instead of hardcoding .claude ([77dfd2e0](https://github.com/SienkLogic/plan-build-run/commit/77dfd2e0))
|
|
908
|
+
* Support both bold and plain field formats in state parsing ([78eaabc3](https://github.com/SienkLogic/plan-build-run/commit/78eaabc3))
|
|
909
|
+
* Prefer in-progress milestone marker in getMilestoneInfo ([81a6aaad](https://github.com/SienkLogic/plan-build-run/commit/81a6aaad))
|
|
910
|
+
* Add ROADMAP.md fallback to cmdPhaseComplete next-phase scan ([4e00c500](https://github.com/SienkLogic/plan-build-run/commit/4e00c500))
|
|
911
|
+
* Add --no-index to isGitIgnored for tracked file detection (#703) ([061dadfa](https://github.com/SienkLogic/plan-build-run/commit/061dadfa))
|
|
912
|
+
* Clear both cache paths after update (#663) (#664) ([19ac77e2](https://github.com/SienkLogic/plan-build-run/commit/19ac77e2))
|
|
913
|
+
* Statusline migration regex too broad, clobbers third-party statuslines (#670) ([dba401fe](https://github.com/SienkLogic/plan-build-run/commit/dba401fe))
|
|
914
|
+
* Code-aware discuss phase with codebase scouting (#727) ([37582f8f](https://github.com/SienkLogic/plan-build-run/commit/37582f8f))
|
|
915
|
+
* Escape regex metacharacters in stateExtractField (#741) ([ff3e2fd5](https://github.com/SienkLogic/plan-build-run/commit/ff3e2fd5))
|
|
916
|
+
* Load model_overrides from config and use resolveModelInternal in CLI (#739) ([31c8a91e](https://github.com/SienkLogic/plan-build-run/commit/31c8a91e))
|
|
917
|
+
* Load nyquist_validation from config (#740) ([93c9def0](https://github.com/SienkLogic/plan-build-run/commit/93c9def0))
|
|
918
|
+
* Phase-plan-index returns null/empty for files_modified, objective, task_count (#734) ([3a417522](https://github.com/SienkLogic/plan-build-run/commit/3a417522))
|
|
919
|
+
* Expect forward-slash paths in cmdInitTodos assertion ([011df21d](https://github.com/SienkLogic/plan-build-run/commit/011df21d))
|
|
920
|
+
* Cross-platform path separators, JSON quoting, and dollar signs ([9c27da02](https://github.com/SienkLogic/plan-build-run/commit/9c27da02))
|
|
921
|
+
* Insert MILESTONES.md entries in reverse chronological order ([732ea09f](https://github.com/SienkLogic/plan-build-run/commit/732ea09f))
|
|
922
|
+
* Scope stats, accomplishments, and archive to current milestone phases ([367149d0](https://github.com/SienkLogic/plan-build-run/commit/367149d0))
|
|
923
|
+
* GetMilestoneInfo() returns wrong version after milestone completion (#768) ([38c19466](https://github.com/SienkLogic/plan-build-run/commit/38c19466))
|
|
924
|
+
* Load model_overrides from config and use resolveModelInternal in CLI ([752e0389](https://github.com/SienkLogic/plan-build-run/commit/752e0389))
|
|
925
|
+
* Improve onboarding UX with /pbr:new-project as default command ([5cb2e740](https://github.com/SienkLogic/plan-build-run/commit/5cb2e740))
|
|
926
|
+
* Planning improvements — PRD express path, interface-first planning, living retrospective (#644) ([3fddd62d](https://github.com/SienkLogic/plan-build-run/commit/3fddd62d))
|
|
927
|
+
* Add standard project_context block ([2fc9b1d6](https://github.com/SienkLogic/plan-build-run/commit/2fc9b1d6))
|
|
928
|
+
* Handle multi-level decimal phases and escape regex in phase operations (#720) ([bc774562](https://github.com/SienkLogic/plan-build-run/commit/bc774562))
|
|
929
|
+
* Clamp progress bar percent to prevent RangeError crash (#715) ([3704829a](https://github.com/SienkLogic/plan-build-run/commit/3704829a))
|
|
930
|
+
* Support --cwd override for state-snapshot ([3a56a207](https://github.com/SienkLogic/plan-build-run/commit/3a56a207))
|
|
931
|
+
* Prevent workflows and templates from being incorrectly converted to TOML ([2c0db8ea](https://github.com/SienkLogic/plan-build-run/commit/2c0db8ea))
|
|
932
|
+
* Add Nyquist validation layer to plan-phase pipeline ([e0f9c738](https://github.com/SienkLogic/plan-build-run/commit/e0f9c738))
|
|
933
|
+
* Add option highlighting and gray area looping ([e3dda453](https://github.com/SienkLogic/plan-build-run/commit/e3dda453))
|
|
934
|
+
* Create backup before STATE.md regeneration ([bf2f5710](https://github.com/SienkLogic/plan-build-run/commit/bf2f5710))
|
|
935
|
+
* Install PBR commands as prompts for '/' menu discoverability ([db1d003d](https://github.com/SienkLogic/plan-build-run/commit/db1d003d))
|
|
936
|
+
* Convert Task() calls to codex exec during install ([87c38734](https://github.com/SienkLogic/plan-build-run/commit/87c38734))
|
|
937
|
+
* Universal phase number parsing with comparePhaseNum helper ([7461b3d2](https://github.com/SienkLogic/plan-build-run/commit/7461b3d2))
|
|
938
|
+
* Tighten milestone audit requirements verification with 3-source cross-reference ([2f258956](https://github.com/SienkLogic/plan-build-run/commit/2f258956))
|
|
939
|
+
* Close requirements verification loop and enforce MUST language ([9ef582ef](https://github.com/SienkLogic/plan-build-run/commit/9ef582ef))
|
|
940
|
+
* Requirements tracking chain — strip brackets, add requirements field to plans and summaries ([cbf80941](https://github.com/SienkLogic/plan-build-run/commit/cbf80941))
|
|
941
|
+
* Persist auto-advance to config and bypass checkpoints ([49936786](https://github.com/SienkLogic/plan-build-run/commit/49936786))
|
|
942
|
+
* Warn when planning without user context or discussing after plans exist ([fc347d5c](https://github.com/SienkLogic/plan-build-run/commit/fc347d5c))
|
|
943
|
+
* Wire --auto from new-project into phase chain ([b27034b7](https://github.com/SienkLogic/plan-build-run/commit/b27034b7))
|
|
944
|
+
* Add --full flag for plan-checking and verification ([7510a8a8](https://github.com/SienkLogic/plan-build-run/commit/7510a8a8))
|
|
945
|
+
* Chain phase execution across full milestone ([1dcedb63](https://github.com/SienkLogic/plan-build-run/commit/1dcedb63))
|
|
946
|
+
* Add /pbr:health command for planning directory validation ([cb7d4dbc](https://github.com/SienkLogic/plan-build-run/commit/cb7d4dbc))
|
|
947
|
+
* Respect commit_docs when merging branches in complete-milestone ([99c5c410](https://github.com/SienkLogic/plan-build-run/commit/99c5c410))
|
|
948
|
+
* Add .gitkeep to phase directories for git tracking ([0f2a3faf](https://github.com/SienkLogic/plan-build-run/commit/0f2a3faf))
|
|
949
|
+
* Use correct config path for local OpenCode installs ([0dde9798](https://github.com/SienkLogic/plan-build-run/commit/0dde9798))
|
|
950
|
+
* Archive completed milestone phase directories (closes #489) ([41cb7455](https://github.com/SienkLogic/plan-build-run/commit/41cb7455))
|
|
951
|
+
* Write large JSON payloads to tmpfile to prevent truncation (closes #493) ([8d977328](https://github.com/SienkLogic/plan-build-run/commit/8d977328))
|
|
952
|
+
* Support #### heading depth in phase matching ([9aeafc0f](https://github.com/SienkLogic/plan-build-run/commit/9aeafc0f))
|
|
953
|
+
* Normalize phase padding in insert command (closes #494) ([afb93a37](https://github.com/SienkLogic/plan-build-run/commit/afb93a37))
|
|
954
|
+
* Rename pbr-tools.js to .cjs to prevent ESM conflicts (closes #495) ([24b933e0](https://github.com/SienkLogic/plan-build-run/commit/24b933e0))
|
|
955
|
+
* Consistent phase transition routing through discuss-phase (#530) ([91e4ef77](https://github.com/SienkLogic/plan-build-run/commit/91e4ef77))
|
|
956
|
+
* Deterministic ROADMAP progress table updates from disk (#537) ([c8827fed](https://github.com/SienkLogic/plan-build-run/commit/c8827fed))
|
|
957
|
+
* Use ROADMAP Success Criteria instead of deriving truths from Goal (#538) ([4fb04287](https://github.com/SienkLogic/plan-build-run/commit/4fb04287))
|
|
958
|
+
* Update REQUIREMENTS.md traceability when phase completes ([a142002d](https://github.com/SienkLogic/plan-build-run/commit/a142002d))
|
|
959
|
+
* Update STATE.md after discuss-phase completes (#556) ([dcdb31cd](https://github.com/SienkLogic/plan-build-run/commit/dcdb31cd))
|
|
960
|
+
* Enforce 12-char AskUserQuestion header limit (#559) ([765476ea](https://github.com/SienkLogic/plan-build-run/commit/765476ea))
|
|
961
|
+
* Close parent UAT and debug artifacts after gap-closure phase (#580) ([dcace256](https://github.com/SienkLogic/plan-build-run/commit/dcace256))
|
|
962
|
+
* Fall back to ROADMAP.md when phase directory missing (#521) ([b9f9ee98](https://github.com/SienkLogic/plan-build-run/commit/b9f9ee98))
|
|
963
|
+
* Accept ## and ### phase headers, detect malformed ROADMAPs (#598, #599) ([7b140c2d](https://github.com/SienkLogic/plan-build-run/commit/7b140c2d))
|
|
964
|
+
* Use {phase_num} instead of ambiguous {phase} for filenames (#601) ([d8638588](https://github.com/SienkLogic/plan-build-run/commit/d8638588))
|
|
965
|
+
* Add package.json to prevent ESM inheritance (#602) ([51544460](https://github.com/SienkLogic/plan-build-run/commit/51544460))
|
|
966
|
+
* Add git_tag config option to disable tagging on milestone completion (#532) ([430a7e4f](https://github.com/SienkLogic/plan-build-run/commit/430a7e4f))
|
|
967
|
+
* Auto-migrate renamed statusline.js reference (#288) ([f4d6b30f](https://github.com/SienkLogic/plan-build-run/commit/f4d6b30f))
|
|
968
|
+
* Verify-work defers diagnosis/planning to plan-phase --gaps (#502) ([25aeb443](https://github.com/SienkLogic/plan-build-run/commit/25aeb443))
|
|
969
|
+
* Move resolved debug sessions to resolved/ folder (#497) ([ba279128](https://github.com/SienkLogic/plan-build-run/commit/ba279128))
|
|
970
|
+
* Create feature branch before first commit in discuss/plan workflows (#512) ([c3c9d523](https://github.com/SienkLogic/plan-build-run/commit/c3c9d523))
|
|
971
|
+
* Add --auto flag for unattended initialization ([7f490830](https://github.com/SienkLogic/plan-build-run/commit/7f490830))
|
|
972
|
+
* Replace HEREDOC with literal newlines for Windows compatibility ([ced41d77](https://github.com/SienkLogic/plan-build-run/commit/ced41d77))
|
|
973
|
+
* Persist research decision from new-milestone to config ([767bef64](https://github.com/SienkLogic/plan-build-run/commit/767bef64))
|
|
974
|
+
* Add workaround for Claude Code classifyHandoffIfNeeded bug (#480) ([4072fd2b](https://github.com/SienkLogic/plan-build-run/commit/4072fd2b))
|
|
975
|
+
* Preserve local patches across PBR updates (#481) ([ca03a061](https://github.com/SienkLogic/plan-build-run/commit/ca03a061))
|
|
976
|
+
* Respect commit_docs=false in all .planning commit paths (#482) ([01c9115f](https://github.com/SienkLogic/plan-build-run/commit/01c9115f))
|
|
977
|
+
* Normalize Windows backslashes in pbr-tools path prefix ([1c6a35f7](https://github.com/SienkLogic/plan-build-run/commit/1c6a35f7))
|
|
978
|
+
* Add --include flag to init commands to eliminate redundant file reads ([fa81821d](https://github.com/SienkLogic/plan-build-run/commit/fa81821d))
|
|
979
|
+
* Prevent installer from deleting opencode.json on parse errors (#475) ([6cf4a4e3](https://github.com/SienkLogic/plan-build-run/commit/6cf4a4e3))
|
|
980
|
+
* Add context-optimizing parsing commands to pbr-tools (#473) ([6c537373](https://github.com/SienkLogic/plan-build-run/commit/6c537373))
|
|
981
|
+
* Extract repetitive bash patterns into pbr-tools commands (#472) ([1b317dec](https://github.com/SienkLogic/plan-build-run/commit/1b317dec))
|
|
982
|
+
* Add compound init commands and update workflows (#468) ([246d542c](https://github.com/SienkLogic/plan-build-run/commit/246d542c))
|
|
983
|
+
* Add CLI utility for command extraction ([01ae939c](https://github.com/SienkLogic/plan-build-run/commit/01ae939c))
|
|
984
|
+
* Remove PBR Memory system (not ready for release) ([cc3c6aca](https://github.com/SienkLogic/plan-build-run/commit/cc3c6aca))
|
|
985
|
+
* Prevent API keys from being committed via map-codebase ([f53011c9](https://github.com/SienkLogic/plan-build-run/commit/f53011c9))
|
|
986
|
+
* Add completion verification to prevent hallucinated success (#315) ([f380275e](https://github.com/SienkLogic/plan-build-run/commit/f380275e))
|
|
987
|
+
* Update command respects local vs global install ([83845755](https://github.com/SienkLogic/plan-build-run/commit/83845755))
|
|
988
|
+
* Statusline crash handling, color validation, git staging rules ([9d7ea9c1](https://github.com/SienkLogic/plan-build-run/commit/9d7ea9c1))
|
|
989
|
+
* Update statusline.js reference during install (#392) ([074b2bcc](https://github.com/SienkLogic/plan-build-run/commit/074b2bcc))
|
|
990
|
+
* Enforce context fidelity in planning pipeline (#391) ([ecbc692b](https://github.com/SienkLogic/plan-build-run/commit/ecbc692b))
|
|
991
|
+
* Respect parallelization config setting (#379) ([4267c6cf](https://github.com/SienkLogic/plan-build-run/commit/4267c6cf))
|
|
992
|
+
* Clarify ASCII box-drawing vs text content with diacritics (#289) ([2347fca3](https://github.com/SienkLogic/plan-build-run/commit/2347fca3))
|
|
993
|
+
* Respect attribution.commit setting (compatible opencode) (#286) ([d1654960](https://github.com/SienkLogic/plan-build-run/commit/d1654960))
|
|
994
|
+
* Add squash merge option for branching strategies ([5ee22e62](https://github.com/SienkLogic/plan-build-run/commit/5ee22e62))
|
|
995
|
+
* Add Gemini support to installer (#301) ([5379832f](https://github.com/SienkLogic/plan-build-run/commit/5379832f))
|
|
996
|
+
* Add unified branching strategy option ([197800e2](https://github.com/SienkLogic/plan-build-run/commit/197800e2))
|
|
997
|
+
* Add /pbr:join-discord command ([6e2f46c9](https://github.com/SienkLogic/plan-build-run/commit/6e2f46c9))
|
|
998
|
+
* Add --uninstall flag to remove PBR files ([12e6acbf](https://github.com/SienkLogic/plan-build-run/commit/12e6acbf))
|
|
999
|
+
* Use *-CONTEXT.md glob for filename variants ([f059a6cf](https://github.com/SienkLogic/plan-build-run/commit/f059a6cf))
|
|
1000
|
+
* Use correct OpenCode config path (~/.config/opencode) (#233) ([707d4b47](https://github.com/SienkLogic/plan-build-run/commit/707d4b47))
|
|
1001
|
+
* Add interactive runtime selection prompt ([820f1086](https://github.com/SienkLogic/plan-build-run/commit/820f1086))
|
|
1002
|
+
* Auto-configure read permissions for PBR docs ([cfb9e261](https://github.com/SienkLogic/plan-build-run/commit/cfb9e261))
|
|
1003
|
+
* Remove backticks from slash commands in new-project output ([460f0d99](https://github.com/SienkLogic/plan-build-run/commit/460f0d99))
|
|
1004
|
+
* Escape/Ctrl+C cancels instead of installing globally ([67201cb0](https://github.com/SienkLogic/plan-build-run/commit/67201cb0))
|
|
1005
|
+
* Make installer work for opencode ([bf73de89](https://github.com/SienkLogic/plan-build-run/commit/bf73de89))
|
|
1006
|
+
* Update build script to use pbr-statusline.js ([cdad7b8a](https://github.com/SienkLogic/plan-build-run/commit/cdad7b8a))
|
|
1007
|
+
* Revise plan 05-02 based on checker feedback ([6e757aaa](https://github.com/SienkLogic/plan-build-run/commit/6e757aaa))
|
|
1008
|
+
* Address tech debt from milestone audit ([c1a86cad](https://github.com/SienkLogic/plan-build-run/commit/c1a86cad))
|
|
1009
|
+
* Revise plans based on checker feedback ([3230fdfd](https://github.com/SienkLogic/plan-build-run/commit/3230fdfd))
|
|
1010
|
+
* Inline file contents in Task prompts ([ce4fc96f](https://github.com/SienkLogic/plan-build-run/commit/ce4fc96f))
|
|
1011
|
+
* Add uncommitted planning mode (#107) ([1f18ec89](https://github.com/SienkLogic/plan-build-run/commit/1f18ec89))
|
|
1012
|
+
* Use numbered prefix for PLAN and SUMMARY files ([c1727a3b](https://github.com/SienkLogic/plan-build-run/commit/c1727a3b))
|
|
1013
|
+
* Create 90s-style HTML command reference page ([fc3287c8](https://github.com/SienkLogic/plan-build-run/commit/fc3287c8))
|
|
1014
|
+
* Create PBR commands HTML reference page ([deec75c8](https://github.com/SienkLogic/plan-build-run/commit/deec75c8))
|
|
1015
|
+
* Implement final commit and completion output ([942e6591](https://github.com/SienkLogic/plan-build-run/commit/942e6591))
|
|
1016
|
+
* Implement STATE.md Quick Tasks Completed table update ([2dbc802f](https://github.com/SienkLogic/plan-build-run/commit/2dbc802f))
|
|
1017
|
+
* Create quick.md command file with structure ([2b36394f](https://github.com/SienkLogic/plan-build-run/commit/2b36394f))
|
|
1018
|
+
* Clamp progress bar value to 0-100 range (#176) ([99362f1e](https://github.com/SienkLogic/plan-build-run/commit/99362f1e))
|
|
1019
|
+
* Validate empty --config-dir value (#177) ([80414a78](https://github.com/SienkLogic/plan-build-run/commit/80414a78))
|
|
1020
|
+
* Use consistent allowed-tools YAML format (#179) ([76cba3bf](https://github.com/SienkLogic/plan-build-run/commit/76cba3bf))
|
|
1021
|
+
* Handle non-TTY stdin and verify file installation ([c233f711](https://github.com/SienkLogic/plan-build-run/commit/c233f711))
|
|
1022
|
+
* Clean up orphaned pbr-notify.sh from previous versions ([6c435b3d](https://github.com/SienkLogic/plan-build-run/commit/6c435b3d))
|
|
1023
|
+
* Add --gaps-only flag for gap closure execution ([200e0047](https://github.com/SienkLogic/plan-build-run/commit/200e0047))
|
|
1024
|
+
* Clean install removes orphaned files ([acd62c0f](https://github.com/SienkLogic/plan-build-run/commit/acd62c0f))
|
|
1025
|
+
* Add offer_next section with routing templates ([54f2d560](https://github.com/SienkLogic/plan-build-run/commit/54f2d560))
|
|
1026
|
+
* Remove code blocks from output templates for proper markdown rendering ([8d199427](https://github.com/SienkLogic/plan-build-run/commit/8d199427))
|
|
1027
|
+
* Recommend discuss-phase before plan-phase in all next-step suggestions ([cfe237d4](https://github.com/SienkLogic/plan-build-run/commit/cfe237d4))
|
|
1028
|
+
* Recommend discuss-phase before plan-phase ([60ebda93](https://github.com/SienkLogic/plan-build-run/commit/60ebda93))
|
|
1029
|
+
* Normalize phase input at command entry points ([567bdd2e](https://github.com/SienkLogic/plan-build-run/commit/567bdd2e))
|
|
1030
|
+
* Phase directory matching and orphaned references ([a31f730f](https://github.com/SienkLogic/plan-build-run/commit/a31f730f))
|
|
1031
|
+
* Commit orchestrator corrections before verification ([12373d2f](https://github.com/SienkLogic/plan-build-run/commit/12373d2f))
|
|
1032
|
+
* Commit revised plans after checker feedback ([3e80a2a8](https://github.com/SienkLogic/plan-build-run/commit/3e80a2a8))
|
|
1033
|
+
* Hardcode read for CONTEXT.md ([d7463e2f](https://github.com/SienkLogic/plan-build-run/commit/d7463e2f))
|
|
1034
|
+
* Hardcode reads for CONTEXT.md and RESEARCH.md ([734134f4](https://github.com/SienkLogic/plan-build-run/commit/734134f4))
|
|
1035
|
+
* Add upstream CONTEXT.md awareness ([d1df08cf](https://github.com/SienkLogic/plan-build-run/commit/d1df08cf))
|
|
1036
|
+
* Show update indicator when new PBR version available ([7a451e64](https://github.com/SienkLogic/plan-build-run/commit/7a451e64))
|
|
1037
|
+
* Update ROADMAP.md placeholders after planning ([2569be69](https://github.com/SienkLogic/plan-build-run/commit/2569be69))
|
|
1038
|
+
* Don't surface user_setup in planning output ([d9625ed3](https://github.com/SienkLogic/plan-build-run/commit/d9625ed3))
|
|
1039
|
+
* Restore {phase}-{plan}-PLAN.md naming convention ([8c6e503c](https://github.com/SienkLogic/plan-build-run/commit/8c6e503c))
|
|
1040
|
+
* Add checkpoint box with clear action prompt ([2b797ed4](https://github.com/SienkLogic/plan-build-run/commit/2b797ed4))
|
|
1041
|
+
* Add PBR brand system for consistent UI ([daa54737](https://github.com/SienkLogic/plan-build-run/commit/daa54737))
|
|
1042
|
+
* Add explicit roadmap approval gate before committing ([6ae0923c](https://github.com/SienkLogic/plan-build-run/commit/6ae0923c))
|
|
1043
|
+
* Unify project initialization into single /pbr:new-project flow ([18351fe3](https://github.com/SienkLogic/plan-build-run/commit/18351fe3))
|
|
1044
|
+
* Remove premature research likelihood predictions from roadmap ([9875df57](https://github.com/SienkLogic/plan-build-run/commit/9875df57))
|
|
1045
|
+
* Intelligent gray area analysis with scope guardrails ([a7249ebe](https://github.com/SienkLogic/plan-build-run/commit/a7249ebe))
|
|
1046
|
+
* Run in forked context ([d45261e3](https://github.com/SienkLogic/plan-build-run/commit/d45261e3))
|
|
1047
|
+
* Add statusline with context usage, model, and current task ([159925c0](https://github.com/SienkLogic/plan-build-run/commit/159925c0))
|
|
1048
|
+
* Add update command with changelog display ([7865f123](https://github.com/SienkLogic/plan-build-run/commit/7865f123))
|
|
1049
|
+
* Add explicit MILESTONE-CONTEXT.md reference ([ac316e8f](https://github.com/SienkLogic/plan-build-run/commit/ac316e8f))
|
|
1050
|
+
* Batch UAT file writes instead of per-response ([8c66a716](https://github.com/SienkLogic/plan-build-run/commit/8c66a716))
|
|
1051
|
+
* Always route to execute-phase regardless of plan count ([09608820](https://github.com/SienkLogic/plan-build-run/commit/09608820))
|
|
1052
|
+
* Present research as equal option in routing ([794e0841](https://github.com/SienkLogic/plan-build-run/commit/794e0841))
|
|
1053
|
+
* Add Route F for between-milestones state ([d1c1c179](https://github.com/SienkLogic/plan-build-run/commit/d1c1c179))
|
|
1054
|
+
* Version MILESTONE-AUDIT.md and archive on completion ([60070b9b](https://github.com/SienkLogic/plan-build-run/commit/60070b9b))
|
|
1055
|
+
* Reuse previous must-haves on re-verification ([da95980d](https://github.com/SienkLogic/plan-build-run/commit/da95980d))
|
|
1056
|
+
* Include VERIFICATION.md in phase completion commit ([70cfd76c](https://github.com/SienkLogic/plan-build-run/commit/70cfd76c))
|
|
1057
|
+
* Recommend audit-milestone when milestone completes ([6b4f73ef](https://github.com/SienkLogic/plan-build-run/commit/6b4f73ef))
|
|
1058
|
+
* Add milestone audit system ([6630c321](https://github.com/SienkLogic/plan-build-run/commit/6630c321))
|
|
1059
|
+
* Remove domain gatekeeping ([b920d47c](https://github.com/SienkLogic/plan-build-run/commit/b920d47c))
|
|
1060
|
+
* Add verify → plan → execute loop for gap closure ([8e6ad96a](https://github.com/SienkLogic/plan-build-run/commit/8e6ad96a))
|
|
1061
|
+
* Add phase verification when phase completes ([c7fbb815](https://github.com/SienkLogic/plan-build-run/commit/c7fbb815))
|
|
1062
|
+
* Enhance roadmap and planning workflows ([87909f97](https://github.com/SienkLogic/plan-build-run/commit/87909f97))
|
|
1063
|
+
* Add phase verification system ([6d7246dc](https://github.com/SienkLogic/plan-build-run/commit/6d7246dc))
|
|
1064
|
+
* Bundle phase metadata into single commit ([23833251](https://github.com/SienkLogic/plan-build-run/commit/23833251))
|
|
1065
|
+
* Load REQUIREMENTS.md for focused research ([3b0ea318](https://github.com/SienkLogic/plan-build-run/commit/3b0ea318))
|
|
1066
|
+
* Update requirement status to Complete when phase finishes ([e1b6655d](https://github.com/SienkLogic/plan-build-run/commit/e1b6655d))
|
|
1067
|
+
* Align research-project next steps (both point to define-requirements) ([fc0f8618](https://github.com/SienkLogic/plan-build-run/commit/fc0f8618))
|
|
1068
|
+
* Add requirements traceability to roadmap and plan-phase ([b708a8d3](https://github.com/SienkLogic/plan-build-run/commit/b708a8d3))
|
|
1069
|
+
* Show full requirements list, not just counts ([36ff4f4f](https://github.com/SienkLogic/plan-build-run/commit/36ff4f4f))
|
|
1070
|
+
* Offer both define-requirements and create-roadmap as next steps ([1ccc66f1](https://github.com/SienkLogic/plan-build-run/commit/1ccc66f1))
|
|
1071
|
+
* Add define-requirements command for scoped v1 requirements ([d0488c50](https://github.com/SienkLogic/plan-build-run/commit/d0488c50))
|
|
1072
|
+
* Add research-project command for pre-roadmap ecosystem research ([53efcfbf](https://github.com/SienkLogic/plan-build-run/commit/53efcfbf))
|
|
1073
|
+
* Restore rich documentation and fix continuation pattern ([e98bebfe](https://github.com/SienkLogic/plan-build-run/commit/e98bebfe))
|
|
1074
|
+
* Restore offer_next routing to orchestrator commands ([e8199d92](https://github.com/SienkLogic/plan-build-run/commit/e8199d92))
|
|
1075
|
+
* Write VERSION file during installation ([b281148a](https://github.com/SienkLogic/plan-build-run/commit/b281148a))
|
|
1076
|
+
* Create whats-new.md command ([1a55ac85](https://github.com/SienkLogic/plan-build-run/commit/1a55ac85))
|
|
1077
|
+
* Update installer to copy CHANGELOG.md ([35cf2511](https://github.com/SienkLogic/plan-build-run/commit/35cf2511))
|
|
1078
|
+
* Create CHANGELOG.md with Keep-a-Changelog format ([63113e95](https://github.com/SienkLogic/plan-build-run/commit/63113e95))
|
|
1079
|
+
* Add USER-SETUP.md for external service configuration ([4da80d64](https://github.com/SienkLogic/plan-build-run/commit/4da80d64))
|
|
1080
|
+
* Add DEBUG_DIR path constant to prevent typos ([b1066c1f](https://github.com/SienkLogic/plan-build-run/commit/b1066c1f))
|
|
1081
|
+
* Add SlashCommand to plan-fix allowed-tools ([93fc60c1](https://github.com/SienkLogic/plan-build-run/commit/93fc60c1))
|
|
1082
|
+
* Standardize debug file naming and invoke execute-plan ([0e5f1ce8](https://github.com/SienkLogic/plan-build-run/commit/0e5f1ce8))
|
|
1083
|
+
* Auto-diagnose issues instead of offering choice ([1f358c55](https://github.com/SienkLogic/plan-build-run/commit/1f358c55))
|
|
1084
|
+
* Add parallel diagnosis before plan-fix ([d4986629](https://github.com/SienkLogic/plan-build-run/commit/d4986629))
|
|
1085
|
+
* Redesign verify-work as conversational UAT with persistent state ([9e0808b4](https://github.com/SienkLogic/plan-build-run/commit/9e0808b4))
|
|
1086
|
+
* Add pre-execution summary for interactive mode (#57) ([136a30e1](https://github.com/SienkLogic/plan-build-run/commit/136a30e1))
|
|
1087
|
+
* Pre-compute wave numbers at plan time ([d30893a8](https://github.com/SienkLogic/plan-build-run/commit/d30893a8))
|
|
1088
|
+
* Convert to orchestrator pattern ([8ed6a8fa](https://github.com/SienkLogic/plan-build-run/commit/8ed6a8fa))
|
|
1089
|
+
* Remove "what's out of scope" question ([a4c83cf2](https://github.com/SienkLogic/plan-build-run/commit/a4c83cf2))
|
|
1090
|
+
* Load project state before execution ([d5c08e16](https://github.com/SienkLogic/plan-build-run/commit/d5c08e16))
|
|
1091
|
+
* Parallel execution is recommended, not experimental ([c4e3023d](https://github.com/SienkLogic/plan-build-run/commit/c4e3023d))
|
|
1092
|
+
* Parallel-first planning with dependency graphs and checkpoint-resume ([e5d4ecc2](https://github.com/SienkLogic/plan-build-run/commit/e5d4ecc2))
|
|
1093
|
+
* Add .claude/rules/ for auto-loaded contribution rules ([a97c567b](https://github.com/SienkLogic/plan-build-run/commit/a97c567b))
|
|
1094
|
+
* Inline listing for multiple active sessions ([7d109fde](https://github.com/SienkLogic/plan-build-run/commit/7d109fde))
|
|
1095
|
+
* Add /pbr:debug for systematic debugging with persistent state ([f0b4c7d8](https://github.com/SienkLogic/plan-build-run/commit/f0b4c7d8))
|
|
1096
|
+
* Parallel phase execution ([dae8943c](https://github.com/SienkLogic/plan-build-run/commit/dae8943c))
|
|
1097
|
+
* Suggest execute-phase when multiple plans created ([c163004a](https://github.com/SienkLogic/plan-build-run/commit/c163004a))
|
|
1098
|
+
* Create animal-facts.md with 5 animal facts ([0ab169df](https://github.com/SienkLogic/plan-build-run/commit/0ab169df))
|
|
1099
|
+
* Create random-numbers.md ([47980ce5](https://github.com/SienkLogic/plan-build-run/commit/47980ce5))
|
|
1100
|
+
* Create dad-jokes.md ([92a2a1af](https://github.com/SienkLogic/plan-build-run/commit/92a2a1af))
|
|
1101
|
+
* Add parallel vs sequential examples to phase-prompt.md ([67afce6c](https://github.com/SienkLogic/plan-build-run/commit/67afce6c))
|
|
1102
|
+
* Add parallel-aware splitting strategy to scope-estimation.md ([a1f6e9f1](https://github.com/SienkLogic/plan-build-run/commit/a1f6e9f1))
|
|
1103
|
+
* Add parallelization_aware step to plan-phase ([082c6896](https://github.com/SienkLogic/plan-build-run/commit/082c6896))
|
|
1104
|
+
* Separate parallelization question from config creation ([454def13](https://github.com/SienkLogic/plan-build-run/commit/454def13))
|
|
1105
|
+
* Add parallelization question to /pbr:new-project ([27d0f087](https://github.com/SienkLogic/plan-build-run/commit/27d0f087))
|
|
1106
|
+
* Sync execute-phase command with execute-plan content ([31f56506](https://github.com/SienkLogic/plan-build-run/commit/31f56506))
|
|
1107
|
+
* Document parallel execution resume support ([3743d1cf](https://github.com/SienkLogic/plan-build-run/commit/3743d1cf))
|
|
1108
|
+
* Load execute-plan.md context in execute-phase command ([8e8fba27](https://github.com/SienkLogic/plan-build-run/commit/8e8fba27))
|
|
1109
|
+
* Create execute-phase command ([18a1fd17](https://github.com/SienkLogic/plan-build-run/commit/18a1fd17))
|
|
1110
|
+
* Implement parallel spawning and monitoring ([511def76](https://github.com/SienkLogic/plan-build-run/commit/511def76))
|
|
1111
|
+
* Implement dependency analysis step ([caf28103](https://github.com/SienkLogic/plan-build-run/commit/caf28103))
|
|
1112
|
+
* Add todo capture system for mid-session ideas ([3787f50e](https://github.com/SienkLogic/plan-build-run/commit/3787f50e))
|
|
1113
|
+
* Consistent zero-padding for decimal phase numbers ([9ec422ac](https://github.com/SienkLogic/plan-build-run/commit/9ec422ac))
|
|
1114
|
+
* Add planning principles for security, performance, observability ([810409c3](https://github.com/SienkLogic/plan-build-run/commit/810409c3))
|
|
1115
|
+
* Surface verify-work option after plan execution ([863f86e4](https://github.com/SienkLogic/plan-build-run/commit/863f86e4))
|
|
1116
|
+
* Add plan-fix command and progress routing for UAT issues ([d72bd743](https://github.com/SienkLogic/plan-build-run/commit/d72bd743))
|
|
1117
|
+
* Add validation for --config-dir edge cases ([8a0967de](https://github.com/SienkLogic/plan-build-run/commit/8a0967de))
|
|
1118
|
+
* Add /pbr:remove-phase command ([c096ead2](https://github.com/SienkLogic/plan-build-run/commit/c096ead2))
|
|
1119
|
+
* Add --config-dir CLI argument for multi-account setups (#20) ([952ead71](https://github.com/SienkLogic/plan-build-run/commit/952ead71))
|
|
1120
|
+
* Enforce mandatory verification before phase/milestone completion routing ([da884ea7](https://github.com/SienkLogic/plan-build-run/commit/da884ea7))
|
|
1121
|
+
* Add Claude Code marketplace plugin support ([4d92b3cd](https://github.com/SienkLogic/plan-build-run/commit/4d92b3cd))
|
|
1122
|
+
* Commit phase artifacts when created (#12) ([1b9c2f24](https://github.com/SienkLogic/plan-build-run/commit/1b9c2f24))
|
|
1123
|
+
* Persist milestone discussion context across /clear (#11) ([002a819a](https://github.com/SienkLogic/plan-build-run/commit/002a819a))
|
|
1124
|
+
* Support CLAUDE_CONFIG_DIR environment variable ([0ef716c0](https://github.com/SienkLogic/plan-build-run/commit/0ef716c0))
|
|
1125
|
+
* Implement per-task atomic commits for better AI observability ([875ac900](https://github.com/SienkLogic/plan-build-run/commit/875ac900))
|
|
1126
|
+
* Clarify create-milestone.md file locations with explicit instructions ([f34fd45a](https://github.com/SienkLogic/plan-build-run/commit/f34fd45a))
|
|
1127
|
+
* Clarify depth controls compression, not inflation ([35739c84](https://github.com/SienkLogic/plan-build-run/commit/35739c84))
|
|
1128
|
+
* Add depth parameter for planning thoroughness ([484134e6](https://github.com/SienkLogic/plan-build-run/commit/484134e6))
|
|
1129
|
+
* Add /pbr:auto command for autonomous execution ([b0403426](https://github.com/SienkLogic/plan-build-run/commit/b0403426))
|
|
1130
|
+
* Load tdd.md reference directly in commands ([507b28cf](https://github.com/SienkLogic/plan-build-run/commit/507b28cf))
|
|
1131
|
+
* TDD integration with detection, annotation, and execution flow ([5390b33b](https://github.com/SienkLogic/plan-build-run/commit/5390b33b))
|
|
1132
|
+
* Restore deterministic bash commands, remove redundant decision_gate ([86878b97](https://github.com/SienkLogic/plan-build-run/commit/86878b97))
|
|
1133
|
+
* 70% context reduction for plan-phase (scope-estimation 74%, plan-phase.md 66%) ([df1f1384](https://github.com/SienkLogic/plan-build-run/commit/df1f1384))
|
|
1134
|
+
* Merge cli-automation into checkpoints, compress plan-format ([5d164328](https://github.com/SienkLogic/plan-build-run/commit/5d164328))
|
|
1135
|
+
* Explicit plan count check in offer_next step ([f24203dc](https://github.com/SienkLogic/plan-build-run/commit/f24203dc))
|
|
1136
|
+
* Evolutionary PROJECT.md system ([31597a94](https://github.com/SienkLogic/plan-build-run/commit/31597a94))
|
|
1137
|
+
* Improve incremental codebase map updates ([c11b744f](https://github.com/SienkLogic/plan-build-run/commit/c11b744f))
|
|
1138
|
+
* Add file paths to codebase mapping output ([b1f9d574](https://github.com/SienkLogic/plan-build-run/commit/b1f9d574))
|
|
1139
|
+
* Remove arbitrary 100-line limit from codebase mapping ([dccde98f](https://github.com/SienkLogic/plan-build-run/commit/dccde98f))
|
|
1140
|
+
* Use inline code for Next Up commands (avoids nesting ambiguity) ([c3273a50](https://github.com/SienkLogic/plan-build-run/commit/c3273a50))
|
|
1141
|
+
* Check PROJECT.md not .planning/ dir for existing project ([8697c5fd](https://github.com/SienkLogic/plan-build-run/commit/8697c5fd))
|
|
1142
|
+
* Brownfield integration into PBR workflows ([8d2f3074](https://github.com/SienkLogic/plan-build-run/commit/8d2f3074))
|
|
1143
|
+
* Codebase map templates for integrations and concerns ([65825928](https://github.com/SienkLogic/plan-build-run/commit/65825928))
|
|
1144
|
+
* Codebase map templates for conventions and testing ([33c832e7](https://github.com/SienkLogic/plan-build-run/commit/33c832e7))
|
|
1145
|
+
* Codebase map templates for stack, architecture, structure ([de16552e](https://github.com/SienkLogic/plan-build-run/commit/de16552e))
|
|
1146
|
+
* Improved continuation UI with context and visual hierarchy ([733fc144](https://github.com/SienkLogic/plan-build-run/commit/733fc144))
|
|
1147
|
+
* First question should be freeform, not AskUserQuestion ([1b772351](https://github.com/SienkLogic/plan-build-run/commit/1b772351))
|
|
1148
|
+
* Remove shell context to fix permission errors for non-DSP users ([c21c5e97](https://github.com/SienkLogic/plan-build-run/commit/c21c5e97))
|
|
1149
|
+
* Replace inline command invocation with clear-then-paste pattern ([d45fbd84](https://github.com/SienkLogic/plan-build-run/commit/d45fbd84))
|
|
1150
|
+
* Ensure git init runs in current directory ([2be9dd82](https://github.com/SienkLogic/plan-build-run/commit/2be9dd82))
|
|
1151
|
+
* Mandate AskUserQuestion for all exploration questions ([293447d6](https://github.com/SienkLogic/plan-build-run/commit/293447d6))
|
|
1152
|
+
* Update stale CONTEXT.md references to new vision structure ([b4de126a](https://github.com/SienkLogic/plan-build-run/commit/b4de126a))
|
|
1153
|
+
* Remove enterprise language from help and discuss-milestone ([508e0c86](https://github.com/SienkLogic/plan-build-run/commit/508e0c86))
|
|
1154
|
+
* Present new-project completion inline instead of as question ([3e8e5d53](https://github.com/SienkLogic/plan-build-run/commit/3e8e5d53))
|
|
1155
|
+
* Restore AskUserQuestion for decision gate in questioning flow ([3d7b9657](https://github.com/SienkLogic/plan-build-run/commit/3d7b9657))
|
|
1156
|
+
* Yolo mode now skips confirmation gates in plan-phase ([46d63991](https://github.com/SienkLogic/plan-build-run/commit/46d63991))
|
|
1157
|
+
* Rewrite questioning as thinking partner, not interviewer ([83e27785](https://github.com/SienkLogic/plan-build-run/commit/83e27785))
|
|
1158
|
+
* Add research-phase for niche domain ecosystem discovery ([e8d68685](https://github.com/SienkLogic/plan-build-run/commit/e8d68685))
|
|
167
1159
|
|
|
168
|
-
* **tools:** add /pbr:dashboard command to README dashboard section ([e1d3a60](https://github.com/SienkLogic/plan-build-run/commit/e1d3a60e0f8cffcd2f093725e73a0eca0a6c67ad))
|
|
169
|
-
* **tools:** add missing 2.3.0 and 2.3.1 changelog entries ([82c5cb2](https://github.com/SienkLogic/plan-build-run/commit/82c5cb21a741be4bfe13613debdeb54f862ce1f3))
|
|
170
|
-
* **tools:** make platform badges clickable links to install pages ([a1f6b68](https://github.com/SienkLogic/plan-build-run/commit/a1f6b68a786458a6040d0fa50a99e01431016332))
|
|
171
|
-
* **tools:** update README with Copilot CLI support and current stats ([edad2d9](https://github.com/SienkLogic/plan-build-run/commit/edad2d924198d6598eed1fb0b0a23c164617e5b6))
|
|
172
|
-
|
|
173
|
-
## [Unreleased]
|
|
174
|
-
|
|
175
|
-
## [2.3.1] - 2026-02-19
|
|
176
|
-
|
|
177
|
-
### Added
|
|
178
|
-
- **GitHub Copilot CLI plugin** (`plugins/copilot-pbr/`) — complete port with 22 skills, 10 agents (`.agent.md` format), and Copilot CLI hook configuration
|
|
179
|
-
- Setup scripts (`setup.sh`, `setup.ps1`) for Copilot CLI plugin installation with `copilot plugin install` support
|
|
180
|
-
- Cross-plugin compatibility tests now cover all three plugins (Claude Code, Cursor, Copilot CLI) — 164 tests via data-driven `describe.each`
|
|
181
|
-
- New cross-plugin guard tests: `references/ files match PBR` and `templates/ files match PBR` catch drift automatically
|
|
182
|
-
- Dashboard skill now works from Copilot CLI sessions (`/pbr:dashboard`)
|
|
183
|
-
- Platform badges in README link to install pages (wiki or anchor)
|
|
184
|
-
|
|
185
|
-
### Fixed
|
|
186
|
-
- Synced 13 missing template files (`codebase/`, `research/`, `research-outputs/`) to Cursor and Copilot plugins
|
|
187
|
-
- Dashboard skill in derivative plugins now references correct relative path (`../../dashboard/`) instead of nonexistent `<plugin-root>/dashboard/`
|
|
188
|
-
- Cross-plugin frontmatter parser now handles both `\r\n` and `\n` line endings (was silently failing on Windows-style files)
|
|
189
|
-
- Test count: 1219 tests across 44 suites (up from 1134)
|
|
190
|
-
|
|
191
|
-
## [2.3.0] - 2026-02-19
|
|
192
|
-
|
|
193
|
-
### Added
|
|
194
|
-
- `/pbr:do` freeform router — routes natural language input to the right PBR skill automatically
|
|
195
|
-
- Smart skill suggestions in hook feedback when freeform text is detected
|
|
196
|
-
- Freeform text guard hook for `/pbr:plan` and todo work subcommand
|
|
197
|
-
|
|
198
|
-
### Fixed
|
|
199
|
-
- Dashboard skill `argument-hint` synced to Cursor plugin
|
|
200
|
-
|
|
201
|
-
## [2.2.0] - 2026-02-19
|
|
202
|
-
|
|
203
|
-
### Added
|
|
204
|
-
- Milestone integration into workflow lifecycle — milestones are now created automatically during `/pbr:begin` roadmap generation
|
|
205
|
-
- Planner agent generates milestone-grouped roadmaps (single milestone for standard projects, multiple for 8+ phase comprehensive projects)
|
|
206
|
-
- Milestone-aware boundary detection in `/pbr:build` and `/pbr:review` — reads ROADMAP.md phase ranges instead of just "last phase overall"
|
|
207
|
-
- Between-milestones state handling in `/pbr:continue`
|
|
208
|
-
- Audit report detection in `/pbr:status` — suggests the correct next action based on whether an audit exists and its result
|
|
209
|
-
|
|
210
|
-
### Fixed
|
|
211
|
-
- "Skip audit" option in build/review completion banners now correctly says "archive milestone after audit passes" (consistent with milestone anti-pattern rules)
|
|
212
|
-
- `auto_advance` hard-stop message at milestone boundaries now explains why it paused
|
|
213
|
-
|
|
214
|
-
## [2.1.0] - 2026-02-19
|
|
215
|
-
|
|
216
|
-
### Added
|
|
217
|
-
- **Cursor IDE plugin** (`plugins/cursor-pbr/`) — complete port with 21 skills, 10 agents, and `.mdc` workflow rules
|
|
218
|
-
- Cross-plugin compatibility: shared `.planning/` state between Claude Code and Cursor plugins
|
|
219
|
-
- Setup scripts (`setup.sh` for macOS/Linux, `setup.ps1` for Windows) for easy Cursor plugin installation
|
|
220
|
-
- Summary gate hook (`check-summary-gate.js`) — enforces SUMMARY file before phase state can advance
|
|
221
|
-
- Cross-plugin compatibility test suite (7 tests)
|
|
222
|
-
- Cursor plugin validation test suite (92 tests)
|
|
223
|
-
- Companion web dashboard improvements: service and route enhancements
|
|
224
|
-
|
|
225
|
-
### Changed
|
|
226
|
-
- Agent definitions optimized — 48% average size reduction across all 10 agents
|
|
227
|
-
- Hook scripts improved with better error handling and dispatch logic
|
|
228
|
-
- Test count increased from 758 to 1008 across 42 suites
|
|
229
|
-
- Removed `.gitkeep` placeholder files from `cursor-pbr/` (replaced by real content)
|
|
230
|
-
|
|
231
|
-
## [2.0.0] - 2026-02-17
|
|
232
|
-
|
|
233
|
-
### Added
|
|
234
|
-
- Token-saving CLI: 6 new commands in `towline-tools.js` — `frontmatter`, `must-haves`, `phase-info`, `state update`, `roadmap update-status`, `roadmap update-plans`
|
|
235
|
-
- Companion web dashboard (Express 5.x, EJS, Pico.css v2, HTMX 2.0) with overview, phase detail, roadmap, todos, and SSE live updates
|
|
236
|
-
- `/dev:import` skill — Import external plan documents into Towline format
|
|
237
|
-
- `/dev:note` skill — Zero-friction idea capture with promote-to-todo support
|
|
238
|
-
- `/dev:setup` skill — Interactive onboarding wizard for new installations
|
|
239
|
-
- `/dev:explore` skill — Socratic conversation for idea exploration
|
|
240
|
-
- `/dev:continue` skill — Execute the next logical step automatically
|
|
241
|
-
- `/dev:health` skill — Validate `.planning/` directory integrity
|
|
242
|
-
- General agent — Lightweight Towline-aware agent for ad-hoc tasks
|
|
243
|
-
- `/dev:build <N> --team` variant — Agent Teams for complex inter-agent coordination
|
|
244
|
-
- `/dev:review <N> --auto-fix` variant — Auto-diagnose and fix verification failures
|
|
245
|
-
- Hook spawn tests for all lifecycle hooks
|
|
246
|
-
- Iterative retrieval protocol for researcher agent
|
|
247
|
-
- Behavioral contexts for agent prompt refinement
|
|
248
|
-
- Published to npm with OIDC trusted publishing
|
|
249
|
-
|
|
250
|
-
### Changed
|
|
251
|
-
- Skill count increased from 15 to 21
|
|
252
|
-
- Agent count increased from 9 to 10 (added General agent)
|
|
253
|
-
- Hook scripts consolidated: Write/Edit dispatch reduced from 4 spawns to 2
|
|
254
|
-
- All hook scripts now use `logHook()` from `hook-logger.js` for unified logging
|
|
255
|
-
- Agents reference new CLI tooling shortcuts instead of manual YAML parsing
|
|
256
|
-
- README rewritten with badges, comparison table, and acknowledgments
|
|
257
|
-
- Package tarball trimmed from 1.9MB to 305KB via explicit `files` field
|
|
258
|
-
|
|
259
|
-
### Fixed
|
|
260
|
-
- Windows CI: `parseMustHaves` now trims CRLF line endings
|
|
261
|
-
- Context budget: main orchestrator no longer reads agent definitions (saves ~15% context)
|
|
262
|
-
- Hook logger rotation: `.hook-log` now caps at 200 entries with JSONL format
|
|
263
|
-
- Status line ANSI rendering on Windows terminals
|
|
264
|
-
|
|
265
|
-
## [1.0.0] - 2025-02-07
|
|
266
|
-
|
|
267
|
-
### Added
|
|
268
|
-
- Initial release of Plan-Build-Run plugin for Claude Code
|
|
269
|
-
- 15 skills: begin, plan, build, review, discuss, quick, debug, status, pause, resume, milestone, scan, todo, config, help
|
|
270
|
-
- 9 specialized agents: researcher, planner, plan-checker, executor, verifier, integration-checker, debugger, codebase-mapper, synthesizer
|
|
271
|
-
- Hook-enforced quality gates: commit validation, plan format checking, session state injection, pre-compact preservation
|
|
272
|
-
- Wave-based parallel execution via Task() subagents
|
|
273
|
-
- Goal-backward verification at phase and milestone levels
|
|
274
|
-
- Persistent file-based state management (.planning/ directory)
|
|
275
|
-
- Configurable workflow: depth, models, gates, parallelization, git branching
|
|
276
|
-
- Cross-platform Node.js hook scripts (Windows + macOS + Linux)
|
|
277
|
-
- Plugin distribution via npm
|