@sienklogic/plan-build-run 2.21.1 → 2.21.2

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.
Files changed (982) hide show
  1. package/CHANGELOG.md +1331 -323
  2. package/CLAUDE.md +75 -40
  3. package/LICENSE +2 -1
  4. package/README.md +412 -177
  5. package/bin/install.js +2752 -0
  6. package/dashboard/bin/cli.cjs +96 -0
  7. package/dashboard/bin/stop.cjs +129 -0
  8. package/dashboard/eslint.config.js +37 -0
  9. package/dashboard/index.html +20 -0
  10. package/dashboard/package.json +27 -25
  11. package/dashboard/server/index.js +151 -0
  12. package/dashboard/server/lib/frontmatter.js +92 -0
  13. package/dashboard/server/middleware/static.js +35 -0
  14. package/dashboard/server/package.json +16 -0
  15. package/dashboard/server/routes/agents.js +234 -0
  16. package/dashboard/server/routes/config.js +64 -0
  17. package/dashboard/server/routes/health.js +98 -0
  18. package/dashboard/server/routes/incidents.js +78 -0
  19. package/dashboard/server/routes/intel.js +69 -0
  20. package/dashboard/server/routes/memory.js +107 -0
  21. package/dashboard/server/routes/planning.js +234 -0
  22. package/dashboard/server/routes/progress.js +77 -0
  23. package/dashboard/server/routes/projects.js +36 -0
  24. package/dashboard/server/routes/requirements.js +40 -0
  25. package/dashboard/server/routes/roadmap.js +69 -0
  26. package/dashboard/server/routes/sessions.js +70 -0
  27. package/dashboard/server/routes/status.js +25 -0
  28. package/dashboard/server/routes/telemetry.js +233 -0
  29. package/dashboard/server/services/file-watcher.js +105 -0
  30. package/dashboard/server/services/planning-reader.js +727 -0
  31. package/dashboard/server/test/cli.test.js +34 -0
  32. package/dashboard/server/test/frontmatter.test.js +104 -0
  33. package/dashboard/server/test/isolation.test.js +32 -0
  34. package/dashboard/server/test/planning-reader.test.js +151 -0
  35. package/dashboard/server/test/routes.test.js +91 -0
  36. package/dashboard/server/test/ws.test.js +81 -0
  37. package/dashboard/server/ws.js +96 -0
  38. package/dashboard/src/App.jsx +165 -0
  39. package/dashboard/src/components/charts/BudgetBars.jsx +42 -0
  40. package/dashboard/src/components/charts/ContextRadar.jsx +34 -0
  41. package/dashboard/src/components/charts/PhaseDonut.jsx +66 -0
  42. package/dashboard/src/components/charts/SuccessTrend.jsx +45 -0
  43. package/dashboard/src/components/charts/TokenChart.jsx +55 -0
  44. package/dashboard/src/components/charts/index.js +5 -0
  45. package/dashboard/src/components/config/CfgSection.jsx +93 -0
  46. package/dashboard/src/components/layout/Header.jsx +89 -0
  47. package/dashboard/src/components/layout/ProjectSwitcher.jsx +160 -0
  48. package/dashboard/src/components/layout/Sidebar.jsx +161 -0
  49. package/dashboard/src/components/ui/AutoModeBanner.jsx +138 -0
  50. package/dashboard/src/components/ui/BackButton.jsx +27 -0
  51. package/dashboard/src/components/ui/Badge.jsx +27 -0
  52. package/dashboard/src/components/ui/Card.jsx +23 -0
  53. package/dashboard/src/components/ui/ChartTooltip.jsx +48 -0
  54. package/dashboard/src/components/ui/CheckpointBox.jsx +110 -0
  55. package/dashboard/src/components/ui/CodeBlock.jsx +27 -0
  56. package/dashboard/src/components/ui/ConfidenceBadge.jsx +20 -0
  57. package/dashboard/src/components/ui/ConfirmModal.jsx +161 -0
  58. package/dashboard/src/components/ui/ConnectionBanner.jsx +60 -0
  59. package/dashboard/src/components/ui/ErrorBoundary.jsx +106 -0
  60. package/dashboard/src/components/ui/ErrorBox.jsx +107 -0
  61. package/dashboard/src/components/ui/KeyValue.jsx +33 -0
  62. package/dashboard/src/components/ui/LoadingSkeleton.jsx +84 -0
  63. package/dashboard/src/components/ui/MetricCard.jsx +58 -0
  64. package/dashboard/src/components/ui/NextUpBlock.jsx +92 -0
  65. package/dashboard/src/components/ui/NumberInput.jsx +44 -0
  66. package/dashboard/src/components/ui/PBRBanner.jsx +47 -0
  67. package/dashboard/src/components/ui/PipelineView.jsx +130 -0
  68. package/dashboard/src/components/ui/ProgressBar.jsx +28 -0
  69. package/dashboard/src/components/ui/ProgressDisplay.jsx +47 -0
  70. package/dashboard/src/components/ui/QualityGateBadge.jsx +15 -0
  71. package/dashboard/src/components/ui/SectionTitle.jsx +35 -0
  72. package/dashboard/src/components/ui/SelectInput.jsx +45 -0
  73. package/dashboard/src/components/ui/StatusDot.jsx +51 -0
  74. package/dashboard/src/components/ui/StatusSymbol.jsx +49 -0
  75. package/dashboard/src/components/ui/TabBar.jsx +41 -0
  76. package/dashboard/src/components/ui/TextInput.jsx +42 -0
  77. package/dashboard/src/components/ui/Toast.jsx +117 -0
  78. package/dashboard/src/components/ui/Toggle.jsx +70 -0
  79. package/dashboard/src/components/ui/index.js +29 -0
  80. package/dashboard/src/hooks/useDocumentTitle.js +16 -0
  81. package/dashboard/src/hooks/useFetch.js +50 -0
  82. package/dashboard/src/hooks/useToast.jsx +43 -0
  83. package/dashboard/src/hooks/useWebSocket.js +103 -0
  84. package/dashboard/src/lib/api.js +112 -0
  85. package/dashboard/src/lib/configSchema.js +189 -0
  86. package/dashboard/src/lib/constants.js +22 -0
  87. package/dashboard/src/main.jsx +15 -0
  88. package/dashboard/src/pages/AgentsPage.jsx +191 -0
  89. package/dashboard/src/pages/ConfigPage.jsx +298 -0
  90. package/dashboard/src/pages/HooksPage.jsx +412 -0
  91. package/dashboard/src/pages/IncidentsPage.jsx +135 -0
  92. package/dashboard/src/pages/IntelPage.jsx +193 -0
  93. package/dashboard/src/pages/LiveFeed.jsx +274 -0
  94. package/dashboard/src/pages/MemoryPage.jsx +107 -0
  95. package/dashboard/src/pages/OnboardingPage.jsx +117 -0
  96. package/dashboard/src/pages/Overview.jsx +360 -0
  97. package/dashboard/src/pages/PhaseDetailView.jsx +216 -0
  98. package/dashboard/src/pages/PlanningPage.jsx +181 -0
  99. package/dashboard/src/pages/ProgressPage.jsx +249 -0
  100. package/dashboard/src/pages/ResearchPage.jsx +129 -0
  101. package/dashboard/src/pages/RoadmapPage.jsx +251 -0
  102. package/dashboard/src/pages/SessionsPage.jsx +117 -0
  103. package/dashboard/src/pages/Telemetry.jsx +166 -0
  104. package/dashboard/src/pages/planning/DecisionsTab.jsx +153 -0
  105. package/dashboard/src/pages/planning/FilesTab.jsx +420 -0
  106. package/dashboard/src/pages/planning/MilestoneDetail.jsx +319 -0
  107. package/dashboard/src/pages/planning/MilestonesTab.jsx +151 -0
  108. package/dashboard/src/pages/planning/NotesTab.jsx +251 -0
  109. package/dashboard/src/pages/planning/PhasesTab.jsx +218 -0
  110. package/dashboard/src/pages/planning/QuickTab.jsx +50 -0
  111. package/dashboard/src/pages/planning/ResearchTab.jsx +103 -0
  112. package/dashboard/src/pages/planning/TodosTab.jsx +297 -0
  113. package/dashboard/src/theme/ThemeProvider.jsx +38 -0
  114. package/dashboard/src/theme/tokens.js +17 -0
  115. package/dashboard/tests/components/ConfirmModal.test.jsx +179 -0
  116. package/dashboard/tests/components/ConnectionBanner.test.jsx +37 -0
  117. package/dashboard/tests/components/ErrorBoundary.test.jsx +59 -0
  118. package/dashboard/tests/components/LoadingSkeleton.test.jsx +46 -0
  119. package/dashboard/tests/components/ToastContainer.test.jsx +47 -0
  120. package/dashboard/tests/components/Toggle.test.jsx +61 -0
  121. package/dashboard/tests/hooks/useFetch.test.jsx +77 -0
  122. package/dashboard/tests/hooks/useToast.test.jsx +78 -0
  123. package/dashboard/tests/hooks/useWebSocket.test.jsx +128 -0
  124. package/dashboard/tests/pages/ConfigPage.test.jsx +199 -0
  125. package/dashboard/tests/pages/PlanningPage.test.jsx +119 -0
  126. package/dashboard/tests/pages/planning/FilesTab.test.jsx +198 -0
  127. package/dashboard/tests/pages/planning/NotesTab.test.jsx +178 -0
  128. package/dashboard/tests/pages/planning/TodosTab.test.jsx +188 -0
  129. package/dashboard/tests/performance.test.jsx +46 -0
  130. package/dashboard/tests/routes/config.test.js +98 -0
  131. package/dashboard/tests/routes/health.test.js +40 -0
  132. package/dashboard/tests/routes/planning.test.js +112 -0
  133. package/dashboard/tests/routes/roadmap.test.js +91 -0
  134. package/dashboard/tests/routes/status.test.js +131 -0
  135. package/dashboard/tests/server/planning-reader.test.js +153 -0
  136. package/dashboard/tests/setup.js +7 -0
  137. package/dashboard/vite.config.js +41 -0
  138. package/package.json +56 -41
  139. package/plan-build-run/bin/config-schema.json +1298 -0
  140. package/plugins/pbr/.claude-plugin/plugin.json +1 -1
  141. package/plugins/pbr/CLAUDE.md +19 -0
  142. package/plugins/pbr/UI-CONSISTENCY-GAPS.md +1 -1
  143. package/plugins/pbr/agents/advisor-researcher.md +101 -0
  144. package/plugins/pbr/agents/audit.md +207 -89
  145. package/plugins/pbr/agents/codebase-mapper.md +158 -23
  146. package/plugins/pbr/agents/debugger.md +210 -34
  147. package/plugins/pbr/agents/dev-sync.md +206 -0
  148. package/plugins/pbr/agents/executor.md +734 -38
  149. package/plugins/pbr/agents/general.md +69 -5
  150. package/plugins/pbr/agents/integration-checker.md +147 -31
  151. package/plugins/pbr/agents/intel-updater.md +332 -0
  152. package/plugins/pbr/agents/nyquist-auditor.md +254 -0
  153. package/plugins/pbr/agents/plan-checker.md +268 -65
  154. package/plugins/pbr/agents/planner.md +449 -41
  155. package/plugins/pbr/agents/researcher.md +218 -37
  156. package/plugins/pbr/agents/roadmapper.md +398 -0
  157. package/plugins/pbr/agents/synthesizer.md +166 -25
  158. package/plugins/pbr/agents/ui-checker.md +204 -0
  159. package/plugins/pbr/agents/ui-researcher.md +224 -0
  160. package/plugins/pbr/agents/verifier.md +570 -46
  161. package/plugins/pbr/commands/add-phase.md +75 -0
  162. package/plugins/pbr/commands/add-todo.md +8 -0
  163. package/plugins/pbr/commands/audit-fix.md +5 -0
  164. package/plugins/pbr/commands/audit-milestone.md +8 -0
  165. package/plugins/pbr/commands/autonomous.md +5 -0
  166. package/plugins/pbr/commands/backlog.md +6 -0
  167. package/plugins/pbr/commands/check-todos.md +8 -0
  168. package/plugins/pbr/commands/complete-milestone.md +8 -0
  169. package/plugins/pbr/commands/config.md +1 -1
  170. package/plugins/pbr/commands/discuss-phase.md +6 -0
  171. package/plugins/pbr/commands/execute-phase.md +6 -0
  172. package/plugins/pbr/commands/fast.md +6 -0
  173. package/plugins/pbr/commands/forensics.md +6 -0
  174. package/plugins/pbr/commands/import.md +1 -1
  175. package/plugins/pbr/commands/insert-phase.md +65 -0
  176. package/plugins/pbr/commands/intel.md +5 -0
  177. package/plugins/pbr/commands/join-discord.md +11 -0
  178. package/plugins/pbr/commands/list-phase-assumptions.md +5 -0
  179. package/plugins/pbr/commands/map-codebase.md +6 -0
  180. package/plugins/pbr/commands/milestone-summary.md +6 -0
  181. package/plugins/pbr/commands/new-milestone.md +8 -0
  182. package/plugins/pbr/commands/new-project.md +6 -0
  183. package/plugins/pbr/commands/pause-work.md +5 -0
  184. package/plugins/pbr/commands/plan-milestone-gaps.md +7 -0
  185. package/plugins/pbr/commands/plan-phase.md +6 -0
  186. package/plugins/pbr/commands/plant-seed.md +6 -0
  187. package/plugins/pbr/commands/profile-user.md +5 -0
  188. package/plugins/pbr/commands/profile.md +5 -0
  189. package/plugins/pbr/commands/progress.md +6 -0
  190. package/plugins/pbr/commands/quick.md +1 -1
  191. package/plugins/pbr/commands/reapply-patches.md +47 -0
  192. package/plugins/pbr/commands/release.md +6 -0
  193. package/plugins/pbr/commands/remove-phase.md +66 -0
  194. package/plugins/pbr/commands/research-phase.md +59 -0
  195. package/plugins/pbr/commands/resume-work.md +5 -0
  196. package/plugins/pbr/commands/seed.md +6 -0
  197. package/plugins/pbr/commands/session-report.md +5 -0
  198. package/plugins/pbr/commands/set-profile.md +6 -0
  199. package/plugins/pbr/commands/settings.md +5 -0
  200. package/plugins/pbr/commands/setup.md +1 -1
  201. package/plugins/pbr/commands/ship.md +5 -0
  202. package/plugins/pbr/commands/stats.md +6 -0
  203. package/plugins/pbr/commands/test.md +5 -0
  204. package/plugins/pbr/commands/thread.md +6 -0
  205. package/plugins/pbr/commands/todo.md +1 -1
  206. package/plugins/pbr/commands/ui-phase.md +5 -0
  207. package/plugins/pbr/commands/ui-review.md +5 -0
  208. package/plugins/pbr/commands/undo.md +5 -0
  209. package/plugins/pbr/commands/update.md +37 -0
  210. package/plugins/pbr/commands/validate-phase.md +5 -0
  211. package/plugins/pbr/commands/verify-work.md +6 -0
  212. package/plugins/pbr/dashboard/package-lock.json +6 -0
  213. package/plugins/pbr/dist/architecture-guard.js +76 -0
  214. package/plugins/pbr/dist/audit-dimensions.js +556 -0
  215. package/plugins/pbr/dist/auto-continue.js +277 -0
  216. package/plugins/pbr/dist/block-skill-self-read.js +124 -0
  217. package/plugins/pbr/dist/check-agent-state-write.js +63 -0
  218. package/plugins/pbr/dist/check-config-change.js +213 -0
  219. package/plugins/pbr/dist/check-cross-plugin-sync.js +93 -0
  220. package/plugins/pbr/dist/check-dangerous-commands.js +193 -0
  221. package/plugins/pbr/dist/check-direct-state-write.js +37 -0
  222. package/plugins/pbr/dist/check-doc-sprawl.js +102 -0
  223. package/plugins/pbr/dist/check-phase-boundary.js +191 -0
  224. package/plugins/pbr/dist/check-plan-format.js +227 -0
  225. package/plugins/pbr/dist/check-read-first.js +345 -0
  226. package/plugins/pbr/dist/check-roadmap-sync.js +507 -0
  227. package/plugins/pbr/dist/check-skill-workflow.js +354 -0
  228. package/plugins/pbr/dist/check-state-sync.js +676 -0
  229. package/plugins/pbr/dist/check-subagent-output.js +425 -0
  230. package/plugins/pbr/dist/check-summary-gate.js +188 -0
  231. package/plugins/pbr/dist/context-bridge.js +425 -0
  232. package/plugins/pbr/dist/context-budget-check.js +442 -0
  233. package/plugins/pbr/dist/context-quality.js +271 -0
  234. package/plugins/pbr/dist/enforce-context-budget.js +138 -0
  235. package/plugins/pbr/dist/enforce-pbr-workflow.js +277 -0
  236. package/plugins/pbr/dist/event-handler.js +212 -0
  237. package/plugins/pbr/dist/event-logger.js +125 -0
  238. package/plugins/pbr/dist/feedback-loop.js +155 -0
  239. package/plugins/pbr/dist/graph-update.js +422 -0
  240. package/plugins/pbr/dist/hook-logger.js +114 -0
  241. package/plugins/pbr/dist/hook-server-client.js +361 -0
  242. package/plugins/pbr/dist/hook-server.js +664 -0
  243. package/plugins/pbr/dist/hooks-schema.json +87 -0
  244. package/plugins/pbr/dist/instructions-loaded.js +173 -0
  245. package/plugins/pbr/dist/intercept-plan-mode.js +81 -0
  246. package/plugins/pbr/dist/log-notification.js +131 -0
  247. package/plugins/pbr/dist/log-subagent.js +367 -0
  248. package/plugins/pbr/dist/log-tool-failure.js +140 -0
  249. package/plugins/pbr/dist/milestone-learnings.js +519 -0
  250. package/plugins/pbr/dist/pbr-tools.js +493 -0
  251. package/plugins/pbr/dist/post-bash-triage.js +96 -0
  252. package/plugins/pbr/dist/post-compact.js +135 -0
  253. package/plugins/pbr/dist/post-hoc.js +237 -0
  254. package/plugins/pbr/dist/post-write-dispatch.js +243 -0
  255. package/plugins/pbr/dist/post-write-quality.js +208 -0
  256. package/plugins/pbr/dist/pre-bash-dispatch.js +212 -0
  257. package/plugins/pbr/dist/pre-skill-dispatch.js +114 -0
  258. package/plugins/pbr/dist/pre-task-dispatch.js +269 -0
  259. package/plugins/pbr/dist/pre-write-dispatch.js +234 -0
  260. package/plugins/pbr/dist/progress-tracker.js +173 -0
  261. package/plugins/pbr/dist/prompt-guard.js +114 -0
  262. package/plugins/pbr/dist/prompt-routing.js +209 -0
  263. package/plugins/pbr/dist/quick-status.js +179 -0
  264. package/plugins/pbr/dist/record-incident.js +37 -0
  265. package/plugins/pbr/dist/run-hook.js +132 -0
  266. package/plugins/pbr/dist/session-cleanup.js +653 -0
  267. package/plugins/pbr/dist/session-tracker.js +124 -0
  268. package/plugins/pbr/dist/status-line.js +849 -0
  269. package/plugins/pbr/dist/suggest-compact.js +307 -0
  270. package/plugins/pbr/dist/sync-context-to-claude.js +100 -0
  271. package/plugins/pbr/dist/task-completed.js +206 -0
  272. package/plugins/pbr/dist/track-context-budget.js +432 -0
  273. package/plugins/pbr/dist/track-user-gates.js +88 -0
  274. package/plugins/pbr/dist/trust-tracker.js +193 -0
  275. package/plugins/pbr/dist/validate-commit.js +233 -0
  276. package/plugins/pbr/dist/validate-skill-args.js +222 -0
  277. package/plugins/pbr/dist/validate-task.js +271 -0
  278. package/plugins/pbr/dist/worktree-create.js +144 -0
  279. package/plugins/pbr/dist/worktree-remove.js +147 -0
  280. package/plugins/pbr/hooks/hooks.json +137 -65
  281. package/plugins/pbr/references/agent-contracts.md +39 -8
  282. package/plugins/pbr/references/agent-teams.md +3 -3
  283. package/plugins/pbr/references/archive/checkpoints.md +189 -0
  284. package/plugins/pbr/references/archive/context-quality-tiers.md +45 -0
  285. package/plugins/pbr/references/archive/hook-ordering.md +89 -0
  286. package/plugins/pbr/references/archive/limitations.md +106 -0
  287. package/plugins/pbr/references/archive/pbr-rules.md +194 -0
  288. package/plugins/pbr/references/archive/pbr-tools-cli.md +415 -0
  289. package/plugins/pbr/references/archive/pretooluse-jsonl-behavior.md +58 -0
  290. package/plugins/pbr/references/archive/signal-files.md +41 -0
  291. package/plugins/pbr/references/archive/tmux-setup.md +288 -0
  292. package/plugins/pbr/references/archive/verification-matrix.md +34 -0
  293. package/plugins/pbr/references/archive/verification-patterns.md +277 -0
  294. package/plugins/pbr/references/archive/worktree-sparse-checkout.md +86 -0
  295. package/plugins/pbr/references/assumptions.md +42 -0
  296. package/plugins/pbr/references/checkpoints.md +723 -104
  297. package/plugins/pbr/references/config-reference.md +387 -10
  298. package/plugins/pbr/references/continuation-format.md +1 -0
  299. package/plugins/pbr/references/decimal-phase-calculation.md +65 -0
  300. package/plugins/pbr/references/deviation-rules.md +12 -0
  301. package/plugins/pbr/references/few-shot-examples/audit.md +77 -0
  302. package/plugins/pbr/references/few-shot-examples/check-plan-format.md +172 -0
  303. package/plugins/pbr/references/few-shot-examples/check-subagent-output.md +118 -0
  304. package/plugins/pbr/references/few-shot-examples/integration-checker.md +70 -0
  305. package/plugins/pbr/references/few-shot-examples/nyquist-auditor.md +83 -0
  306. package/plugins/pbr/references/few-shot-examples/plan-checker.md +73 -0
  307. package/plugins/pbr/references/few-shot-examples/ui-checker.md +71 -0
  308. package/plugins/pbr/references/few-shot-examples/verifier.md +109 -0
  309. package/plugins/pbr/references/git-integration.md +110 -27
  310. package/plugins/pbr/references/git-planning-commit.md +35 -0
  311. package/plugins/pbr/references/model-profile-resolution.md +34 -0
  312. package/plugins/pbr/references/model-profiles.md +90 -7
  313. package/plugins/pbr/references/model-selection.md +1 -1
  314. package/plugins/pbr/references/node-repair.md +48 -0
  315. package/plugins/pbr/references/plan-authoring.md +65 -0
  316. package/plugins/pbr/references/plan-format.md +184 -10
  317. package/plugins/pbr/references/questioning.md +138 -49
  318. package/plugins/pbr/references/reading-verification.md +4 -4
  319. package/plugins/pbr/references/tdd.md +263 -0
  320. package/plugins/pbr/references/thinking-models-planning.md +47 -0
  321. package/plugins/pbr/references/thinking-models-verification.md +44 -0
  322. package/plugins/pbr/references/ui-brand.md +449 -0
  323. package/plugins/pbr/references/verification-overrides.md +39 -0
  324. package/plugins/pbr/references/verification-patterns.md +529 -113
  325. package/plugins/pbr/scripts/architecture-guard.js +76 -0
  326. package/plugins/pbr/scripts/audit-checks/behavioral-compliance.js +2098 -0
  327. package/plugins/pbr/scripts/audit-checks/error-analysis.js +989 -0
  328. package/plugins/pbr/scripts/audit-checks/feature-verification.js +723 -0
  329. package/plugins/pbr/scripts/audit-checks/index.js +433 -0
  330. package/plugins/pbr/scripts/audit-checks/infrastructure.js +816 -0
  331. package/plugins/pbr/scripts/audit-checks/quality-metrics.js +455 -0
  332. package/plugins/pbr/scripts/audit-checks/session-quality.js +980 -0
  333. package/plugins/pbr/scripts/audit-checks/si-agent-hook-config-checks.js +396 -0
  334. package/plugins/pbr/scripts/audit-checks/si-cross-cutting-checks.js +272 -0
  335. package/plugins/pbr/scripts/audit-checks/si-skill-checks.js +424 -0
  336. package/plugins/pbr/scripts/audit-checks/workflow-compliance.js +1175 -0
  337. package/plugins/pbr/scripts/audit-dimensions.js +556 -0
  338. package/plugins/pbr/scripts/auto-continue.js +192 -37
  339. package/plugins/pbr/scripts/block-skill-self-read.js +124 -0
  340. package/plugins/pbr/scripts/check-agent-state-write.js +63 -0
  341. package/plugins/pbr/scripts/check-config-change.js +84 -1
  342. package/plugins/pbr/scripts/check-cross-plugin-sync.js +93 -0
  343. package/plugins/pbr/scripts/check-dangerous-commands.js +18 -5
  344. package/plugins/pbr/scripts/check-direct-state-write.js +37 -0
  345. package/plugins/pbr/scripts/check-phase-boundary.js +3 -2
  346. package/plugins/pbr/scripts/check-plan-format.js +153 -354
  347. package/plugins/pbr/scripts/check-read-first.js +345 -0
  348. package/plugins/pbr/scripts/check-roadmap-sync.js +174 -19
  349. package/plugins/pbr/scripts/check-skill-workflow.js +21 -16
  350. package/plugins/pbr/scripts/check-state-sync.js +352 -220
  351. package/plugins/pbr/scripts/check-subagent-output.js +296 -333
  352. package/plugins/pbr/scripts/check-summary-gate.js +5 -15
  353. package/plugins/pbr/scripts/commands/benchmarks.js +195 -0
  354. package/plugins/pbr/scripts/commands/calibrate.js +530 -0
  355. package/plugins/pbr/scripts/commands/config.js +72 -0
  356. package/plugins/pbr/scripts/commands/misc.js +779 -0
  357. package/plugins/pbr/scripts/commands/phase.js +293 -0
  358. package/plugins/pbr/scripts/commands/roadmap.js +75 -0
  359. package/plugins/pbr/scripts/commands/state.js +84 -0
  360. package/plugins/pbr/scripts/commands/stress-test.js +349 -0
  361. package/plugins/pbr/scripts/commands/todo.js +191 -0
  362. package/plugins/pbr/scripts/commands/verify.js +169 -0
  363. package/plugins/pbr/scripts/config-schema.json +1183 -95
  364. package/plugins/pbr/scripts/context-bridge.js +425 -0
  365. package/plugins/pbr/scripts/context-budget-check.js +171 -16
  366. package/plugins/pbr/scripts/context-quality.js +271 -0
  367. package/plugins/pbr/scripts/enforce-context-budget.js +138 -0
  368. package/plugins/pbr/scripts/enforce-pbr-workflow.js +277 -0
  369. package/plugins/pbr/scripts/event-handler.js +137 -87
  370. package/plugins/pbr/scripts/event-logger.js +58 -25
  371. package/plugins/pbr/scripts/feedback-loop.js +155 -0
  372. package/plugins/pbr/scripts/graph-update.js +422 -0
  373. package/plugins/pbr/scripts/hook-logger.js +69 -35
  374. package/plugins/pbr/scripts/hook-server-client.js +361 -0
  375. package/plugins/pbr/scripts/hook-server.js +664 -0
  376. package/plugins/pbr/scripts/hooks-schema.json +12 -5
  377. package/plugins/pbr/scripts/instructions-loaded.js +173 -0
  378. package/plugins/pbr/scripts/intent-router.cjs +147 -0
  379. package/plugins/pbr/scripts/intercept-plan-mode.js +52 -18
  380. package/plugins/pbr/scripts/lib/alternatives.js +203 -0
  381. package/plugins/pbr/scripts/lib/audit.js +65 -0
  382. package/plugins/pbr/scripts/lib/auto-cleanup.js +221 -0
  383. package/plugins/pbr/scripts/lib/auto-verify.js +123 -0
  384. package/plugins/pbr/scripts/lib/benchmark.js +190 -0
  385. package/plugins/pbr/scripts/lib/build.js +719 -0
  386. package/plugins/pbr/scripts/lib/ci-fix-loop.js +228 -0
  387. package/plugins/pbr/scripts/lib/commands.js +483 -0
  388. package/plugins/pbr/scripts/lib/compound.js +222 -0
  389. package/plugins/pbr/scripts/lib/config-cache.js +83 -0
  390. package/plugins/pbr/scripts/lib/config.js +1469 -0
  391. package/plugins/pbr/scripts/lib/context.js +254 -0
  392. package/plugins/pbr/scripts/lib/contextual-help.js +183 -0
  393. package/plugins/pbr/scripts/lib/convention-detector.js +413 -0
  394. package/plugins/pbr/scripts/lib/core.js +1585 -0
  395. package/plugins/pbr/scripts/lib/dashboard-launch.js +364 -0
  396. package/plugins/pbr/scripts/lib/data-hygiene.js +179 -0
  397. package/plugins/pbr/scripts/lib/decision-extraction.js +183 -0
  398. package/plugins/pbr/scripts/lib/decisions.js +194 -0
  399. package/plugins/pbr/scripts/lib/dependency-break.js +147 -0
  400. package/plugins/pbr/scripts/lib/format-validators.js +1049 -0
  401. package/plugins/pbr/scripts/lib/frontmatter.js +302 -0
  402. package/plugins/pbr/scripts/lib/gates/advisories.js +133 -0
  403. package/plugins/pbr/scripts/lib/gates/build-dependency.js +118 -0
  404. package/plugins/pbr/scripts/lib/gates/build-executor.js +106 -0
  405. package/plugins/pbr/scripts/lib/gates/doc-existence.js +46 -0
  406. package/plugins/pbr/scripts/lib/gates/helpers.js +98 -0
  407. package/plugins/pbr/scripts/lib/gates/inline-execution.js +187 -0
  408. package/plugins/pbr/scripts/lib/gates/milestone-complete.js +139 -0
  409. package/plugins/pbr/scripts/lib/gates/milestone-summary.js +121 -0
  410. package/plugins/pbr/scripts/lib/gates/multi-phase-loader.js +149 -0
  411. package/plugins/pbr/scripts/lib/gates/plan-executor.js +36 -0
  412. package/plugins/pbr/scripts/lib/gates/plan-validation.js +115 -0
  413. package/plugins/pbr/scripts/lib/gates/quick-executor.js +78 -0
  414. package/plugins/pbr/scripts/lib/gates/review-planner.js +63 -0
  415. package/plugins/pbr/scripts/lib/gates/review-verifier.js +71 -0
  416. package/plugins/pbr/scripts/lib/gates/rich-agent-context.js +148 -0
  417. package/plugins/pbr/scripts/lib/gates/sprint-preflight.js +30 -0
  418. package/plugins/pbr/scripts/lib/gates/user-confirmation.js +95 -0
  419. package/plugins/pbr/scripts/lib/graph-cli.js +89 -0
  420. package/plugins/pbr/scripts/lib/graph.js +553 -0
  421. package/plugins/pbr/scripts/lib/handoff-validators.js +224 -0
  422. package/plugins/pbr/scripts/lib/health-checks.js +107 -0
  423. package/plugins/pbr/scripts/lib/health-phase06.js +120 -0
  424. package/plugins/pbr/scripts/lib/health.js +132 -0
  425. package/plugins/pbr/scripts/lib/help.js +100 -0
  426. package/plugins/pbr/scripts/lib/history.js +150 -0
  427. package/plugins/pbr/scripts/lib/impact-analysis.js +319 -0
  428. package/plugins/pbr/scripts/lib/incidents.js +190 -0
  429. package/plugins/pbr/scripts/lib/init.js +643 -0
  430. package/plugins/pbr/scripts/lib/insights-parser.js +320 -0
  431. package/plugins/pbr/scripts/lib/intel.js +653 -0
  432. package/plugins/pbr/scripts/lib/learnings.js +511 -0
  433. package/plugins/pbr/scripts/lib/migrate.js +309 -0
  434. package/plugins/pbr/scripts/lib/milestone.js +306 -0
  435. package/plugins/pbr/scripts/lib/msys-path.js +20 -0
  436. package/plugins/pbr/scripts/lib/negative-knowledge.js +194 -0
  437. package/plugins/pbr/scripts/lib/notification-throttle.js +141 -0
  438. package/plugins/pbr/scripts/lib/onboarding-generator.js +288 -0
  439. package/plugins/pbr/scripts/lib/parse-args.js +134 -0
  440. package/plugins/pbr/scripts/lib/pattern-routing.js +55 -0
  441. package/plugins/pbr/scripts/lib/patterns.js +272 -0
  442. package/plugins/pbr/scripts/lib/perf.js +190 -0
  443. package/plugins/pbr/scripts/lib/phase.js +1043 -0
  444. package/plugins/pbr/scripts/lib/pid-lock.js +156 -0
  445. package/plugins/pbr/scripts/lib/post-hoc.js +160 -0
  446. package/plugins/pbr/scripts/lib/pre-commit-checks.js +220 -0
  447. package/plugins/pbr/scripts/lib/pre-research.js +126 -0
  448. package/plugins/pbr/scripts/lib/premature-completion.js +312 -0
  449. package/plugins/pbr/scripts/lib/preview.js +174 -0
  450. package/plugins/pbr/scripts/lib/progress-visualization.js +296 -0
  451. package/plugins/pbr/scripts/lib/quick-init.js +131 -0
  452. package/plugins/pbr/scripts/lib/reference.js +236 -0
  453. package/plugins/pbr/scripts/lib/requirements.js +153 -0
  454. package/plugins/pbr/scripts/lib/resolve-root.js +66 -0
  455. package/plugins/pbr/scripts/lib/reverse-spec.js +259 -0
  456. package/plugins/pbr/scripts/lib/roadmap.js +1089 -0
  457. package/plugins/pbr/scripts/lib/security-scan.js +200 -0
  458. package/plugins/pbr/scripts/lib/session-briefing.js +918 -0
  459. package/plugins/pbr/scripts/lib/skill-section.js +99 -0
  460. package/plugins/pbr/scripts/lib/smart-next-task.js +198 -0
  461. package/plugins/pbr/scripts/lib/snapshot-manager.js +232 -0
  462. package/plugins/pbr/scripts/lib/spec-diff.js +209 -0
  463. package/plugins/pbr/scripts/lib/spec-engine.js +189 -0
  464. package/plugins/pbr/scripts/lib/spot-check.js +539 -0
  465. package/plugins/pbr/scripts/lib/state-queue.js +171 -0
  466. package/plugins/pbr/scripts/lib/state.js +1082 -0
  467. package/plugins/pbr/scripts/lib/status-render.js +511 -0
  468. package/plugins/pbr/scripts/lib/step-verify.js +149 -0
  469. package/plugins/pbr/scripts/lib/subagent-validators.js +1119 -0
  470. package/plugins/pbr/scripts/lib/suggest-next.js +435 -0
  471. package/plugins/pbr/scripts/lib/tech-debt-scanner.js +116 -0
  472. package/plugins/pbr/scripts/lib/templates.js +362 -0
  473. package/plugins/pbr/scripts/lib/test-selection.js +163 -0
  474. package/plugins/pbr/scripts/lib/todo.js +300 -0
  475. package/plugins/pbr/scripts/lib/verify.js +1561 -0
  476. package/plugins/pbr/scripts/log-notification.js +131 -0
  477. package/plugins/pbr/scripts/log-subagent.js +221 -18
  478. package/plugins/pbr/scripts/log-tool-failure.js +60 -5
  479. package/plugins/pbr/scripts/milestone-learnings.js +519 -0
  480. package/plugins/pbr/scripts/package.json +1 -1
  481. package/plugins/pbr/scripts/pbr-tools.js +362 -1247
  482. package/plugins/pbr/scripts/post-bash-triage.js +96 -0
  483. package/plugins/pbr/scripts/post-compact.js +135 -0
  484. package/plugins/pbr/scripts/post-hoc.js +237 -0
  485. package/plugins/pbr/scripts/post-write-dispatch.js +201 -31
  486. package/plugins/pbr/scripts/post-write-quality.js +4 -3
  487. package/plugins/pbr/scripts/pre-bash-dispatch.js +147 -51
  488. package/plugins/pbr/scripts/pre-skill-dispatch.js +114 -0
  489. package/plugins/pbr/scripts/pre-task-dispatch.js +269 -0
  490. package/plugins/pbr/scripts/pre-write-dispatch.js +170 -72
  491. package/plugins/pbr/scripts/progress-tracker.js +121 -324
  492. package/plugins/pbr/scripts/prompt-guard.js +114 -0
  493. package/plugins/pbr/scripts/prompt-routing.js +209 -0
  494. package/plugins/pbr/scripts/quick-status.js +179 -0
  495. package/plugins/pbr/scripts/record-incident.js +37 -0
  496. package/plugins/pbr/scripts/risk-classifier.cjs +123 -0
  497. package/plugins/pbr/scripts/run-hook.js +63 -23
  498. package/plugins/pbr/scripts/session-cleanup.js +428 -29
  499. package/plugins/pbr/scripts/session-tracker.js +124 -0
  500. package/plugins/pbr/scripts/status-line.js +571 -43
  501. package/plugins/pbr/scripts/suggest-compact.js +201 -13
  502. package/plugins/pbr/scripts/sync-context-to-claude.js +100 -0
  503. package/plugins/pbr/scripts/task-completed.js +165 -4
  504. package/plugins/pbr/scripts/test/config.test.js +126 -0
  505. package/plugins/pbr/scripts/test/cross-platform.test.js +120 -0
  506. package/plugins/pbr/scripts/test/fixtures/config.json +20 -0
  507. package/plugins/pbr/scripts/test/fixtures/plan.md +54 -0
  508. package/plugins/pbr/scripts/test/fixtures/project.md +30 -0
  509. package/plugins/pbr/scripts/test/fixtures/roadmap.md +55 -0
  510. package/plugins/pbr/scripts/test/fixtures/state.md +60 -0
  511. package/plugins/pbr/scripts/test/fixtures/summary.md +35 -0
  512. package/plugins/pbr/scripts/test/fixtures.test.js +184 -0
  513. package/plugins/pbr/scripts/test/phase.test.js +142 -0
  514. package/plugins/pbr/scripts/test/roadmap.test.js +96 -0
  515. package/plugins/pbr/scripts/test/state.test.js +155 -0
  516. package/plugins/pbr/scripts/track-context-budget.js +368 -104
  517. package/plugins/pbr/scripts/track-user-gates.js +88 -0
  518. package/plugins/pbr/scripts/trust-tracker.js +193 -0
  519. package/plugins/pbr/scripts/validate-commit.js +51 -19
  520. package/plugins/pbr/scripts/validate-skill-args.js +85 -14
  521. package/plugins/pbr/scripts/validate-task.js +83 -622
  522. package/plugins/pbr/scripts/worktree-create.js +144 -0
  523. package/plugins/pbr/scripts/worktree-remove.js +147 -0
  524. package/plugins/pbr/skills/audit/SKILL.md +195 -24
  525. package/plugins/pbr/skills/audit-fix/SKILL.md +326 -0
  526. package/plugins/pbr/skills/autonomous/SKILL.md +551 -0
  527. package/plugins/pbr/skills/backlog/SKILL.md +56 -0
  528. package/plugins/pbr/skills/begin/SKILL.md +508 -153
  529. package/plugins/pbr/skills/begin/templates/STATE.md.tmpl +1 -2
  530. package/plugins/pbr/skills/begin/templates/config.json.tmpl +419 -36
  531. package/plugins/pbr/skills/begin/templates/researcher-prompt.md.tmpl +28 -0
  532. package/plugins/pbr/skills/begin/templates/roadmap-prompt.md.tmpl +28 -3
  533. package/plugins/pbr/skills/begin/templates/synthesis-prompt.md.tmpl +33 -5
  534. package/plugins/pbr/skills/build/SKILL.md +1180 -357
  535. package/plugins/pbr/skills/build/templates/continuation-prompt.md.tmpl +26 -0
  536. package/plugins/pbr/skills/build/templates/executor-prompt.md.tmpl +77 -0
  537. package/plugins/pbr/skills/build/templates/inline-verifier-prompt.md.tmpl +33 -0
  538. package/plugins/pbr/skills/build/templates/qa-round-context.md.tmpl +16 -0
  539. package/plugins/pbr/skills/config/SKILL.md +112 -9
  540. package/plugins/pbr/skills/continue/SKILL.md +113 -33
  541. package/plugins/pbr/skills/dashboard/SKILL.md +21 -9
  542. package/plugins/pbr/skills/debug/SKILL.md +70 -12
  543. package/plugins/pbr/skills/debug/templates/continuation-prompt.md.tmpl +12 -1
  544. package/plugins/pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +12 -5
  545. package/plugins/pbr/skills/discuss/SKILL.md +205 -24
  546. package/plugins/pbr/skills/discuss/templates/CONTEXT.md.tmpl +21 -1
  547. package/plugins/pbr/skills/do/SKILL.md +119 -24
  548. package/plugins/pbr/skills/explore/SKILL.md +95 -20
  549. package/plugins/pbr/skills/fast/SKILL.md +94 -0
  550. package/plugins/pbr/skills/forensics/SKILL.md +144 -0
  551. package/plugins/pbr/skills/health/SKILL.md +35 -115
  552. package/plugins/pbr/skills/help/SKILL.md +83 -123
  553. package/plugins/pbr/skills/import/SKILL.md +332 -13
  554. package/plugins/pbr/skills/intel/SKILL.md +131 -0
  555. package/plugins/pbr/skills/list-phase-assumptions/SKILL.md +231 -0
  556. package/plugins/pbr/skills/milestone/SKILL.md +383 -274
  557. package/plugins/pbr/skills/milestone/templates/audit-output.md.tmpl +76 -0
  558. package/plugins/pbr/skills/milestone/templates/complete-output.md.tmpl +32 -0
  559. package/plugins/pbr/skills/milestone/templates/edge-cases.md +54 -0
  560. package/plugins/pbr/skills/milestone/templates/gaps-output.md.tmpl +25 -0
  561. package/plugins/pbr/skills/milestone/templates/integration-checker-prompt.md.tmpl +25 -0
  562. package/plugins/pbr/skills/milestone/templates/new-output.md.tmpl +29 -0
  563. package/plugins/pbr/skills/milestone-summary/SKILL.md +86 -0
  564. package/plugins/pbr/skills/note/SKILL.md +20 -4
  565. package/plugins/pbr/skills/pause/SKILL.md +54 -14
  566. package/plugins/pbr/skills/pause/templates/continue-here.md.tmpl +33 -52
  567. package/plugins/pbr/skills/plan/SKILL.md +526 -280
  568. package/plugins/pbr/skills/plan/templates/checker-prompt.md.tmpl +20 -2
  569. package/plugins/pbr/skills/plan/templates/completion-output.md.tmpl +27 -0
  570. package/plugins/pbr/skills/plan/templates/planner-prompt.md.tmpl +43 -1
  571. package/plugins/pbr/skills/plan/templates/revision-prompt.md.tmpl +21 -5
  572. package/plugins/pbr/skills/profile/SKILL.md +185 -0
  573. package/plugins/pbr/skills/profile-user/SKILL.md +227 -0
  574. package/plugins/pbr/skills/quick/SKILL.md +435 -100
  575. package/plugins/pbr/skills/release/SKILL.md +206 -0
  576. package/plugins/pbr/skills/resume/SKILL.md +170 -46
  577. package/plugins/pbr/skills/review/SKILL.md +233 -165
  578. package/plugins/pbr/skills/review/templates/verifier-prompt.md.tmpl +7 -0
  579. package/plugins/pbr/skills/scan/SKILL.md +152 -106
  580. package/plugins/pbr/skills/scan/templates/mapper-prompt.md.tmpl +5 -56
  581. package/plugins/pbr/skills/seed/SKILL.md +87 -0
  582. package/plugins/pbr/skills/session-report/SKILL.md +130 -0
  583. package/plugins/pbr/skills/setup/SKILL.md +150 -202
  584. package/plugins/pbr/skills/shared/agent-context-enrichment.md +21 -0
  585. package/plugins/pbr/skills/shared/agent-type-resolution.md +32 -0
  586. package/plugins/pbr/skills/shared/commit-planning-docs.md +8 -0
  587. package/plugins/pbr/skills/shared/context-budget.md +66 -1
  588. package/plugins/pbr/skills/shared/context-loader-task.md +18 -11
  589. package/plugins/pbr/skills/shared/criterion-writing.md +58 -0
  590. package/plugins/pbr/skills/shared/digest-select.md +2 -2
  591. package/plugins/pbr/skills/shared/domain-probes.md +1 -1
  592. package/plugins/pbr/skills/shared/error-reporting.md +38 -60
  593. package/plugins/pbr/skills/shared/gate-prompts.md +4 -2
  594. package/plugins/pbr/skills/shared/memory-capture.md +48 -0
  595. package/plugins/pbr/skills/shared/phase-argument-parsing.md +4 -4
  596. package/plugins/pbr/skills/shared/revision-loop.md +24 -6
  597. package/plugins/pbr/skills/shared/state-update.md +46 -61
  598. package/plugins/pbr/skills/shared/universal-anti-patterns.md +27 -4
  599. package/plugins/pbr/skills/ship/SKILL.md +155 -0
  600. package/plugins/pbr/skills/stats/SKILL.md +110 -0
  601. package/plugins/pbr/skills/status/SKILL.md +185 -119
  602. package/plugins/pbr/skills/test/SKILL.md +254 -0
  603. package/plugins/pbr/skills/thread/SKILL.md +73 -0
  604. package/plugins/pbr/skills/todo/SKILL.md +28 -72
  605. package/plugins/pbr/skills/ui-phase/SKILL.md +180 -0
  606. package/plugins/pbr/skills/ui-review/SKILL.md +206 -0
  607. package/plugins/pbr/skills/undo/SKILL.md +221 -0
  608. package/plugins/pbr/skills/validate-phase/SKILL.md +362 -0
  609. package/plugins/pbr/templates/CONTEXT.md.tmpl +45 -20
  610. package/plugins/pbr/templates/DISCOVERY.md.tmpl +29 -0
  611. package/plugins/pbr/templates/DISCUSSION-LOG.md.tmpl +49 -0
  612. package/plugins/pbr/templates/HANDOFF.json.tmpl +30 -0
  613. package/plugins/pbr/templates/INTEGRATION-REPORT.md.tmpl +18 -2
  614. package/plugins/pbr/templates/MILESTONE-AUDIT.md.tmpl +44 -0
  615. package/plugins/pbr/templates/PROJECT.md.tmpl +126 -0
  616. package/plugins/pbr/templates/REQUIREMENTS.md.tmpl +96 -0
  617. package/plugins/pbr/templates/RETROSPECTIVE.md.tmpl +43 -0
  618. package/plugins/pbr/templates/ROADMAP.md.tmpl +106 -14
  619. package/plugins/pbr/templates/SUMMARY-complex.md.tmpl +133 -0
  620. package/plugins/pbr/templates/SUMMARY-minimal.md.tmpl +55 -0
  621. package/plugins/pbr/templates/SUMMARY.md.tmpl +21 -0
  622. package/plugins/pbr/templates/UAT.md.tmpl +94 -0
  623. package/plugins/pbr/templates/UI-SPEC.md.tmpl +144 -0
  624. package/plugins/pbr/templates/VALIDATION.md.tmpl +94 -0
  625. package/plugins/pbr/templates/VERIFICATION-DETAIL.md.tmpl +54 -13
  626. package/plugins/pbr/templates/project-CONTEXT.md.tmpl +59 -0
  627. package/plugins/pbr/templates/research-outputs/ARCHITECTURE.md.tmpl +91 -0
  628. package/plugins/pbr/templates/research-outputs/FEATURES.md.tmpl +64 -0
  629. package/plugins/pbr/templates/research-outputs/PITFALLS.md.tmpl +50 -0
  630. package/plugins/pbr/templates/research-outputs/STACK.md.tmpl +63 -0
  631. package/plugins/pbr/templates/research-outputs/SUMMARY.md.tmpl +98 -0
  632. package/scripts/build-hooks.js +61 -0
  633. package/scripts/check-ci.js +100 -0
  634. package/scripts/clean-changelog.js +364 -0
  635. package/scripts/generate-derivatives.js +581 -0
  636. package/scripts/posttest.js +93 -0
  637. package/scripts/release.js +262 -0
  638. package/scripts/run-tests.cjs +29 -0
  639. package/scripts/test-wrapper.js +43 -0
  640. package/dashboard/bin/cli.js +0 -25
  641. package/dashboard/public/css/layout.css +0 -704
  642. package/dashboard/public/css/status-colors.css +0 -98
  643. package/dashboard/public/css/tokens.css +0 -59
  644. package/dashboard/public/js/htmx-title.js +0 -5
  645. package/dashboard/public/js/sidebar-toggle.js +0 -34
  646. package/dashboard/public/js/sse-client.js +0 -100
  647. package/dashboard/public/js/theme-toggle.js +0 -46
  648. package/dashboard/src/app.js +0 -91
  649. package/dashboard/src/middleware/current-phase.js +0 -24
  650. package/dashboard/src/middleware/errorHandler.js +0 -52
  651. package/dashboard/src/middleware/notFoundHandler.js +0 -9
  652. package/dashboard/src/repositories/planning.repository.js +0 -130
  653. package/dashboard/src/routes/events.routes.js +0 -45
  654. package/dashboard/src/routes/index.routes.js +0 -35
  655. package/dashboard/src/routes/pages.routes.js +0 -426
  656. package/dashboard/src/server.js +0 -42
  657. package/dashboard/src/services/analytics.service.js +0 -141
  658. package/dashboard/src/services/dashboard.service.js +0 -309
  659. package/dashboard/src/services/milestone.service.js +0 -222
  660. package/dashboard/src/services/notes.service.js +0 -50
  661. package/dashboard/src/services/phase.service.js +0 -232
  662. package/dashboard/src/services/project.service.js +0 -57
  663. package/dashboard/src/services/roadmap.service.js +0 -258
  664. package/dashboard/src/services/sse.service.js +0 -58
  665. package/dashboard/src/services/todo.service.js +0 -272
  666. package/dashboard/src/services/watcher.service.js +0 -48
  667. package/dashboard/src/utils/cache.js +0 -55
  668. package/dashboard/src/views/analytics.ejs +0 -5
  669. package/dashboard/src/views/coming-soon.ejs +0 -11
  670. package/dashboard/src/views/dependencies.ejs +0 -5
  671. package/dashboard/src/views/error.ejs +0 -20
  672. package/dashboard/src/views/index.ejs +0 -5
  673. package/dashboard/src/views/milestone-detail.ejs +0 -5
  674. package/dashboard/src/views/milestones.ejs +0 -5
  675. package/dashboard/src/views/notes.ejs +0 -5
  676. package/dashboard/src/views/partials/analytics-content.ejs +0 -90
  677. package/dashboard/src/views/partials/breadcrumbs.ejs +0 -14
  678. package/dashboard/src/views/partials/dashboard-content.ejs +0 -84
  679. package/dashboard/src/views/partials/dependencies-content.ejs +0 -48
  680. package/dashboard/src/views/partials/empty-state.ejs +0 -7
  681. package/dashboard/src/views/partials/footer.ejs +0 -3
  682. package/dashboard/src/views/partials/head.ejs +0 -30
  683. package/dashboard/src/views/partials/header.ejs +0 -21
  684. package/dashboard/src/views/partials/layout-bottom.ejs +0 -43
  685. package/dashboard/src/views/partials/layout-top.ejs +0 -16
  686. package/dashboard/src/views/partials/milestone-detail-content.ejs +0 -20
  687. package/dashboard/src/views/partials/milestones-content.ejs +0 -88
  688. package/dashboard/src/views/partials/notes-content.ejs +0 -23
  689. package/dashboard/src/views/partials/phase-content.ejs +0 -193
  690. package/dashboard/src/views/partials/phase-doc-content.ejs +0 -38
  691. package/dashboard/src/views/partials/phases-content.ejs +0 -124
  692. package/dashboard/src/views/partials/roadmap-content.ejs +0 -180
  693. package/dashboard/src/views/partials/sidebar.ejs +0 -99
  694. package/dashboard/src/views/partials/todo-create-content.ejs +0 -54
  695. package/dashboard/src/views/partials/todo-detail-content.ejs +0 -42
  696. package/dashboard/src/views/partials/todos-content.ejs +0 -97
  697. package/dashboard/src/views/phase-detail.ejs +0 -5
  698. package/dashboard/src/views/phase-doc.ejs +0 -5
  699. package/dashboard/src/views/phases.ejs +0 -5
  700. package/dashboard/src/views/roadmap.ejs +0 -5
  701. package/dashboard/src/views/todo-create.ejs +0 -5
  702. package/dashboard/src/views/todo-detail.ejs +0 -5
  703. package/dashboard/src/views/todos.ejs +0 -5
  704. package/plugins/copilot-pbr/CHANGELOG.md +0 -19
  705. package/plugins/copilot-pbr/README.md +0 -139
  706. package/plugins/copilot-pbr/agents/audit.agent.md +0 -113
  707. package/plugins/copilot-pbr/agents/codebase-mapper.agent.md +0 -151
  708. package/plugins/copilot-pbr/agents/debugger.agent.md +0 -184
  709. package/plugins/copilot-pbr/agents/executor.agent.md +0 -269
  710. package/plugins/copilot-pbr/agents/general.agent.md +0 -89
  711. package/plugins/copilot-pbr/agents/integration-checker.agent.md +0 -121
  712. package/plugins/copilot-pbr/agents/plan-checker.agent.md +0 -208
  713. package/plugins/copilot-pbr/agents/planner.agent.md +0 -240
  714. package/plugins/copilot-pbr/agents/researcher.agent.md +0 -188
  715. package/plugins/copilot-pbr/agents/synthesizer.agent.md +0 -126
  716. package/plugins/copilot-pbr/agents/verifier.agent.md +0 -228
  717. package/plugins/copilot-pbr/hooks/hooks.json +0 -258
  718. package/plugins/copilot-pbr/plugin.json +0 -30
  719. package/plugins/copilot-pbr/references/agent-anti-patterns.md +0 -25
  720. package/plugins/copilot-pbr/references/agent-contracts.md +0 -297
  721. package/plugins/copilot-pbr/references/agent-interactions.md +0 -135
  722. package/plugins/copilot-pbr/references/agent-teams.md +0 -55
  723. package/plugins/copilot-pbr/references/checkpoints.md +0 -158
  724. package/plugins/copilot-pbr/references/common-bug-patterns.md +0 -14
  725. package/plugins/copilot-pbr/references/config-reference.md +0 -442
  726. package/plugins/copilot-pbr/references/continuation-format.md +0 -213
  727. package/plugins/copilot-pbr/references/deviation-rules.md +0 -113
  728. package/plugins/copilot-pbr/references/git-integration.md +0 -227
  729. package/plugins/copilot-pbr/references/integration-patterns.md +0 -118
  730. package/plugins/copilot-pbr/references/model-profiles.md +0 -100
  731. package/plugins/copilot-pbr/references/model-selection.md +0 -32
  732. package/plugins/copilot-pbr/references/pbr-rules.md +0 -195
  733. package/plugins/copilot-pbr/references/pbr-tools-cli.md +0 -285
  734. package/plugins/copilot-pbr/references/plan-authoring.md +0 -182
  735. package/plugins/copilot-pbr/references/plan-format.md +0 -288
  736. package/plugins/copilot-pbr/references/planning-config.md +0 -214
  737. package/plugins/copilot-pbr/references/questioning.md +0 -215
  738. package/plugins/copilot-pbr/references/reading-verification.md +0 -128
  739. package/plugins/copilot-pbr/references/stub-patterns.md +0 -161
  740. package/plugins/copilot-pbr/references/subagent-coordination.md +0 -120
  741. package/plugins/copilot-pbr/references/ui-formatting.md +0 -444
  742. package/plugins/copilot-pbr/references/verification-patterns.md +0 -199
  743. package/plugins/copilot-pbr/references/wave-execution.md +0 -96
  744. package/plugins/copilot-pbr/rules/pbr-workflow.mdc +0 -48
  745. package/plugins/copilot-pbr/setup.ps1 +0 -93
  746. package/plugins/copilot-pbr/setup.sh +0 -93
  747. package/plugins/copilot-pbr/skills/audit/SKILL.md +0 -330
  748. package/plugins/copilot-pbr/skills/begin/SKILL.md +0 -589
  749. package/plugins/copilot-pbr/skills/begin/templates/PROJECT.md.tmpl +0 -34
  750. package/plugins/copilot-pbr/skills/begin/templates/REQUIREMENTS.md.tmpl +0 -19
  751. package/plugins/copilot-pbr/skills/begin/templates/STATE.md.tmpl +0 -50
  752. package/plugins/copilot-pbr/skills/begin/templates/config.json.tmpl +0 -64
  753. package/plugins/copilot-pbr/skills/begin/templates/researcher-prompt.md.tmpl +0 -20
  754. package/plugins/copilot-pbr/skills/begin/templates/roadmap-prompt.md.tmpl +0 -31
  755. package/plugins/copilot-pbr/skills/begin/templates/synthesis-prompt.md.tmpl +0 -17
  756. package/plugins/copilot-pbr/skills/build/SKILL.md +0 -959
  757. package/plugins/copilot-pbr/skills/config/SKILL.md +0 -250
  758. package/plugins/copilot-pbr/skills/continue/SKILL.md +0 -159
  759. package/plugins/copilot-pbr/skills/dashboard/SKILL.md +0 -43
  760. package/plugins/copilot-pbr/skills/debug/SKILL.md +0 -508
  761. package/plugins/copilot-pbr/skills/debug/templates/continuation-prompt.md.tmpl +0 -17
  762. package/plugins/copilot-pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +0 -28
  763. package/plugins/copilot-pbr/skills/discuss/SKILL.md +0 -353
  764. package/plugins/copilot-pbr/skills/discuss/templates/CONTEXT.md.tmpl +0 -62
  765. package/plugins/copilot-pbr/skills/discuss/templates/decision-categories.md +0 -10
  766. package/plugins/copilot-pbr/skills/do/SKILL.md +0 -66
  767. package/plugins/copilot-pbr/skills/explore/SKILL.md +0 -373
  768. package/plugins/copilot-pbr/skills/health/SKILL.md +0 -283
  769. package/plugins/copilot-pbr/skills/health/templates/check-pattern.md.tmpl +0 -31
  770. package/plugins/copilot-pbr/skills/health/templates/output-format.md.tmpl +0 -64
  771. package/plugins/copilot-pbr/skills/help/SKILL.md +0 -193
  772. package/plugins/copilot-pbr/skills/import/SKILL.md +0 -502
  773. package/plugins/copilot-pbr/skills/milestone/SKILL.md +0 -806
  774. package/plugins/copilot-pbr/skills/milestone/templates/audit-report.md.tmpl +0 -49
  775. package/plugins/copilot-pbr/skills/milestone/templates/stats-file.md.tmpl +0 -31
  776. package/plugins/copilot-pbr/skills/note/SKILL.md +0 -213
  777. package/plugins/copilot-pbr/skills/pause/SKILL.md +0 -247
  778. package/plugins/copilot-pbr/skills/pause/templates/continue-here.md.tmpl +0 -72
  779. package/plugins/copilot-pbr/skills/plan/SKILL.md +0 -662
  780. package/plugins/copilot-pbr/skills/plan/templates/checker-prompt.md.tmpl +0 -22
  781. package/plugins/copilot-pbr/skills/plan/templates/gap-closure-prompt.md.tmpl +0 -33
  782. package/plugins/copilot-pbr/skills/plan/templates/planner-prompt.md.tmpl +0 -39
  783. package/plugins/copilot-pbr/skills/plan/templates/researcher-prompt.md.tmpl +0 -20
  784. package/plugins/copilot-pbr/skills/plan/templates/revision-prompt.md.tmpl +0 -24
  785. package/plugins/copilot-pbr/skills/quick/SKILL.md +0 -376
  786. package/plugins/copilot-pbr/skills/resume/SKILL.md +0 -399
  787. package/plugins/copilot-pbr/skills/review/SKILL.md +0 -653
  788. package/plugins/copilot-pbr/skills/review/templates/debugger-prompt.md.tmpl +0 -61
  789. package/plugins/copilot-pbr/skills/review/templates/gap-planner-prompt.md.tmpl +0 -41
  790. package/plugins/copilot-pbr/skills/review/templates/verifier-prompt.md.tmpl +0 -116
  791. package/plugins/copilot-pbr/skills/scan/SKILL.md +0 -299
  792. package/plugins/copilot-pbr/skills/scan/templates/mapper-prompt.md.tmpl +0 -202
  793. package/plugins/copilot-pbr/skills/setup/SKILL.md +0 -296
  794. package/plugins/copilot-pbr/skills/shared/commit-planning-docs.md +0 -36
  795. package/plugins/copilot-pbr/skills/shared/config-loading.md +0 -103
  796. package/plugins/copilot-pbr/skills/shared/context-budget.md +0 -41
  797. package/plugins/copilot-pbr/skills/shared/context-loader-task.md +0 -87
  798. package/plugins/copilot-pbr/skills/shared/digest-select.md +0 -80
  799. package/plugins/copilot-pbr/skills/shared/domain-probes.md +0 -126
  800. package/plugins/copilot-pbr/skills/shared/error-recovery-strategies.md +0 -51
  801. package/plugins/copilot-pbr/skills/shared/error-reporting.md +0 -81
  802. package/plugins/copilot-pbr/skills/shared/gate-prompts.md +0 -389
  803. package/plugins/copilot-pbr/skills/shared/phase-argument-parsing.md +0 -46
  804. package/plugins/copilot-pbr/skills/shared/progress-display.md +0 -53
  805. package/plugins/copilot-pbr/skills/shared/revision-loop.md +0 -82
  806. package/plugins/copilot-pbr/skills/shared/state-loading.md +0 -63
  807. package/plugins/copilot-pbr/skills/shared/state-update.md +0 -170
  808. package/plugins/copilot-pbr/skills/shared/universal-anti-patterns.md +0 -38
  809. package/plugins/copilot-pbr/skills/status/SKILL.md +0 -362
  810. package/plugins/copilot-pbr/skills/statusline/SKILL.md +0 -149
  811. package/plugins/copilot-pbr/skills/todo/SKILL.md +0 -279
  812. package/plugins/copilot-pbr/templates/CONTEXT.md.tmpl +0 -53
  813. package/plugins/copilot-pbr/templates/INTEGRATION-REPORT.md.tmpl +0 -152
  814. package/plugins/copilot-pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -98
  815. package/plugins/copilot-pbr/templates/ROADMAP.md.tmpl +0 -48
  816. package/plugins/copilot-pbr/templates/SUMMARY.md.tmpl +0 -82
  817. package/plugins/copilot-pbr/templates/VERIFICATION-DETAIL.md.tmpl +0 -117
  818. package/plugins/copilot-pbr/templates/codebase/ARCHITECTURE.md.tmpl +0 -98
  819. package/plugins/copilot-pbr/templates/codebase/CONCERNS.md.tmpl +0 -93
  820. package/plugins/copilot-pbr/templates/codebase/CONVENTIONS.md.tmpl +0 -104
  821. package/plugins/copilot-pbr/templates/codebase/INTEGRATIONS.md.tmpl +0 -78
  822. package/plugins/copilot-pbr/templates/codebase/STACK.md.tmpl +0 -78
  823. package/plugins/copilot-pbr/templates/codebase/STRUCTURE.md.tmpl +0 -80
  824. package/plugins/copilot-pbr/templates/codebase/TESTING.md.tmpl +0 -107
  825. package/plugins/copilot-pbr/templates/continue-here.md.tmpl +0 -74
  826. package/plugins/copilot-pbr/templates/prompt-partials/phase-project-context.md.tmpl +0 -38
  827. package/plugins/copilot-pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
  828. package/plugins/copilot-pbr/templates/research/STACK.md.tmpl +0 -71
  829. package/plugins/copilot-pbr/templates/research/SUMMARY.md.tmpl +0 -112
  830. package/plugins/copilot-pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
  831. package/plugins/copilot-pbr/templates/research-outputs/project-research.md.tmpl +0 -99
  832. package/plugins/copilot-pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
  833. package/plugins/cursor-pbr/.cursor-plugin/plugin.json +0 -32
  834. package/plugins/cursor-pbr/CHANGELOG.md +0 -15
  835. package/plugins/cursor-pbr/README.md +0 -123
  836. package/plugins/cursor-pbr/agents/audit.md +0 -178
  837. package/plugins/cursor-pbr/agents/codebase-mapper.md +0 -150
  838. package/plugins/cursor-pbr/agents/debugger.md +0 -183
  839. package/plugins/cursor-pbr/agents/executor.md +0 -268
  840. package/plugins/cursor-pbr/agents/general.md +0 -88
  841. package/plugins/cursor-pbr/agents/integration-checker.md +0 -120
  842. package/plugins/cursor-pbr/agents/plan-checker.md +0 -207
  843. package/plugins/cursor-pbr/agents/planner.md +0 -239
  844. package/plugins/cursor-pbr/agents/researcher.md +0 -187
  845. package/plugins/cursor-pbr/agents/synthesizer.md +0 -125
  846. package/plugins/cursor-pbr/agents/verifier.md +0 -227
  847. package/plugins/cursor-pbr/assets/.gitkeep +0 -0
  848. package/plugins/cursor-pbr/assets/logo.svg +0 -21
  849. package/plugins/cursor-pbr/hooks/hooks.json +0 -224
  850. package/plugins/cursor-pbr/references/agent-anti-patterns.md +0 -25
  851. package/plugins/cursor-pbr/references/agent-contracts.md +0 -297
  852. package/plugins/cursor-pbr/references/agent-interactions.md +0 -135
  853. package/plugins/cursor-pbr/references/agent-teams.md +0 -55
  854. package/plugins/cursor-pbr/references/checkpoints.md +0 -158
  855. package/plugins/cursor-pbr/references/common-bug-patterns.md +0 -14
  856. package/plugins/cursor-pbr/references/config-reference.md +0 -442
  857. package/plugins/cursor-pbr/references/continuation-format.md +0 -213
  858. package/plugins/cursor-pbr/references/deviation-rules.md +0 -113
  859. package/plugins/cursor-pbr/references/git-integration.md +0 -227
  860. package/plugins/cursor-pbr/references/integration-patterns.md +0 -118
  861. package/plugins/cursor-pbr/references/model-profiles.md +0 -100
  862. package/plugins/cursor-pbr/references/model-selection.md +0 -32
  863. package/plugins/cursor-pbr/references/pbr-rules.md +0 -195
  864. package/plugins/cursor-pbr/references/pbr-tools-cli.md +0 -285
  865. package/plugins/cursor-pbr/references/plan-authoring.md +0 -182
  866. package/plugins/cursor-pbr/references/plan-format.md +0 -288
  867. package/plugins/cursor-pbr/references/planning-config.md +0 -214
  868. package/plugins/cursor-pbr/references/questioning.md +0 -215
  869. package/plugins/cursor-pbr/references/reading-verification.md +0 -128
  870. package/plugins/cursor-pbr/references/stub-patterns.md +0 -161
  871. package/plugins/cursor-pbr/references/subagent-coordination.md +0 -120
  872. package/plugins/cursor-pbr/references/ui-formatting.md +0 -444
  873. package/plugins/cursor-pbr/references/verification-patterns.md +0 -199
  874. package/plugins/cursor-pbr/references/wave-execution.md +0 -96
  875. package/plugins/cursor-pbr/rules/pbr-workflow.mdc +0 -48
  876. package/plugins/cursor-pbr/setup.ps1 +0 -78
  877. package/plugins/cursor-pbr/setup.sh +0 -83
  878. package/plugins/cursor-pbr/skills/audit/SKILL.md +0 -331
  879. package/plugins/cursor-pbr/skills/begin/SKILL.md +0 -589
  880. package/plugins/cursor-pbr/skills/begin/templates/PROJECT.md.tmpl +0 -34
  881. package/plugins/cursor-pbr/skills/begin/templates/REQUIREMENTS.md.tmpl +0 -19
  882. package/plugins/cursor-pbr/skills/begin/templates/STATE.md.tmpl +0 -50
  883. package/plugins/cursor-pbr/skills/begin/templates/config.json.tmpl +0 -64
  884. package/plugins/cursor-pbr/skills/begin/templates/researcher-prompt.md.tmpl +0 -20
  885. package/plugins/cursor-pbr/skills/begin/templates/roadmap-prompt.md.tmpl +0 -31
  886. package/plugins/cursor-pbr/skills/begin/templates/synthesis-prompt.md.tmpl +0 -17
  887. package/plugins/cursor-pbr/skills/build/SKILL.md +0 -960
  888. package/plugins/cursor-pbr/skills/config/SKILL.md +0 -252
  889. package/plugins/cursor-pbr/skills/continue/SKILL.md +0 -159
  890. package/plugins/cursor-pbr/skills/dashboard/SKILL.md +0 -44
  891. package/plugins/cursor-pbr/skills/debug/SKILL.md +0 -512
  892. package/plugins/cursor-pbr/skills/debug/templates/continuation-prompt.md.tmpl +0 -17
  893. package/plugins/cursor-pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +0 -28
  894. package/plugins/cursor-pbr/skills/discuss/SKILL.md +0 -354
  895. package/plugins/cursor-pbr/skills/discuss/templates/CONTEXT.md.tmpl +0 -62
  896. package/plugins/cursor-pbr/skills/discuss/templates/decision-categories.md +0 -10
  897. package/plugins/cursor-pbr/skills/do/SKILL.md +0 -67
  898. package/plugins/cursor-pbr/skills/explore/SKILL.md +0 -376
  899. package/plugins/cursor-pbr/skills/health/SKILL.md +0 -283
  900. package/plugins/cursor-pbr/skills/health/templates/check-pattern.md.tmpl +0 -31
  901. package/plugins/cursor-pbr/skills/health/templates/output-format.md.tmpl +0 -64
  902. package/plugins/cursor-pbr/skills/help/SKILL.md +0 -193
  903. package/plugins/cursor-pbr/skills/import/SKILL.md +0 -505
  904. package/plugins/cursor-pbr/skills/milestone/SKILL.md +0 -807
  905. package/plugins/cursor-pbr/skills/milestone/templates/audit-report.md.tmpl +0 -49
  906. package/plugins/cursor-pbr/skills/milestone/templates/stats-file.md.tmpl +0 -31
  907. package/plugins/cursor-pbr/skills/note/SKILL.md +0 -214
  908. package/plugins/cursor-pbr/skills/pause/SKILL.md +0 -248
  909. package/plugins/cursor-pbr/skills/pause/templates/continue-here.md.tmpl +0 -72
  910. package/plugins/cursor-pbr/skills/plan/SKILL.md +0 -663
  911. package/plugins/cursor-pbr/skills/plan/templates/checker-prompt.md.tmpl +0 -22
  912. package/plugins/cursor-pbr/skills/plan/templates/gap-closure-prompt.md.tmpl +0 -33
  913. package/plugins/cursor-pbr/skills/plan/templates/planner-prompt.md.tmpl +0 -39
  914. package/plugins/cursor-pbr/skills/plan/templates/researcher-prompt.md.tmpl +0 -20
  915. package/plugins/cursor-pbr/skills/plan/templates/revision-prompt.md.tmpl +0 -24
  916. package/plugins/cursor-pbr/skills/quick/SKILL.md +0 -376
  917. package/plugins/cursor-pbr/skills/resume/SKILL.md +0 -399
  918. package/plugins/cursor-pbr/skills/review/SKILL.md +0 -654
  919. package/plugins/cursor-pbr/skills/review/templates/debugger-prompt.md.tmpl +0 -61
  920. package/plugins/cursor-pbr/skills/review/templates/gap-planner-prompt.md.tmpl +0 -41
  921. package/plugins/cursor-pbr/skills/review/templates/verifier-prompt.md.tmpl +0 -116
  922. package/plugins/cursor-pbr/skills/scan/SKILL.md +0 -300
  923. package/plugins/cursor-pbr/skills/scan/templates/mapper-prompt.md.tmpl +0 -202
  924. package/plugins/cursor-pbr/skills/setup/SKILL.md +0 -296
  925. package/plugins/cursor-pbr/skills/shared/commit-planning-docs.md +0 -36
  926. package/plugins/cursor-pbr/skills/shared/config-loading.md +0 -103
  927. package/plugins/cursor-pbr/skills/shared/context-budget.md +0 -41
  928. package/plugins/cursor-pbr/skills/shared/context-loader-task.md +0 -87
  929. package/plugins/cursor-pbr/skills/shared/digest-select.md +0 -80
  930. package/plugins/cursor-pbr/skills/shared/domain-probes.md +0 -126
  931. package/plugins/cursor-pbr/skills/shared/error-recovery-strategies.md +0 -51
  932. package/plugins/cursor-pbr/skills/shared/error-reporting.md +0 -81
  933. package/plugins/cursor-pbr/skills/shared/gate-prompts.md +0 -389
  934. package/plugins/cursor-pbr/skills/shared/phase-argument-parsing.md +0 -46
  935. package/plugins/cursor-pbr/skills/shared/progress-display.md +0 -53
  936. package/plugins/cursor-pbr/skills/shared/revision-loop.md +0 -82
  937. package/plugins/cursor-pbr/skills/shared/state-loading.md +0 -63
  938. package/plugins/cursor-pbr/skills/shared/state-update.md +0 -170
  939. package/plugins/cursor-pbr/skills/shared/universal-anti-patterns.md +0 -38
  940. package/plugins/cursor-pbr/skills/status/SKILL.md +0 -362
  941. package/plugins/cursor-pbr/skills/statusline/SKILL.md +0 -150
  942. package/plugins/cursor-pbr/skills/todo/SKILL.md +0 -280
  943. package/plugins/cursor-pbr/templates/CONTEXT.md.tmpl +0 -53
  944. package/plugins/cursor-pbr/templates/INTEGRATION-REPORT.md.tmpl +0 -152
  945. package/plugins/cursor-pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -98
  946. package/plugins/cursor-pbr/templates/ROADMAP.md.tmpl +0 -48
  947. package/plugins/cursor-pbr/templates/SUMMARY.md.tmpl +0 -82
  948. package/plugins/cursor-pbr/templates/VERIFICATION-DETAIL.md.tmpl +0 -117
  949. package/plugins/cursor-pbr/templates/codebase/ARCHITECTURE.md.tmpl +0 -98
  950. package/plugins/cursor-pbr/templates/codebase/CONCERNS.md.tmpl +0 -93
  951. package/plugins/cursor-pbr/templates/codebase/CONVENTIONS.md.tmpl +0 -104
  952. package/plugins/cursor-pbr/templates/codebase/INTEGRATIONS.md.tmpl +0 -78
  953. package/plugins/cursor-pbr/templates/codebase/STACK.md.tmpl +0 -78
  954. package/plugins/cursor-pbr/templates/codebase/STRUCTURE.md.tmpl +0 -80
  955. package/plugins/cursor-pbr/templates/codebase/TESTING.md.tmpl +0 -107
  956. package/plugins/cursor-pbr/templates/continue-here.md.tmpl +0 -74
  957. package/plugins/cursor-pbr/templates/prompt-partials/phase-project-context.md.tmpl +0 -38
  958. package/plugins/cursor-pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
  959. package/plugins/cursor-pbr/templates/research/STACK.md.tmpl +0 -71
  960. package/plugins/cursor-pbr/templates/research/SUMMARY.md.tmpl +0 -112
  961. package/plugins/cursor-pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
  962. package/plugins/cursor-pbr/templates/research-outputs/project-research.md.tmpl +0 -99
  963. package/plugins/cursor-pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
  964. package/plugins/pbr/references/agent-interactions.md +0 -134
  965. package/plugins/pbr/references/pbr-rules.md +0 -194
  966. package/plugins/pbr/references/pbr-tools-cli.md +0 -285
  967. package/plugins/pbr/references/planning-config.md +0 -213
  968. package/plugins/pbr/references/subagent-coordination.md +0 -119
  969. package/plugins/pbr/references/ui-formatting.md +0 -444
  970. package/plugins/pbr/scripts/validate-plugin-structure.js +0 -183
  971. package/plugins/pbr/skills/milestone/templates/audit-report.md.tmpl +0 -48
  972. package/plugins/pbr/skills/shared/error-recovery-strategies.md +0 -51
  973. package/plugins/pbr/skills/shared/progress-display.md +0 -53
  974. package/plugins/pbr/skills/shared/state-loading.md +0 -62
  975. package/plugins/pbr/templates/RESEARCH-SUMMARY.md.tmpl +0 -97
  976. package/plugins/pbr/templates/research/ARCHITECTURE.md.tmpl +0 -124
  977. package/plugins/pbr/templates/research/STACK.md.tmpl +0 -71
  978. package/plugins/pbr/templates/research/SUMMARY.md.tmpl +0 -112
  979. package/plugins/pbr/templates/research-outputs/phase-research.md.tmpl +0 -81
  980. package/plugins/pbr/templates/research-outputs/project-research.md.tmpl +0 -99
  981. package/plugins/pbr/templates/research-outputs/synthesis.md.tmpl +0 -36
  982. /package/plugins/pbr/references/{agent-anti-patterns.md → archive/agent-anti-patterns.md} +0 -0
package/CHANGELOG.md CHANGED
@@ -2,453 +2,1461 @@
2
2
 
3
3
  All notable changes to Plan-Build-Run will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ ## [2.21.2](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.21.1...plan-build-run-v2.21.2) — 2026-03-24
7
6
 
8
- ## [2.21.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.21.0...plan-build-run-v2.21.1) (2026-02-23)
7
+ ### Hooks
9
8
 
9
+ * Expand calibration to all evaluative agents with calibrate-all CLI ([09c8c328](https://github.com/SienkLogic/plan-build-run/commit/09c8c328))
10
10
 
11
- ### Bug Fixes
11
+ ## [2.21.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.21.0...plan-build-run-v2.21.1) — 2026-03-24
12
12
 
13
- * **23-01:** register /pbr:do command and fix critical audit findings ([274f324](https://github.com/SienkLogic/plan-build-run/commit/274f3247ea32557954c45eb321f5551bc3d8b3de))
14
- * **23-02:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in cursor-pbr ([7fa53be](https://github.com/SienkLogic/plan-build-run/commit/7fa53beafaba95ab4c36499e7fb333ec83c58ecc))
15
- * **23-03:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in copilot-pbr ([071f739](https://github.com/SienkLogic/plan-build-run/commit/071f739eab3854e03a68f6b93ad7de40854c8b72))
16
- * **23-04:** replace subagents terminology with agents in cursor-pbr ([444765f](https://github.com/SienkLogic/plan-build-run/commit/444765f3277d077fba200c6d5f5fde594abdaf9a))
17
- * **23-05:** fix subagents terminology in copilot-pbr and sync ROADMAP template ([e019e83](https://github.com/SienkLogic/plan-build-run/commit/e019e832b4c2808cec951eda44f0f57cb8755b8c))
18
- * **23-07:** strip hookSpecificOutput wrapper from check-phase-boundary and pre-write-dispatch ([61e4e1e](https://github.com/SienkLogic/plan-build-run/commit/61e4e1ec7a7db3bc8ac4184e58c94ab5c324eb38))
19
- * **23-09:** reorder copilot-pbr hooks.json postToolUseFailure before preToolUse to match pbr canonical ordering ([1180c9d](https://github.com/SienkLogic/plan-build-run/commit/1180c9d4ffb2c1bbbe4bc201a5dab126aee43ded))
20
- * **23-09:** use decision:block in validate-skill-args.js, remove orphaned JSDoc in validate-task.js ([ec8c1d2](https://github.com/SienkLogic/plan-build-run/commit/ec8c1d24f9436c1dee703ec3509eb065fb2c4c92))
21
- * **23-10:** correct dispatch table — move check-doc-sprawl and check-skill-workflow to pre-write-dispatch ([c6acc27](https://github.com/SienkLogic/plan-build-run/commit/c6acc2791ba652d5f81da231d301afcc90ab5c57))
22
- * **23-10:** remove dead body from checkStatuslineRules in check-skill-workflow.js ([5a518ec](https://github.com/SienkLogic/plan-build-run/commit/5a518ec4772de1cf2991201e2657f5737efe2ebd))
23
- * **23-10:** remove redundant allowed-tools Note from health SKILL.md Auto-Fix section ([7dcd549](https://github.com/SienkLogic/plan-build-run/commit/7dcd549bbd0e11b6eb4177e5ed1d4fd5eddc7d9b))
24
- * **23-12:** fix remaining subagents terminology in scan SKILL.md derivatives ([67b15e8](https://github.com/SienkLogic/plan-build-run/commit/67b15e881d752ad1eb66bfb31496f634cb3c1768))
25
- * **23-12:** fix test property paths and heredoc extraction to achieve 70% branch coverage ([4b857fe](https://github.com/SienkLogic/plan-build-run/commit/4b857fe73b8d82e6efe05114a7b09737c65dee12))
26
- * **23-12:** remove excess tool grants from synthesizer and plan-checker agents ([04432b3](https://github.com/SienkLogic/plan-build-run/commit/04432b35dde761e95d14ca98353091bc936512a6))
27
- * **quick-001:** fix agent prompt issues from audit (items 4-7) ([2772154](https://github.com/SienkLogic/plan-build-run/commit/27721547694686e2f425e95a7257b9cc48316c86))
28
- * **quick-001:** fix agent prompt issues from audit (items 8-10) ([1c41a8f](https://github.com/SienkLogic/plan-build-run/commit/1c41a8f29a5069f4bb7cec612875b59dc6a22b22))
29
- * **quick-001:** fix STATE.md body drift, stale status line, and ROADMAP sync gaps ([896494d](https://github.com/SienkLogic/plan-build-run/commit/896494d1215a7aadb7aa5b28c050db282cdcd784))
30
- * **tools:** fix CI lint errors and macOS symlink test failure ([e5294a0](https://github.com/SienkLogic/plan-build-run/commit/e5294a0e0eefde674203ef0ed587d5def5c0f865))
13
+ ### Hooks
31
14
 
32
- ## [2.21.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.20.0...plan-build-run-v2.21.0) (2026-02-23)
15
+ * Wire calibration loop into milestone completion and enrich verifier few-shot examples ([6a96ab09](https://github.com/SienkLogic/plan-build-run/commit/6a96ab09))
16
+ * Add crash resilience to hook server with uncaughtException and connection error handlers ([b7d926d2](https://github.com/SienkLogic/plan-build-run/commit/b7d926d2))
17
+ * Consolidate misc.js MSYS regex and accept VERIFICATION.md format variants ([fca7eaa9](https://github.com/SienkLogic/plan-build-run/commit/fca7eaa9))
18
+ * Enforce VERIFICATION.md creation in autonomous mode ([4fbee58a](https://github.com/SienkLogic/plan-build-run/commit/4fbee58a))
33
19
 
20
+ ## [2.21.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.20.0...plan-build-run-v2.21.0) — 2026-03-24
34
21
 
35
- ### Features
22
+ ### Agents
36
23
 
37
- * **tools:** add help docs, concurrent tests, and discuss requirements surfacing ([02e9cc9](https://github.com/SienkLogic/plan-build-run/commit/02e9cc997d5b7d1aed3fc43cd8f8160c6e08d78b))
38
- * **tools:** add milestone preview subcommand across all plugins ([fa6dca7](https://github.com/SienkLogic/plan-build-run/commit/fa6dca75d78adc952a5ffffd92baf17d8dd23e8e))
39
- * **tools:** resolve exploration backlog fix script bugs, add copilot hooks, improve recovery ([8a956dd](https://github.com/SienkLogic/plan-build-run/commit/8a956dd33a7182c402307d5569e0d8d37dbdaf1c))
24
+ * Add thinking-models reference docs for planner and verifier pilot ([535858ce](https://github.com/SienkLogic/plan-build-run/commit/535858ce))
25
+ * Add verifier calibration CLI command with corpus analysis ([817a9ad6](https://github.com/SienkLogic/plan-build-run/commit/817a9ad6))
26
+ * Trim executor.md pre-flight section to stay under 8000 token limit ([0eb5c161](https://github.com/SienkLogic/plan-build-run/commit/0eb5c161))
27
+ * Add premature completion detection for 5 agent types ([30876585](https://github.com/SienkLogic/plan-build-run/commit/30876585))
28
+ * Wire few-shot example references into evaluative agents ([168995ed](https://github.com/SienkLogic/plan-build-run/commit/168995ed))
29
+ * Create few-shot evaluation examples for 6 agents ([7913dcd9](https://github.com/SienkLogic/plan-build-run/commit/7913dcd9))
40
30
 
31
+ ### CI/CD
41
32
 
42
- ### Bug Fixes
33
+ * Add live verification and multi-round QA to build workflow ([5df19d8a](https://github.com/SienkLogic/plan-build-run/commit/5df19d8a))
43
34
 
44
- * **tools:** handle concurrent write corruption in flaky test across platforms ([e4e9b4d](https://github.com/SienkLogic/plan-build-run/commit/e4e9b4d524e5c08665b72a3c99555452f8e09089))
45
- * **tools:** handle empty string race in concurrent .active-skill test on Windows ([9cb294a](https://github.com/SienkLogic/plan-build-run/commit/9cb294a1c7db67c1fe80d9672d4580c8951011c4))
35
+ ### Hooks
46
36
 
47
- ## [2.20.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.19.0...plan-build-run-v2.20.0) (2026-02-23)
37
+ * Add hook round-awareness and QA iteration tests ([bec15e28](https://github.com/SienkLogic/plan-build-run/commit/bec15e28))
38
+ * Create hook few-shot documentation and validation test ([6ec67cf1](https://github.com/SienkLogic/plan-build-run/commit/6ec67cf1))
48
39
 
40
+ ### Testing
49
41
 
50
- ### Features
42
+ * Add stress-test CLI command for harness component validation ([a4393f10](https://github.com/SienkLogic/plan-build-run/commit/a4393f10))
51
43
 
52
- * **tools:** add worktree isolation, ConfigChange hook, and claude agents docs ([d704f34](https://github.com/SienkLogic/plan-build-run/commit/d704f340c636fa41f988d27a661a1e1918b04c87))
44
+ ### Other
53
45
 
54
- ## [2.19.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.18.1...plan-build-run-v2.19.0) (2026-02-22)
46
+ * Add model change detection and harness profile mismatch warnings ([211b9cf0](https://github.com/SienkLogic/plan-build-run/commit/211b9cf0))
47
+ * Add configGetEffective precedence helper and wire profiles into gates ([e0bbd9fc](https://github.com/SienkLogic/plan-build-run/commit/e0bbd9fc))
48
+ * Add benchmarks CLI command and stats integration ([98c73e7f](https://github.com/SienkLogic/plan-build-run/commit/98c73e7f))
49
+ * Add harness profile schema, defaults, and resolution logic ([68a1d659](https://github.com/SienkLogic/plan-build-run/commit/68a1d659))
50
+ * Enrich cost tracking and add benchmark aggregation library ([da4f6d50](https://github.com/SienkLogic/plan-build-run/commit/da4f6d50))
51
+ * Add config schema for live verification and QA rounds ([79afca4b](https://github.com/SienkLogic/plan-build-run/commit/79afca4b))
52
+ * Add handoff artifact completeness validators ([8727bd39](https://github.com/SienkLogic/plan-build-run/commit/8727bd39))
53
+ * Add criterion language guidance and vague-criteria detection ([ca45d91d](https://github.com/SienkLogic/plan-build-run/commit/ca45d91d))
55
54
 
55
+ ## [2.20.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.19.2...plan-build-run-v2.20.0) — 2026-03-24
56
56
 
57
- ### Features
57
+ ### CI/CD
58
58
 
59
- * **dashboard:** add responsive mobile layout with sidebar hamburger menu ([5621739](https://github.com/SienkLogic/plan-build-run/commit/5621739b1b1b85bf5854bf52582908251fdeff13))
60
- * **tools:** add D10 test plan coverage dimension to plan-checker agent ([a4ff196](https://github.com/SienkLogic/plan-build-run/commit/a4ff19664c723861b262f9d6feccdd9e1ef95221))
61
- * **tools:** add PreToolUse additionalContext soft warnings for risky operations ([1d39406](https://github.com/SienkLogic/plan-build-run/commit/1d394066071959e4abafdcc1e84d472f05584018))
62
- * **tools:** add STATE.md backup step before health skill auto-fix regeneration ([43a52dd](https://github.com/SienkLogic/plan-build-run/commit/43a52dd36df9afc2f0aa3ddebfd588904b562bcd))
63
- * **tools:** require user confirmation before debugger agent applies fixes ([5446654](https://github.com/SienkLogic/plan-build-run/commit/544665487093210c6f6e412f7af79e02d33cf19a))
64
- * **tools:** use last_assistant_message in Stop/SubagentStop hooks ([ab73122](https://github.com/SienkLogic/plan-build-run/commit/ab731222549b6c251d93de123a3a2475b8d41a13))
59
+ * Align coverage thresholds with actual values ([1e461899](https://github.com/SienkLogic/plan-build-run/commit/1e461899))
65
60
 
61
+ ### CLI Tools
66
62
 
67
- ### Bug Fixes
63
+ * PID lock fail-closed + async lockedFileUpdate ([20fe7aa3](https://github.com/SienkLogic/plan-build-run/commit/20fe7aa3))
68
64
 
69
- * **dashboard:** handle todo files with H1 title and high/medium/low priority ([9edb601](https://github.com/SienkLogic/plan-build-run/commit/9edb601bdeb974c3f1d47f612697516b67d5aa2e))
70
- * **dashboard:** show completed milestones on roadmap when all phases archived ([656ec04](https://github.com/SienkLogic/plan-build-run/commit/656ec04120931e5092ee608f23022276c5d79381))
71
- * **tools:** add commonjs package.json to scripts for ESM project compat ([8ca8780](https://github.com/SienkLogic/plan-build-run/commit/8ca878023ce90257ccb9fe0cdabe5a3040ece9e9))
65
+ ### Hooks
72
66
 
67
+ * Remove constant condition lint error in commands/misc.js ([3fca3624](https://github.com/SienkLogic/plan-build-run/commit/3fca3624))
73
68
 
74
- ### Documentation
75
-
76
- * **tools:** document minimum Claude Code v2.1.47 requirement for Windows hooks ([2ecb231](https://github.com/SienkLogic/plan-build-run/commit/2ecb23172f154e1fe68460c087eb055deea1df94))
77
-
78
- ## [2.18.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.18.0...plan-build-run-v2.18.1) (2026-02-22)
79
-
80
-
81
- ### Bug Fixes
69
+ ### Other
82
70
 
83
- * **tools:** add Skill tool to 4 PBR skills that use auto-advance chaining ([2be11a4](https://github.com/SienkLogic/plan-build-run/commit/2be11a4dd4fe0ad875787fc65d7f217919f4a662))
84
- * **tools:** update critical agents to use model: sonnet instead of inherit ([6d66573](https://github.com/SienkLogic/plan-build-run/commit/6d66573b72352a1c412ff7e1e74adee2e1d2b59f))
71
+ * Add config cache with fs.watchFile invalidation ([80eafaaf](https://github.com/SienkLogic/plan-build-run/commit/80eafaaf))
72
+ * Add error handling to silent catch blocks across 50+ scripts ([81d61873](https://github.com/SienkLogic/plan-build-run/commit/81d61873))
73
+ * Phase 144 squash merge ([e2190574](https://github.com/SienkLogic/plan-build-run/commit/e2190574))
85
74
 
86
- ## [2.18.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.17.1...plan-build-run-v2.18.0) (2026-02-22)
75
+ ## [2.19.2](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.19.1...plan-build-run-v2.19.2) 2026-03-24
87
76
 
77
+ ### CI/CD
88
78
 
89
- ### Features
79
+ * Remove double blank line in config-reference.md (markdownlint MD012) ([f72d4f2f](https://github.com/SienkLogic/plan-build-run/commit/f72d4f2f))
80
+ * Wire spot-check CLI command and fix empty block lint errors ([b4abfc2c](https://github.com/SienkLogic/plan-build-run/commit/b4abfc2c))
90
81
 
91
- * **16-01:** redesign dashboard home, fix analytics duration, add bar charts, mermaid dark mode ([9ea3936](https://github.com/SienkLogic/plan-build-run/commit/9ea3936bb5c35305b57250c83e596c4704bc8868))
92
- * **17-01:** add notes page, verification viewer, milestone progress bars, dynamic footer version ([71625ff](https://github.com/SienkLogic/plan-build-run/commit/71625ff769638be8d75840b48f455a1fe5664b88))
82
+ ### CLI Tools
93
83
 
84
+ * Repair pbr-tools.test.js brace nesting from Phase 141 legacy removal ([031c0d06](https://github.com/SienkLogic/plan-build-run/commit/031c0d06))
94
85
 
95
- ### Bug Fixes
86
+ ### Configuration
96
87
 
97
- * **18-01:** HTMX navigation consistency, SSE tooltip, error page fix, remove deprecated layout ([0f40f3c](https://github.com/SienkLogic/plan-build-run/commit/0f40f3c9de389f7eb33f8eb83c78a0880f485e4e))
88
+ * Add missing feature flags to schema and fix default drift ([248e5b5a](https://github.com/SienkLogic/plan-build-run/commit/248e5b5a))
98
89
 
99
- ## [2.17.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.17.0...plan-build-run-v2.17.1) (2026-02-22)
90
+ ### Dashboard
100
91
 
92
+ * Fix log filename, health require paths, version, and research date ([b0eadc4a](https://github.com/SienkLogic/plan-build-run/commit/b0eadc4a))
101
93
 
102
- ### Bug Fixes
94
+ ### Hooks
103
95
 
104
- * **dashboard:** plan count regex and mermaid rendering ([204838b](https://github.com/SienkLogic/plan-build-run/commit/204838b8be197cfa0835005e79a288f1d7d3d646))
96
+ * Suppress git diff --cached stderr output with stdio pipe ([7cec470b](https://github.com/SienkLogic/plan-build-run/commit/7cec470b))
97
+ * Restrict dashboard CORS to localhost and add hook event log rotation ([57e829dd](https://github.com/SienkLogic/plan-build-run/commit/57e829dd))
98
+ * Remove leftover enrichCommitLlm reference from pre-bash-dispatch ([ffa1ba03](https://github.com/SienkLogic/plan-build-run/commit/ffa1ba03))
99
+ * Add PreToolUse response translation layer in hook-server.js ([b8cbbef6](https://github.com/SienkLogic/plan-build-run/commit/b8cbbef6))
105
100
 
106
- ## [2.17.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.16.0...plan-build-run-v2.17.0) (2026-02-22)
101
+ ### Skills
107
102
 
103
+ * Replace stale plan-build-run/bin/lib/ paths and fix state-update line limit ([a67d6c4b](https://github.com/SienkLogic/plan-build-run/commit/a67d6c4b))
108
104
 
109
- ### Features
105
+ ### Testing
110
106
 
111
- * **tools:** add /pbr:audit skill for session compliance and UX review ([ea9920e](https://github.com/SienkLogic/plan-build-run/commit/ea9920e3ce9d982d222644e8898569b2dbfa71f8))
107
+ * Update suggest-compact test for legacy .compact-counter removal ([f9e35aeb](https://github.com/SienkLogic/plan-build-run/commit/f9e35aeb))
112
108
 
113
- ## [2.16.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.15.0...plan-build-run-v2.16.0) (2026-02-22)
109
+ ### Other
114
110
 
111
+ * Remove orphaned config keys and wrap git diff --cached in try-catch ([4d863ecd](https://github.com/SienkLogic/plan-build-run/commit/4d863ecd))
112
+ * Add PBR_DEBUG logging to empty catches and fix 9 .cjs extension mismatches in verify.js ([1931893d](https://github.com/SienkLogic/plan-build-run/commit/1931893d))
115
113
 
116
- ### Features
114
+ ## [2.19.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.19.0...plan-build-run-v2.19.1) — 2026-03-23
117
115
 
118
- * **11-01:** create tokens.css with dual-mode design tokens ([53afcc1](https://github.com/SienkLogic/plan-build-run/commit/53afcc1cc84e56d3d98b66a5758591f79af5c725))
119
- * **11-01:** refactor layout.css to use semantic design tokens ([f0fa53c](https://github.com/SienkLogic/plan-build-run/commit/f0fa53c88ac4345b135033e14dc37b937a65d5dd))
120
- * **11-02:** add theme toggle button with localStorage persistence ([f84576e](https://github.com/SienkLogic/plan-build-run/commit/f84576ec4596dedc9643b7cb76e55d14865ebffb))
121
- * **11-02:** pin Pico.css CDN to v2.0.6 ([1e46ef6](https://github.com/SienkLogic/plan-build-run/commit/1e46ef6bd56e12222d735590d9dea3b3c7f1f5b6))
122
- * **12-01:** add current-phase middleware for sidebar context ([d7d0e16](https://github.com/SienkLogic/plan-build-run/commit/d7d0e16419f692aa9883d9262b119dc514f7e9b0))
123
- * **12-01:** implement mobile overlay sidebar with backdrop ([3cc59ac](https://github.com/SienkLogic/plan-build-run/commit/3cc59acf55ab90568d4f11c11df43c7a07ca43f4))
124
- * **12-01:** redesign sidebar with collapsible sections and current phase card ([0b6aa07](https://github.com/SienkLogic/plan-build-run/commit/0b6aa076bfea6fdac3c7c855a6ad522f6d8f50ce))
125
- * **12-02:** add breadcrumb data to routes and include partial in content templates ([a90684e](https://github.com/SienkLogic/plan-build-run/commit/a90684e7752fcf232bcaee223e392e1dd4a9d52e))
126
- * **12-02:** create breadcrumbs partial and CSS styles ([82ba448](https://github.com/SienkLogic/plan-build-run/commit/82ba44833b09398d5abec88bf6e6a60032694412))
127
- * **13-01:** add milestone history expandable table with stats and deliverables ([ccc82d5](https://github.com/SienkLogic/plan-build-run/commit/ccc82d59f28e67b8ab5cb0db803d228e35af8339))
128
- * **13-01:** add todo filtering by priority, status, and search with bulk complete ([0abbf4c](https://github.com/SienkLogic/plan-build-run/commit/0abbf4c173395bfeda4b5c73f312a3820e86ad67))
129
- * **13-02:** add dependency graph route, views, and sidebar link ([d7224c2](https://github.com/SienkLogic/plan-build-run/commit/d7224c297dcbd07ac3659e95c4047448e5c6292b))
130
- * **13-02:** add Mermaid dependency graph generation to roadmap service ([662056b](https://github.com/SienkLogic/plan-build-run/commit/662056b703f4ef4d7910d7afb1f79444be6e11d1))
131
- * **13-03:** add analytics route, views, and sidebar link ([750562b](https://github.com/SienkLogic/plan-build-run/commit/750562b94287f151d89d7160ab124e2dc3279abc))
132
- * **13-03:** create analytics service with git-based metrics and TTL cache ([41eb38a](https://github.com/SienkLogic/plan-build-run/commit/41eb38aebf930ec085edaee416913c2319a6d216))
133
- * **14-01:** add Last-Event-ID state recovery to SSE endpoint ([b41c8dd](https://github.com/SienkLogic/plan-build-run/commit/b41c8ddc0638cd1bd103110ed6aa74a1512ca137))
134
- * **14-01:** create custom SSE client with exponential backoff ([8d75876](https://github.com/SienkLogic/plan-build-run/commit/8d758765f0465820560a72fdad745481e091f04b))
135
- * **14-01:** reduce chokidar stability threshold to 500ms ([1ef4dc4](https://github.com/SienkLogic/plan-build-run/commit/1ef4dc49604d98f5b6d9847f6ce835ee909b519f))
136
- * **14-02:** add hx-indicator spinners to todo complete actions ([a166d94](https://github.com/SienkLogic/plan-build-run/commit/a166d946323255696f46f0550892878eda622ebd))
137
- * **14-02:** add TTL cache utility and integrate into analytics and milestone services ([123c2d2](https://github.com/SienkLogic/plan-build-run/commit/123c2d25ea7050515e685c05231401de76d4cd7c))
138
- * **15-01:** add error-card styling, loading indicator, and favicon ([6f3c550](https://github.com/SienkLogic/plan-build-run/commit/6f3c550f79885010af59377a95c7dfd2e53038c3))
139
- * **15-01:** add skip-to-content link, focus-visible styles, and ARIA labels ([47c3c9b](https://github.com/SienkLogic/plan-build-run/commit/47c3c9bcaf8f2a5e143fe1b5a8ed18e5da9b20ba))
140
- * **15-01:** create reusable empty-state partial and integrate into views ([48c6807](https://github.com/SienkLogic/plan-build-run/commit/48c6807b9f19fcd4abc8582820155c5ccc73a244))
141
- * **15-02:** GREEN - analytics, cache, SSE tests pass against existing code ([1f6e3c2](https://github.com/SienkLogic/plan-build-run/commit/1f6e3c2feef7ba601afe66c68e41401aa44568be))
142
- * **15-02:** GREEN - dependencies and breadcrumbs tests pass ([8fd48fc](https://github.com/SienkLogic/plan-build-run/commit/8fd48fc63e5414cf93bec4d7afadf86b463a6f32))
116
+ ### Skills
143
117
 
118
+ * Close all 5 audit gaps — wire advisor-researcher, update docs, wire templates, fix frontmatter parser, add E2E test ([9f0d7232](https://github.com/SienkLogic/plan-build-run/commit/9f0d7232))
144
119
 
145
- ### Bug Fixes
120
+ ## [2.19.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.18.0...plan-build-run-v2.19.0) — 2026-03-23
146
121
 
147
- * **14-01:** add missing #sse-status element to header ([b831104](https://github.com/SienkLogic/plan-build-run/commit/b831104feaee62a5f6768ec8060aa2387e82322c))
148
- * **14-02:** clear milestone cache between tests to prevent stale data ([192b53c](https://github.com/SienkLogic/plan-build-run/commit/192b53cbb4777350950ed8bd0d4993d3229f1630))
122
+ ### Agents
149
123
 
150
- ## [2.15.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.14.0...plan-build-run-v2.15.0) (2026-02-22)
124
+ * Add philosophy sections and permissionMode to key agents ([e557ab51](https://github.com/SienkLogic/plan-build-run/commit/e557ab51))
125
+ * Add stub scan, auth gates, and fix STATE.md write contradiction in executor ([ebcbe665](https://github.com/SienkLogic/plan-build-run/commit/ebcbe665))
126
+ * Add project_context, worktree isolation, and Write tool constraint to executor ([9811a565](https://github.com/SienkLogic/plan-build-run/commit/9811a565))
127
+ * Update plan-checker D2 and agent-contracts to validate 7 task elements ([3969fed4](https://github.com/SienkLogic/plan-build-run/commit/3969fed4))
128
+ * Add artifact existence verification to roadmapper and synthesizer agents ([351b4399](https://github.com/SienkLogic/plan-build-run/commit/351b4399))
129
+ * Add CLI verify artifacts and key-links calls to verifier agent ([5e8e916d](https://github.com/SienkLogic/plan-build-run/commit/5e8e916d))
130
+ * Add CLI verify summary and commits calls to executor agent ([d49176b6](https://github.com/SienkLogic/plan-build-run/commit/d49176b6))
131
+ * Add CLI verify plan-structure calls to planner agent and plan skill ([66365c6b](https://github.com/SienkLogic/plan-build-run/commit/66365c6b))
151
132
 
133
+ ### Hooks
152
134
 
153
- ### Features
135
+ * Wire all verify functions to CLI dispatch and fix string-format handling ([88583c5b](https://github.com/SienkLogic/plan-build-run/commit/88583c5b))
154
136
 
155
- * **tools:** add rollback downstream invalidation, complete help docs, dashboard route tests ([4461211](https://github.com/SienkLogic/plan-build-run/commit/446121187494306e81ceb642083858ac6353b5d8))
137
+ ### Skills
156
138
 
157
- ## [2.14.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.13.0...plan-build-run-v2.14.0) (2026-02-22)
139
+ * Add advisor-researcher agent, stats, and milestone-summary skills ([511ba858](https://github.com/SienkLogic/plan-build-run/commit/511ba858))
140
+ * Add backlog, seed, and thread skills for idea management ([416522ae](https://github.com/SienkLogic/plan-build-run/commit/416522ae))
141
+ * Add /pbr:forensics skill for post-mortem investigation ([48cc2217](https://github.com/SienkLogic/plan-build-run/commit/48cc2217))
142
+ * Add verification debt scanning to status and milestone skills ([9fabe22c](https://github.com/SienkLogic/plan-build-run/commit/9fabe22c))
143
+ * Add discussion audit trail and enhance assumptions with evidence citing ([fdf1cdbb](https://github.com/SienkLogic/plan-build-run/commit/fdf1cdbb))
144
+ * Add /pbr:fast skill for inline trivial task execution ([5103a9ba](https://github.com/SienkLogic/plan-build-run/commit/5103a9ba))
145
+ * Add early PROJECT.md write for durability in begin flow ([635d384a](https://github.com/SienkLogic/plan-build-run/commit/635d384a))
146
+ * Add structural REQ coverage gate to plan orchestrator ([292cd069](https://github.com/SienkLogic/plan-build-run/commit/292cd069))
147
+ * Inject deep_work_rules in planner spawn prompt and fix inline_verify false pass ([ed14fbf4](https://github.com/SienkLogic/plan-build-run/commit/ed14fbf4))
148
+ * Add CLI verify calls to autonomous skill lightweight verification ([9ca102d6](https://github.com/SienkLogic/plan-build-run/commit/9ca102d6))
158
149
 
150
+ ### Templates
159
151
 
160
- ### Features
152
+ * Create missing UAT, UI-SPEC, VALIDATION, and DISCUSSION-LOG templates ([53ccb3b4](https://github.com/SienkLogic/plan-build-run/commit/53ccb3b4))
161
153
 
162
- * **tools:** add EnterPlanMode interception hook to redirect to PBR commands ([57e2b55](https://github.com/SienkLogic/plan-build-run/commit/57e2b551d326457c44feccdf3c3fdf6c02d9c1b8))
154
+ ## [2.18.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.17.1...plan-build-run-v2.18.0) — 2026-03-23
163
155
 
164
- ## [2.13.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.12.0...plan-build-run-v2.13.0) (2026-02-22)
156
+ ### Agents
165
157
 
158
+ * Add SUMMARY.md existence check to build executor validator ([e386b3d8](https://github.com/SienkLogic/plan-build-run/commit/e386b3d8))
166
159
 
167
- ### Features
160
+ ### Hooks
168
161
 
169
- * **tools:** add stale active-skill session-start warning and copilot hook limitation docs ([158a78d](https://github.com/SienkLogic/plan-build-run/commit/158a78d03b482f56ab6f09e89bf9ef67b81fb409))
162
+ * Add hook count change detection to InstructionsLoaded hook ([cd536df8](https://github.com/SienkLogic/plan-build-run/commit/cd536df8))
170
163
 
171
- ## [2.12.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.11.0...plan-build-run-v2.12.0) (2026-02-21)
164
+ ### Other
172
165
 
166
+ * Add plan file naming validation for phase-prefixed names ([040e5010](https://github.com/SienkLogic/plan-build-run/commit/040e5010))
173
167
 
174
- ### Features
168
+ ## [2.17.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.17.0...plan-build-run-v2.17.1) — 2026-03-23
175
169
 
176
- * **tools:** add review verifier post-check and stale active-skill detection ([dbd2eb8](https://github.com/SienkLogic/plan-build-run/commit/dbd2eb899c2b15cc2ac61913b29ca1aaab6b0b1f))
177
- * **tools:** add scan mapper area validation and stale Building status detection ([8d8a438](https://github.com/SienkLogic/plan-build-run/commit/8d8a43809095722ae9d00242f90f29d32bef4d1f))
170
+ ### CI/CD
178
171
 
172
+ * Always ensure npm latest dist-tag points to released version ([0088b223](https://github.com/SienkLogic/plan-build-run/commit/0088b223))
179
173
 
180
- ### Bug Fixes
174
+ ### Skills
181
175
 
182
- * **tools:** extend executor commit check to quick skill and add .catch() to log-tool-failure ([197efc7](https://github.com/SienkLogic/plan-build-run/commit/197efc70cb5e2a36f014ee2c5c7d653b4b1898f4))
183
- * **tools:** warn on context budget tracker reset and roadmap sync parse failures ([f5aef28](https://github.com/SienkLogic/plan-build-run/commit/f5aef2804e42a934d3e7a480e3045ac6c0e0fc9b))
176
+ * Move CRITICAL marker outside table in health SKILL.md (lint fix) ([e41053dd](https://github.com/SienkLogic/plan-build-run/commit/e41053dd))
184
177
 
185
- ## [2.11.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.10.0...plan-build-run-v2.11.0) (2026-02-21)
178
+ ## [2.17.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.16.0...plan-build-run-v2.17.0) 2026-03-23
186
179
 
180
+ ### Other
187
181
 
188
- ### Features
182
+ * Enforce min_full_percent full verification in autonomous mode ([5aca292b](https://github.com/SienkLogic/plan-build-run/commit/5aca292b))
183
+ * Add CRITICAL markers prohibiting gap phase numbering ([c607ae05](https://github.com/SienkLogic/plan-build-run/commit/c607ae05))
184
+ * Add phase next-number CLI subcommand ([3deb8b12](https://github.com/SienkLogic/plan-build-run/commit/3deb8b12))
185
+ * Add phase gap detection to validateRoadmap ([d82a8b62](https://github.com/SienkLogic/plan-build-run/commit/d82a8b62))
189
186
 
190
- * **06-01:** add .active-skill write and cleanup to begin, plan, review, import skills ([e16c0cb](https://github.com/SienkLogic/plan-build-run/commit/e16c0cbe73da7abd08008c56d918106e73a3535a))
191
- * **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))
192
- * **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))
193
- * **07-01:** register missing skills in check-skill-workflow.js switch statement ([26c4264](https://github.com/SienkLogic/plan-build-run/commit/26c42640f199eae7de4570cb0fcb8fdab514cc64))
194
- * **07-02:** add debugger advisory gate and milestone gaps_found status check ([d999fe0](https://github.com/SienkLogic/plan-build-run/commit/d999fe0cf65febf877c731d983edb49e1cfa3dc7))
195
- * **07-02:** add mtime-based recency checks for researcher and synthesizer output ([4581529](https://github.com/SienkLogic/plan-build-run/commit/45815292c8e1604d2b5307092b2b2d6fdb3c2eec))
196
- * **08-01:** add inline fallback formats to 7 template-dependent agents ([e383118](https://github.com/SienkLogic/plan-build-run/commit/e3831187a35e0bf2924f0e156971b530d71dada3))
197
- * **08-02:** add CRITICAL markers and fix agent handoff issues ([a921c29](https://github.com/SienkLogic/plan-build-run/commit/a921c29005b232aa662ee7364f19154f103c827f))
198
- * **09-01:** add gate error fix guidance and discuss deep-dive CRITICAL enforcement ([6257ac5](https://github.com/SienkLogic/plan-build-run/commit/6257ac5bb69c04078fc1fd845049900274e4079c))
199
- * **09-01:** add health auto-fix for common corruption patterns ([6209e20](https://github.com/SienkLogic/plan-build-run/commit/6209e2012ec972ae351bd967cd1fa1087b767474))
200
- * **09-01:** add rollback safety, setup idempotency, and todo archive safety ([8106793](https://github.com/SienkLogic/plan-build-run/commit/8106793c6dc728a58c8be6a5f1ccaffc9cef83a6))
201
- * **09-02:** rewrite ui-formatting.md with unified double-line box format ([1030f30](https://github.com/SienkLogic/plan-build-run/commit/1030f3078d171f200d1d85a29481deb65f927875))
202
- * **09-02:** update error-reporting fragment with block reason guidance ([55780b2](https://github.com/SienkLogic/plan-build-run/commit/55780b2b54725b8d503e0b46291c80fe5a92219b))
203
- * **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))
204
- * **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))
205
- * **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))
206
- * **09-04:** sync Next Up box format to cursor-pbr and copilot-pbr derivatives ([a819e95](https://github.com/SienkLogic/plan-build-run/commit/a819e952483fb348a8c64c27abe59f80590ad712))
207
- * **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))
187
+ ## [2.16.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.15.0...plan-build-run-v2.16.0) — 2026-03-22
208
188
 
189
+ ### Agents
209
190
 
210
- ### Bug Fixes
191
+ * Add D10 CLAUDE.md compliance dimension to plan-checker agent ([49e040d0](https://github.com/SienkLogic/plan-build-run/commit/49e040d0))
192
+ * Add executor retry loop, paralysis guard, and plan-check audit trail ([65d2acc0](https://github.com/SienkLogic/plan-build-run/commit/65d2acc0))
193
+ * Upgrade D1 requirements coverage to BLOCKER severity ([274f9d9e](https://github.com/SienkLogic/plan-build-run/commit/274f9d9e))
211
194
 
212
- * **06-03:** fix planner naming convention, executor timestamps, and statusline backup ([92c9b8d](https://github.com/SienkLogic/plan-build-run/commit/92c9b8d5fe95a2b339267206185daf38a125ad56))
213
- * **tools:** resolve markdownlint errors in planner agent and milestone skill ([9ef8548](https://github.com/SienkLogic/plan-build-run/commit/9ef8548642cba021d9c917e612116aebe77cf570))
214
- * **tools:** update AskUserQuestion audit to reflect health skill auto-fix gates ([e20bbe5](https://github.com/SienkLogic/plan-build-run/commit/e20bbe51a9f3ad2a7f2a8cd609abee52ef2ce942))
195
+ ### CLI Tools
215
196
 
197
+ * Generate changelog after tag creation so new version appears ([47ee1b46](https://github.com/SienkLogic/plan-build-run/commit/47ee1b46))
198
+ * Add 'hooks perf' subcommand with loadPerfEntries log reader ([0fcb4dfe](https://github.com/SienkLogic/plan-build-run/commit/0fcb4dfe))
199
+ * Rename pbr-tools.cjs references to pbr-tools.js across 38 files (75 replacements) ([29cddffb](https://github.com/SienkLogic/plan-build-run/commit/29cddffb))
216
200
 
217
- ### Documentation
218
-
219
- * **08-03:** add agent-contracts.md reference documenting handoff schemas ([89a86cf](https://github.com/SienkLogic/plan-build-run/commit/89a86cf2c21635290f6d048d1b5ef045a686730d))
220
- * **10-01:** wire agent-contracts.md into agents and document abandoned debug resolution ([f30762d](https://github.com/SienkLogic/plan-build-run/commit/f30762d62dbafd0f1705822a295c1eb2c6288017))
221
-
222
- ## [2.10.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.9.1...plan-build-run-v2.10.0) (2026-02-20)
201
+ ### Configuration
223
202
 
203
+ * Make plan-checking always-on, quick depth gets advisory verification ([32a44219](https://github.com/SienkLogic/plan-build-run/commit/32a44219))
224
204
 
225
- ### Features
205
+ ### Hooks
226
206
 
227
- * **tools:** add post-compaction recovery, pbr-tools CLI reference, and dashboard UI banner ([84291f2](https://github.com/SienkLogic/plan-build-run/commit/84291f2ff0f9646eea96c02fd50073b8dd17487d))
207
+ * Resolve ESLint errors in hook-server.js and prompt-guard.js ([69882ed2](https://github.com/SienkLogic/plan-build-run/commit/69882ed2))
208
+ * Ensure posttest always runs via test-wrapper.js ([046e2bc4](https://github.com/SienkLogic/plan-build-run/commit/046e2bc4))
209
+ * Add hook overhead display to status line when >500ms cumulative ([17cd3d8e](https://github.com/SienkLogic/plan-build-run/commit/17cd3d8e))
210
+ * Add 100ms performance alert for slow hook handlers ([9d6145f3](https://github.com/SienkLogic/plan-build-run/commit/9d6145f3))
211
+ * Instrument hook-server dispatch and startup with timing metrics ([d0d514dd](https://github.com/SienkLogic/plan-build-run/commit/d0d514dd))
212
+ * Add lib/perf.js with percentile and hook performance summary utilities ([6ec0e09c](https://github.com/SienkLogic/plan-build-run/commit/6ec0e09c))
213
+ * Add MSYS path normalization at hook-server.js startup ([e7ebc2d3](https://github.com/SienkLogic/plan-build-run/commit/e7ebc2d3))
214
+ * Add crash-recovery restart logic to tryLaunchHookServer ([a1ce9279](https://github.com/SienkLogic/plan-build-run/commit/a1ce9279))
215
+ * Add 3s startup health-poll and timeout sentinel fallback ([1e4e88f2](https://github.com/SienkLogic/plan-build-run/commit/1e4e88f2))
216
+ * Add tryNextPort EADDRINUSE recovery and updateLockPort ([6469f2d3](https://github.com/SienkLogic/plan-build-run/commit/6469f2d3))
217
+ * Convert PreCompact, PostCompact, ConfigChange, Notification, UserPromptSubmit, SessionEnd to HTTP hooks ([91caa68d](https://github.com/SienkLogic/plan-build-run/commit/91caa68d))
218
+ * Convert SubagentStart, SubagentStop, TaskCompleted to HTTP hooks ([9a70eebc](https://github.com/SienkLogic/plan-build-run/commit/9a70eebc))
219
+ * Add triggerShutdown, /shutdown endpoint, and shutdown-aware SessionEnd handler ([dcb7d34e](https://github.com/SienkLogic/plan-build-run/commit/dcb7d34e))
220
+ * Add PostCompact, Notification, UserPromptSubmit routes to initRoutes() ([b646a6a0](https://github.com/SienkLogic/plan-build-run/commit/b646a6a0))
221
+ * Replace PostToolUseFailure command entry with HTTP entry in hooks.json ([d24cdab8](https://github.com/SienkLogic/plan-build-run/commit/d24cdab8))
222
+ * Replace PostToolUse command entries with HTTP entries in hooks.json ([4a41254a](https://github.com/SienkLogic/plan-build-run/commit/4a41254a))
223
+ * Register AskUserQuestion route in initRoutes and add HTTP tests ([f1a988bd](https://github.com/SienkLogic/plan-build-run/commit/f1a988bd))
224
+ * Add handleHttp and handleGate exports to track-user-gates.js ([88619406](https://github.com/SienkLogic/plan-build-run/commit/88619406))
225
+ * Replace all PreToolUse command entries with HTTP endpoints in hooks.json ([f7d5b35d](https://github.com/SienkLogic/plan-build-run/commit/f7d5b35d))
226
+ * Register intercept-plan-mode for PreToolUse:EnterPlanMode in hook-server ([3131e7ef](https://github.com/SienkLogic/plan-build-run/commit/3131e7ef))
227
+ * Add handleHttp export to intercept-plan-mode.js ([1d36cb32](https://github.com/SienkLogic/plan-build-run/commit/1d36cb32))
228
+ * Register PostToolUse:Glob and PostToolUse:Grep routes in initRoutes ([5a84ebb6](https://github.com/SienkLogic/plan-build-run/commit/5a84ebb6))
229
+ * Consolidate PostToolUse:Read dispatch in track-context-budget handleHttp ([81fff84e](https://github.com/SienkLogic/plan-build-run/commit/81fff84e))
230
+ * Register PreToolUse consolidated handlers in hook-server initRoutes ([171eb8ee](https://github.com/SienkLogic/plan-build-run/commit/171eb8ee))
231
+ * Add pre-skill-dispatch.js consolidating validate-skill-args + enforce-context-budget ([1adba136](https://github.com/SienkLogic/plan-build-run/commit/1adba136))
232
+ * Add pre-task-dispatch.js consolidating validate-task + enforce-context-budget ([2ed37508](https://github.com/SienkLogic/plan-build-run/commit/2ed37508))
233
+ * Consolidate suggest-compact into hook server route table ([f5fbace7](https://github.com/SienkLogic/plan-build-run/commit/f5fbace7))
234
+ * Add dynamic route registration API with register() and initRoutes() ([3b0013d7](https://github.com/SienkLogic/plan-build-run/commit/3b0013d7))
235
+ * Wire PID lockfile and EADDRINUSE handling into hook-server.js ([0952b877](https://github.com/SienkLogic/plan-build-run/commit/0952b877))
236
+ * Add PID lockfile module for hook server lifecycle management ([faf5bb6e](https://github.com/SienkLogic/plan-build-run/commit/faf5bb6e))
237
+ * Update bootstrap path from hooks/run-hook.js to scripts/run-hook.js (28 commands) ([81cebda5](https://github.com/SienkLogic/plan-build-run/commit/81cebda5))
238
+ * Add advisory PostToolUse hook enforcing read_first file reads before edits ([c2b828fe](https://github.com/SienkLogic/plan-build-run/commit/c2b828fe))
239
+ * Fix structured denial format and add requirements coverage gate ([1ed7273d](https://github.com/SienkLogic/plan-build-run/commit/1ed7273d))
240
+ * Add requirements coverage check to plan-validation gate ([3b1dd516](https://github.com/SienkLogic/plan-build-run/commit/3b1dd516))
241
+ * Wire plan-check gate into validate-task and skill prompts ([d24569d5](https://github.com/SienkLogic/plan-build-run/commit/d24569d5))
242
+ * Add plan-validation gate module with TDD tests ([75b887b9](https://github.com/SienkLogic/plan-build-run/commit/75b887b9))
243
+ * Remove duplicate _buildPhaseManifest declaration in canonical phase.js ([c130604a](https://github.com/SienkLogic/plan-build-run/commit/c130604a))
244
+ * Add missing exports to canonical phase.js, create graph-cli.js, wire graph/spec in pbr-tools.js ([5ecd82b7](https://github.com/SienkLogic/plan-build-run/commit/5ecd82b7))
245
+ * Preserve fresh claude-code context data in bridge file ([419cc508](https://github.com/SienkLogic/plan-build-run/commit/419cc508))
246
+ * Add intel refresh signal detection to SessionStart briefing ([7d719b78](https://github.com/SienkLogic/plan-build-run/commit/7d719b78))
247
+ * Replace intel queue discard with signal file at session end ([9ae49264](https://github.com/SienkLogic/plan-build-run/commit/9ae49264))
248
+ * Reconcile remaining divergent modules with .cjs supersets ([37b02e8e](https://github.com/SienkLogic/plan-build-run/commit/37b02e8e))
249
+ * Create superset config.js and core.js modules with all exports ([6f58ad6f](https://github.com/SienkLogic/plan-build-run/commit/6f58ad6f))
250
+ * Unify plugins/pbr/scripts/ as canonical source with hooks/ content ([a3167823](https://github.com/SienkLogic/plan-build-run/commit/a3167823))
251
+ * Migrate 39 .cjs modules to .js in plugins/pbr/scripts/lib/ ([3a06b68e](https://github.com/SienkLogic/plan-build-run/commit/3a06b68e))
252
+ * Consolidate hooks-only files into canonical plugins/pbr/scripts/ location ([c7c2596f](https://github.com/SienkLogic/plan-build-run/commit/c7c2596f))
253
+ * Show full milestone version and name in statusline completion display ([4c04da55](https://github.com/SienkLogic/plan-build-run/commit/4c04da55))
254
+ * Improve statusline milestone-complete display — show version, hide stale phase/plan ([e75e0178](https://github.com/SienkLogic/plan-build-run/commit/e75e0178))
255
+ * Sync status-line.js from plugin — remove dead local-llm import, fix config test assertions ([04e38322](https://github.com/SienkLogic/plan-build-run/commit/04e38322))
228
256
 
229
- ## [2.9.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.9.0...plan-build-run-v2.9.1) (2026-02-20)
257
+ ### Plugin
258
+
259
+ * Register list-phase-assumptions command at both paths ([2a3d9977](https://github.com/SienkLogic/plan-build-run/commit/2a3d9977))
260
+
261
+ ### Skills
262
+
263
+ * Improve scan skill and codebase-mapper agent ([2cc570c6](https://github.com/SienkLogic/plan-build-run/commit/2cc570c6))
264
+ * Add CLI-driven help system with structured skill metadata ([cd1550f3](https://github.com/SienkLogic/plan-build-run/commit/cd1550f3))
265
+ * Add .active-skill lifecycle and milestone Skill() routing to autonomous mode ([8a0838da](https://github.com/SienkLogic/plan-build-run/commit/8a0838da))
266
+ * Remove plan-checking skip-logic, update validation gate to advisory for quick depth ([113e0285](https://github.com/SienkLogic/plan-build-run/commit/113e0285))
267
+ * Add plan-check gates to autonomous skill pipeline ([ae9f1283](https://github.com/SienkLogic/plan-build-run/commit/ae9f1283))
268
+ * Restore PROJECT.md evolution step lost in legacy workflow migration ([822a1658](https://github.com/SienkLogic/plan-build-run/commit/822a1658))
269
+ * Create list-phase-assumptions skill with 5-area assumption analysis ([f5050b86](https://github.com/SienkLogic/plan-build-run/commit/f5050b86))
270
+
271
+ ### Templates
272
+
273
+ * Add VALIDATION.md.tmpl for Nyquist validation strategy ([4ae0cea2](https://github.com/SienkLogic/plan-build-run/commit/4ae0cea2))
274
+ * Add SEED.md.tmpl for project seed/idea tracking ([a54d1a63](https://github.com/SienkLogic/plan-build-run/commit/a54d1a63))
275
+ * Add DEBUG.md.tmpl for debug session tracking ([355c2556](https://github.com/SienkLogic/plan-build-run/commit/355c2556))
276
+ * Add UAT.md.tmpl for user acceptance testing tracking ([711a2aa9](https://github.com/SienkLogic/plan-build-run/commit/711a2aa9))
277
+
278
+ ### Testing
279
+
280
+ * Update 14 tests for legacy directory deletion ([14a22bed](https://github.com/SienkLogic/plan-build-run/commit/14a22bed))
281
+ * Fix 10 test files for canonical module behavioral differences ([1ed2e42e](https://github.com/SienkLogic/plan-build-run/commit/1ed2e42e))
282
+ * Update event-logger tests for canonical dated-filename behavior ([931207d2](https://github.com/SienkLogic/plan-build-run/commit/931207d2))
283
+ * Increase hook-server createServer test timeout to 15s for Windows Node 18 CI ([04602d26](https://github.com/SienkLogic/plan-build-run/commit/04602d26))
284
+
285
+ ### Other
286
+
287
+ * Add advisory prompt injection scanner for .planning/ file writes ([cebc1703](https://github.com/SienkLogic/plan-build-run/commit/cebc1703))
288
+ * Implement compound CLI commands for atomic phase/milestone operations ([d75feff9](https://github.com/SienkLogic/plan-build-run/commit/d75feff9))
289
+ * Register missing CLI subcommands and fix broken references across 18 files ([ed681fa9](https://github.com/SienkLogic/plan-build-run/commit/ed681fa9))
290
+
291
+ ## [2.15.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.14.0...plan-build-run-v2.15.0) — 2026-03-20
292
+
293
+ ### Plugin
294
+
295
+ * Restore plugin pbr-tools.js and add v15.0 init/completion with correct require paths ([6da71c3b](https://github.com/SienkLogic/plan-build-run/commit/6da71c3b))
296
+ * Fix routing field name mismatch and sync plugin scripts for v15.0 ([ae6d9099](https://github.com/SienkLogic/plan-build-run/commit/ae6d9099))
297
+
298
+ ## [2.14.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.12.1...plan-build-run-v2.14.0) — 2026-03-20
299
+
300
+ ### Agents
301
+
302
+ * Add verify command executability checks to plan-checker D8 ([9fead2be](https://github.com/SienkLogic/plan-build-run/commit/9fead2be))
303
+ * Add vertical slice anti-pattern to planner ([72beb44b](https://github.com/SienkLogic/plan-build-run/commit/72beb44b))
304
+ * Add vertical slice preference section to planner agent ([3832574d](https://github.com/SienkLogic/plan-build-run/commit/3832574d))
305
+
306
+ ### CI/CD
307
+
308
+ * Add skill-sync job to verify SKILL.md copies match ([ccedb988](https://github.com/SienkLogic/plan-build-run/commit/ccedb988))
309
+
310
+ ### CLI Tools
311
+
312
+ * Handle gitignored release-please-manifest in release script ([efdb2f8e](https://github.com/SienkLogic/plan-build-run/commit/efdb2f8e))
313
+ * Register init continue/milestone/begin/status in dispatcher with tests ([c084435f](https://github.com/SienkLogic/plan-build-run/commit/c084435f))
314
+ * Add initContinue, initMilestone, initBegin, initStatus compound init commands ([95f6feeb](https://github.com/SienkLogic/plan-build-run/commit/95f6feeb))
315
+ * Register 5 compound completion commands in pbr-tools dispatcher ([07685f4d](https://github.com/SienkLogic/plan-build-run/commit/07685f4d))
316
+ * Use correct findPhaseInternal return fields (directory, not rel/slug) ([5f3e79fa](https://github.com/SienkLogic/plan-build-run/commit/5f3e79fa))
317
+ * Sync enhanced suggest-next to hooks/lib and plugins/pbr/scripts/lib ([dda60e33](https://github.com/SienkLogic/plan-build-run/commit/dda60e33))
318
+ * Add completion.cjs with 5 compound completion commands ([9d754f5c](https://github.com/SienkLogic/plan-build-run/commit/9d754f5c))
319
+ * Add plan validate command for combined spot-check + structure validation ([911bc1c1](https://github.com/SienkLogic/plan-build-run/commit/911bc1c1))
320
+ * Add status-based routing, config-aware built routing, and milestone detection to suggest-next ([f9a20b68](https://github.com/SienkLogic/plan-build-run/commit/f9a20b68))
321
+ * Limit syncStateFrontmatter to stateReconcile only — prevent auto-overwrite on individual writes ([ea9f9866](https://github.com/SienkLogic/plan-build-run/commit/ea9f9866))
322
+ * Add syncStateFrontmatter and STATUS_VALUES enum for drift-proof STATE.md ([7552a0c9](https://github.com/SienkLogic/plan-build-run/commit/7552a0c9))
323
+
324
+ ### Hooks
325
+
326
+ * Register track-user-gates hook and update schema tests for HTTP type ([b2435e21](https://github.com/SienkLogic/plan-build-run/commit/b2435e21))
327
+ * Register track-user-gates PostToolUse hook for AskUserQuestion ([1049cdb5](https://github.com/SienkLogic/plan-build-run/commit/1049cdb5))
328
+ * Re-apply HTTP type entries for advisory PostToolUse hooks (reverted by sync) ([24dda96f](https://github.com/SienkLogic/plan-build-run/commit/24dda96f))
329
+ * Sync enforce-context-budget to plugin hooks.json (integration audit finding) ([5a37ee9e](https://github.com/SienkLogic/plan-build-run/commit/5a37ee9e))
330
+ * Config-driven gate enforcement with AskUserQuestion validation (phase 67) ([6306b4db](https://github.com/SienkLogic/plan-build-run/commit/6306b4db))
331
+ * Migrate advisory PostToolUse hooks to native HTTP type (phase 66) ([d15f201b](https://github.com/SienkLogic/plan-build-run/commit/d15f201b))
332
+ * Audit infrastructure fixes — latency, false positives, source tags (phase 61) ([74a6bce1](https://github.com/SienkLogic/plan-build-run/commit/74a6bce1))
333
+ * Harden lockedFileUpdate with last-resort write fallback ([f0aeba3b](https://github.com/SienkLogic/plan-build-run/commit/f0aeba3b))
334
+ * Mandatory verifier enforcement + statusline parser fix (phases 57.1-57.2) ([04e2ea61](https://github.com/SienkLogic/plan-build-run/commit/04e2ea61))
335
+ * Quick reliability wins — async hooks, stdin timeouts, config caching, version stamps (phase 57) ([8138e5ef](https://github.com/SienkLogic/plan-build-run/commit/8138e5ef))
336
+
337
+ ### Skills
338
+
339
+ * Individual agent spawn pattern for colored badges (phase 65) ([6b8bc055](https://github.com/SienkLogic/plan-build-run/commit/6b8bc055))
340
+ * Behavioral fixes — inline debug prevention, audit self-exclusion, regression gate, hook audit (phase 62) ([0556d475](https://github.com/SienkLogic/plan-build-run/commit/0556d475))
341
+ * Autonomous CI verification, ROADMAP reconciliation, context budget enforcement (phase 60) ([caa3e7f0](https://github.com/SienkLogic/plan-build-run/commit/caa3e7f0))
342
+ * AskUserQuestion enforcement — CRITICAL markers, tracking hook, continue fix (phase 58) ([fc23ef6b](https://github.com/SienkLogic/plan-build-run/commit/fc23ef6b))
343
+ * Session metrics completion and CLAUDE.md rules update (phases 55-56) ([0443e4b9](https://github.com/SienkLogic/plan-build-run/commit/0443e4b9))
344
+
345
+ ### Testing
346
+
347
+ * Update hooks-lib-suggest-next test for validate-phase default routing ([e4416428](https://github.com/SienkLogic/plan-build-run/commit/e4416428))
348
+ * Handle null exitCode in pre-bash-dispatch git-staged tests on macOS CI ([96001cd8](https://github.com/SienkLogic/plan-build-run/commit/96001cd8))
349
+
350
+ ### Other
230
351
 
352
+ * Phase 54 squash merge ([780949e5](https://github.com/SienkLogic/plan-build-run/commit/780949e5))
353
+ * Phase 52 squash merge ([ad2cb6a6](https://github.com/SienkLogic/plan-build-run/commit/ad2cb6a6))
354
+ * Phase 51 squash merge ([0cb8de73](https://github.com/SienkLogic/plan-build-run/commit/0cb8de73))
355
+ * Phase 50 squash merge ([a2b8a165](https://github.com/SienkLogic/plan-build-run/commit/a2b8a165))
356
+ * Add key_files_imported check to confidence gate ([e639aac0](https://github.com/SienkLogic/plan-build-run/commit/e639aac0))
357
+ * Phase 49 squash merge ([40735ef6](https://github.com/SienkLogic/plan-build-run/commit/40735ef6))
358
+ * Phase 48 squash merge ([011931ad](https://github.com/SienkLogic/plan-build-run/commit/011931ad))
359
+ * Phase 47 squash merge ([2d665923](https://github.com/SienkLogic/plan-build-run/commit/2d665923))
360
+ * Phase 46 squash merge ([5056ebc0](https://github.com/SienkLogic/plan-build-run/commit/5056ebc0))
361
+ * Phase 45 squash merge ([7a775c5a](https://github.com/SienkLogic/plan-build-run/commit/7a775c5a))
362
+ * Phase 44 squash merge ([c08f1924](https://github.com/SienkLogic/plan-build-run/commit/c08f1924))
363
+ * Phase 43 squash merge ([412c1972](https://github.com/SienkLogic/plan-build-run/commit/412c1972))
364
+ * Phase 42 squash merge ([8772826c](https://github.com/SienkLogic/plan-build-run/commit/8772826c))
365
+ * Phase 41 squash merge ([75bc794b](https://github.com/SienkLogic/plan-build-run/commit/75bc794b))
366
+
367
+ ## [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
368
+
369
+ ### CI/CD
370
+
371
+ * Remove npm run validate from release workflow (script was removed in Phase 32) ([e0378d74](https://github.com/SienkLogic/plan-build-run/commit/e0378d74))
372
+ * Fix MD025 lint error and skip git-dependent tests on Windows ([8e2773e8](https://github.com/SienkLogic/plan-build-run/commit/8e2773e8))
373
+
374
+ ### CLI Tools
375
+
376
+ * Wire ci-fix command into pbr-tools.js dispatcher ([36b985cc](https://github.com/SienkLogic/plan-build-run/commit/36b985cc))
377
+ * Add ci-fix-loop module with Jest/ESLint parsing and auto-fix loop ([91de02f8](https://github.com/SienkLogic/plan-build-run/commit/91de02f8))
378
+ * Add auto-cleanup subcommand to pbr-tools.js dispatcher ([5b7ca819](https://github.com/SienkLogic/plan-build-run/commit/5b7ca819))
379
+ * Add auto-cleanup library with matchScore, autoCloseTodos, autoArchiveNotes ([7a57d4bc](https://github.com/SienkLogic/plan-build-run/commit/7a57d4bc))
380
+ * Wire quick-status subcommand into pbr-tools.js dispatcher ([9b3bcaf2](https://github.com/SienkLogic/plan-build-run/commit/9b3bcaf2))
381
+ * Add quick-status.js lightweight status snapshot script ([96cc4772](https://github.com/SienkLogic/plan-build-run/commit/96cc4772))
382
+ * Add idle-state reset to stateReconcile for post-milestone cleanup ([00a46ff8](https://github.com/SienkLogic/plan-build-run/commit/00a46ff8))
383
+
384
+ ### Dashboard
385
+
386
+ * Wire --stop flag into CLI ([a94b5789](https://github.com/SienkLogic/plan-build-run/commit/a94b5789))
387
+ * Add cross-platform stopDashboard module ([4a86464e](https://github.com/SienkLogic/plan-build-run/commit/4a86464e))
388
+
389
+ ### Hooks
390
+
391
+ * Wire pre-commit quality checks into bash dispatch pipeline ([329d3c60](https://github.com/SienkLogic/plan-build-run/commit/329d3c60))
392
+ * Add pre-commit quality gate check functions ([d0609851](https://github.com/SienkLogic/plan-build-run/commit/d0609851))
393
+ * Add session-cleanup to DIRECT_FALLBACK_SCRIPTS in hook-server-client.js ([245aec35](https://github.com/SienkLogic/plan-build-run/commit/245aec35))
394
+ * Add .context-tracker removal to session-cleanup.js ([286e4f2c](https://github.com/SienkLogic/plan-build-run/commit/286e4f2c))
395
+ * Wire notification throttle into hook-server.js response path ([950ef737](https://github.com/SienkLogic/plan-build-run/commit/950ef737))
396
+ * Wire notification throttle into log-notification.js ([3c2cd558](https://github.com/SienkLogic/plan-build-run/commit/3c2cd558))
397
+ * Add notification throttle module with time-window deduplication ([a6641c80](https://github.com/SienkLogic/plan-build-run/commit/a6641c80))
398
+ * Ensure logHook source field cannot be overridden by details spread ([7a50b8e9](https://github.com/SienkLogic/plan-build-run/commit/7a50b8e9))
399
+ * 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))
400
+ * Rename ambiguous duration_ms to agent_duration_ms in task-completed logs ([386a119a](https://github.com/SienkLogic/plan-build-run/commit/386a119a))
401
+ * Downgrade check-plan-format blocks to warnings for Write tool operations ([18912b3d](https://github.com/SienkLogic/plan-build-run/commit/18912b3d))
402
+
403
+ ### Plugin
404
+
405
+ * Fix comma-separated allowed-tools and remove stale duplicate ([ec808e71](https://github.com/SienkLogic/plan-build-run/commit/ec808e71))
406
+
407
+ ## [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
408
+
409
+ ### Agents
410
+
411
+ * Add count-accuracy note to intel-updater for Glob-derived component counts ([497afa70](https://github.com/SienkLogic/plan-build-run/commit/497afa70))
412
+
413
+ ### CLI Tools
414
+
415
+ * Fix release script Windows compatibility (head -1, /dev/null) ([bbded916](https://github.com/SienkLogic/plan-build-run/commit/bbded916))
416
+ * Wire incidents subcommand into pbr-tools.cjs dispatcher ([c12f3719](https://github.com/SienkLogic/plan-build-run/commit/c12f3719))
417
+ * Create incidents.cjs library with record/list/query/summary operations ([2c63e7d6](https://github.com/SienkLogic/plan-build-run/commit/2c63e7d6))
418
+ * Harden roadmap.cjs for v9+ 3-column progress table format ([2bb9aa31](https://github.com/SienkLogic/plan-build-run/commit/2bb9aa31))
419
+ * Add state reconcile command to re-derive phase counts from ROADMAP.md ([ba0187ed](https://github.com/SienkLogic/plan-build-run/commit/ba0187ed))
420
+
421
+ ### Hooks
422
+
423
+ * Fix module paths and hook names after Phase 14 refactoring ([d71b5126](https://github.com/SienkLogic/plan-build-run/commit/d71b5126))
424
+ * Sync check-subagent-output.js from plugins/pbr/scripts/ copy ([39bcf1b5](https://github.com/SienkLogic/plan-build-run/commit/39bcf1b5))
425
+ * Add source field to logHook entries for audit traceability ([ad4e243a](https://github.com/SienkLogic/plan-build-run/commit/ad4e243a))
426
+ * Update skill count assertion to 37 for new validate skill ([a170b001](https://github.com/SienkLogic/plan-build-run/commit/a170b001))
427
+ * Replace nyquist-auditor no-op stub with VALIDATION.md check ([7f4a7822](https://github.com/SienkLogic/plan-build-run/commit/7f4a7822))
428
+ * 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))
429
+ * Wire incident recording into pre-bash-dispatch, post-write-dispatch, and log-tool-failure ([3c15879d](https://github.com/SienkLogic/plan-build-run/commit/3c15879d))
430
+ * Add record-incident.js shared hook helper for incident journal ([6b51bda6](https://github.com/SienkLogic/plan-build-run/commit/6b51bda6))
431
+ * Add test result cache module with 60s TTL ([4058838d](https://github.com/SienkLogic/plan-build-run/commit/4058838d))
432
+ * Add autonomous.max_retries and autonomous.error_strategy to CONFIG_DEFAULTS ([e0a85ee2](https://github.com/SienkLogic/plan-build-run/commit/e0a85ee2))
433
+ * Update build-dependency gate to skip speculative dependency phases ([01c3a7f0](https://github.com/SienkLogic/plan-build-run/commit/01c3a7f0))
434
+ * Add isPlanSpeculative helper and update build-executor gate for speculative/empty dirs ([ea587513](https://github.com/SienkLogic/plan-build-run/commit/ea587513))
435
+ * Wire checkDirectStateWrite into post-write-dispatch.js ([31b19276](https://github.com/SienkLogic/plan-build-run/commit/31b19276))
436
+ * Add checkDirectStateWrite advisory hook for STATE.md and ROADMAP.md bypass detection ([704b92cc](https://github.com/SienkLogic/plan-build-run/commit/704b92cc))
437
+ * Wire session_id into log-subagent.js logHook and logEvent calls ([f3261cdf](https://github.com/SienkLogic/plan-build-run/commit/f3261cdf))
438
+ * Add .context-tracker and .active-agent cleanup to session-cleanup.js ([2b72a80e](https://github.com/SienkLogic/plan-build-run/commit/2b72a80e))
439
+ * Update .active-agent readers for session-scoped path with global fallback ([bfa38392](https://github.com/SienkLogic/plan-build-run/commit/bfa38392))
440
+ * Add session_id support to logHook() and logEvent() for multi-session debugging ([a947b868](https://github.com/SienkLogic/plan-build-run/commit/a947b868))
441
+ * Session-scope .active-agent writes in log-subagent.js ([3e569968](https://github.com/SienkLogic/plan-build-run/commit/3e569968))
442
+ * Make stateAdvancePlan() atomic with single lockedFileUpdate call ([545f7aad](https://github.com/SienkLogic/plan-build-run/commit/545f7aad))
443
+ * Wrap configWrite() with lockedFileUpdate for crash-safe concurrent writes ([4611cbaf](https://github.com/SienkLogic/plan-build-run/commit/4611cbaf))
444
+ * IH-09 dispatch chain uses kebab-case script names from hook logs ([226c3935](https://github.com/SienkLogic/plan-build-run/commit/226c3935))
445
+
446
+ ### Plugin
447
+
448
+ * Add validate-phase command registration ([d8dedd35](https://github.com/SienkLogic/plan-build-run/commit/d8dedd35))
449
+
450
+ ### Skills
451
+
452
+ * Add MILESTONE.md auto-generation to milestone new and autonomous skills ([99e0c4e4](https://github.com/SienkLogic/plan-build-run/commit/99e0c4e4))
453
+ * Sync plan-build-run/ copies after Phase 29 CRITICAL marker pass ([33af4964](https://github.com/SienkLogic/plan-build-run/commit/33af4964))
454
+ * Consolidate pre-build dependency checking in build Step 1 ([a34aba4a](https://github.com/SienkLogic/plan-build-run/commit/a34aba4a))
455
+ * Add NEXT UP routing block to ship skill ([638ee6ac](https://github.com/SienkLogic/plan-build-run/commit/638ee6ac))
456
+ * Add /pbr:intel to scan and begin NEXT UP routing blocks ([0feb2739](https://github.com/SienkLogic/plan-build-run/commit/0feb2739))
457
+ * Add /pbr:autonomous suggestion to status routing when 2+ phases pending ([0d469d2b](https://github.com/SienkLogic/plan-build-run/commit/0d469d2b))
458
+ * Add /pbr:release suggestion to milestone complete NEXT UP block ([fe52ebfd](https://github.com/SienkLogic/plan-build-run/commit/fe52ebfd))
459
+ * Add /pbr:test advisory suggestion to continue built-status routing ([9075fe10](https://github.com/SienkLogic/plan-build-run/commit/9075fe10))
460
+ * Add /pbr:ship and /pbr:ui-review conditional suggestions to build NEXT UP ([672b65b1](https://github.com/SienkLogic/plan-build-run/commit/672b65b1))
461
+ * Wire roadmapper agent into begin skill Step 8 ([27f186ec](https://github.com/SienkLogic/plan-build-run/commit/27f186ec))
462
+ * Sync plan-build-run/ copies after Phase 26 quality gate wiring ([0b7fc4df](https://github.com/SienkLogic/plan-build-run/commit/0b7fc4df))
463
+ * Add validate-phase routing to build skill NEXT UP block ([db90ce36](https://github.com/SienkLogic/plan-build-run/commit/db90ce36))
464
+ * Add validate-phase NL routing and static fallback to do skill ([349f33e5](https://github.com/SienkLogic/plan-build-run/commit/349f33e5))
465
+ * Route built status to validate-phase in status skill ([66f22428](https://github.com/SienkLogic/plan-build-run/commit/66f22428))
466
+ * Insert validate-phase step 3d-pre into autonomous skill ([2a8ffa05](https://github.com/SienkLogic/plan-build-run/commit/2a8ffa05))
467
+ * Add validate-phase suggestion to test NEXT UP and config toggle ([c57749b6](https://github.com/SienkLogic/plan-build-run/commit/c57749b6))
468
+ * Route built status to validate-phase in continue skill ([83da9172](https://github.com/SienkLogic/plan-build-run/commit/83da9172))
469
+ * Fix validate-phase skill directory naming and sync, update test counts ([817b62a5](https://github.com/SienkLogic/plan-build-run/commit/817b62a5))
470
+ * Create /pbr:validate-phase skill with nyquist-auditor integration ([886a5fbe](https://github.com/SienkLogic/plan-build-run/commit/886a5fbe))
471
+ * Wire test result caching into autonomous Step 3d verification ([04690e88](https://github.com/SienkLogic/plan-build-run/commit/04690e88))
472
+ * Add autonomous state detection to resume skill ([33505ee8](https://github.com/SienkLogic/plan-build-run/commit/33505ee8))
473
+ * Add git branch creation to autonomous Step 3e and expand .autonomous-state.json schema ([bc7f9b0c](https://github.com/SienkLogic/plan-build-run/commit/bc7f9b0c))
474
+ * Add discuss auto-skip and error metrics to autonomous state schema ([83e1bfc5](https://github.com/SienkLogic/plan-build-run/commit/83e1bfc5))
475
+ * Add error classification and graduated retry loop to autonomous Step 3c ([14a12c7c](https://github.com/SienkLogic/plan-build-run/commit/14a12c7c))
476
+ * Pass --speculative flag in autonomous skill speculative Task() prompt ([1502ebd5](https://github.com/SienkLogic/plan-build-run/commit/1502ebd5))
477
+ * Add checkpoint manifest re-init after speculative plan swap in autonomous mode ([b08ee23e](https://github.com/SienkLogic/plan-build-run/commit/b08ee23e))
478
+ * Add --speculative flag guards to plan skill .active-skill and STATE.md writes ([9c40acb2](https://github.com/SienkLogic/plan-build-run/commit/9c40acb2))
479
+ * Sync plan-build-run/ copies of modified SKILL.md files ([94b6e35c](https://github.com/SienkLogic/plan-build-run/commit/94b6e35c))
480
+ * Add state reconcile step to milestone post-archival cleanup ([09b13ca9](https://github.com/SienkLogic/plan-build-run/commit/09b13ca9))
481
+ * Update help with 9 missing skills and fix AGENT_TO_SKILL wiring ([b38ad2f3](https://github.com/SienkLogic/plan-build-run/commit/b38ad2f3))
482
+ * Correct MILESTONE-AUDIT template path in milestone skill ([63eebda7](https://github.com/SienkLogic/plan-build-run/commit/63eebda7))
483
+
484
+ ### Testing
485
+
486
+ * Mock child_process.spawn in dashboard-launch test to prevent orphaned processes in CI ([78817954](https://github.com/SienkLogic/plan-build-run/commit/78817954))
487
+ * Mock net.createConnection in dashboard-launch test for CI compatibility ([09ed381a](https://github.com/SienkLogic/plan-build-run/commit/09ed381a))
488
+ * Avoid network call in dashboard-launch test for CI compatibility ([15bc04f8](https://github.com/SienkLogic/plan-build-run/commit/15bc04f8))
489
+ * Fix lint errors in new test files (duplicate keys, empty blocks) ([13506354](https://github.com/SienkLogic/plan-build-run/commit/13506354))
490
+ * Update gate tests for speculative planning (empty dirs now allowed) ([930a82c8](https://github.com/SienkLogic/plan-build-run/commit/930a82c8))
491
+ * IH-10 excludes test-sourced entries from source tag analysis ([747cf848](https://github.com/SienkLogic/plan-build-run/commit/747cf848))
492
+ * EF-01 single-source counting with rate cap, EF-05 test entry filter ([56a66e08](https://github.com/SienkLogic/plan-build-run/commit/56a66e08))
493
+
494
+ ### Other
495
+
496
+ * Add null config guards to FV-05 and FV-06 feature verification checks ([8ac294b3](https://github.com/SienkLogic/plan-build-run/commit/8ac294b3))
497
+ * Separate enforcement blocks from tool failures in EF-01 counting ([9c5cdda5](https://github.com/SienkLogic/plan-build-run/commit/9c5cdda5))
498
+
499
+ ## [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
500
+
501
+ ### Agents
502
+
503
+ * Upgrade audit agent with dimension categories and per-dimension scoring ([5a886ac8](https://github.com/SienkLogic/plan-build-run/commit/5a886ac8))
504
+ * Implement EF-02 agent failure/timeout detection ([56f51d27](https://github.com/SienkLogic/plan-build-run/commit/56f51d27))
505
+ * 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))
506
+
507
+ ### CI/CD
508
+
509
+ * Add BC-09 enforce-PBR-workflow advisory tracking check ([824bbc1a](https://github.com/SienkLogic/plan-build-run/commit/824bbc1a))
510
+ * Add CI verification and compaction quality checks (WC-01, WC-07) ([4a904e9f](https://github.com/SienkLogic/plan-build-run/commit/4a904e9f))
511
+ * 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))
512
+
513
+ ### CLI Tools
514
+
515
+ * Add STATE.md integrity and frontmatter checks (WC-02, WC-03) ([8040edd0](https://github.com/SienkLogic/plan-build-run/commit/8040edd0))
516
+
517
+ ### Configuration
518
+
519
+ * Restore .planning/ to gitignore ([40d0ba66](https://github.com/SienkLogic/plan-build-run/commit/40d0ba66))
520
+ * Sync config-schema.json copies and autonomous skill after speculative planner changes ([ed74d7c6](https://github.com/SienkLogic/plan-build-run/commit/ed74d7c6))
521
+ * Add speculative_depth property to config schema and config.json ([12ca6a9a](https://github.com/SienkLogic/plan-build-run/commit/12ca6a9a))
522
+ * Add audit section to config-schema.json and sync to bin copy ([648c7cb2](https://github.com/SienkLogic/plan-build-run/commit/648c7cb2))
523
+ * Lower global coverage thresholds to match actual after status-line additions ([c6af4520](https://github.com/SienkLogic/plan-build-run/commit/c6af4520))
524
+
525
+ ### Context Management
526
+
527
+ * Add BC-10 unmanaged commit detection and BC-11 context delegation threshold ([a0f319db](https://github.com/SienkLogic/plan-build-run/commit/a0f319db))
528
+
529
+ ### Hooks
530
+
531
+ * Wire all 8 audit category modules into index.js dispatch ([adf7b4b8](https://github.com/SienkLogic/plan-build-run/commit/adf7b4b8))
532
+ * Implement EF-03 hook false positive and EF-04 hook false negative analysis ([15b788b0](https://github.com/SienkLogic/plan-build-run/commit/15b788b0))
533
+ * Add IH-09 dispatch chain, IH-10 log separation, runAllInfraChecks aggregate ([8138be15](https://github.com/SienkLogic/plan-build-run/commit/8138be15))
534
+ * Add IH-03 hook perf, IH-07 log rotation, IH-08 disk usage checks ([8204fb65](https://github.com/SienkLogic/plan-build-run/commit/8204fb65))
535
+ * 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))
536
+ * Implement agent and hook checks SI-06 through SI-09 ([377d08a7](https://github.com/SienkLogic/plan-build-run/commit/377d08a7))
537
+ * Read coverage from coverage-final.json (33%) instead of stale coverage-summary.json (13%) ([9153cb13](https://github.com/SienkLogic/plan-build-run/commit/9153cb13))
538
+ * Coverage reader prefers bin/lib aggregate (75%) over global total (13%) ([777eeecb](https://github.com/SienkLogic/plan-build-run/commit/777eeecb))
539
+ * Add test/CI writers and fix coverage reader for dev status line ([208bcb69](https://github.com/SienkLogic/plan-build-run/commit/208bcb69))
540
+ * 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))
541
+ * Status line null phases, stale context tier, hook server indicator ([0b91df0b](https://github.com/SienkLogic/plan-build-run/commit/0b91df0b))
542
+
543
+ ### Plugin
544
+
545
+ * Fix researcher Write tool, autonomous Task tool, and milestone template path ([fd930215](https://github.com/SienkLogic/plan-build-run/commit/fd930215))
546
+
547
+ ### Skills
548
+
549
+ * Upgrade audit skill with programmatic checks, report v2, and verbosity control ([b3945e46](https://github.com/SienkLogic/plan-build-run/commit/b3945e46))
550
+ * Add BC-12 skill self-read prevention detection ([a2b40276](https://github.com/SienkLogic/plan-build-run/commit/a2b40276))
551
+ * Add behavioral-compliance module with JSONL helpers and BC-01 skill sequence check ([b1885ae6](https://github.com/SienkLogic/plan-build-run/commit/b1885ae6))
552
+ * Sync autonomous SKILL.md to plan-build-run copy ([d25471e4](https://github.com/SienkLogic/plan-build-run/commit/d25471e4))
553
+ * Add speculative plan skip logic and completion stats to autonomous mode ([aa22a720](https://github.com/SienkLogic/plan-build-run/commit/aa22a720))
554
+ * Add staleness detection and re-planning for speculative plans ([9518ce08](https://github.com/SienkLogic/plan-build-run/commit/9518ce08))
555
+ * Add speculative planner dispatch during build in autonomous mode ([e7f13bd8](https://github.com/SienkLogic/plan-build-run/commit/e7f13bd8))
556
+ * Implement SI-01 through SI-03 skill reference validation checks ([9072a3f3](https://github.com/SienkLogic/plan-build-run/commit/9072a3f3))
557
+ * Add --preset/--dimension/--skip/--only CLI flags and dimension resolution to audit SKILL.md ([33c0787c](https://github.com/SienkLogic/plan-build-run/commit/33c0787c))
558
+ * Auto-run npm release on milestone complete, fix release tag detection ([a9d59314](https://github.com/SienkLogic/plan-build-run/commit/a9d59314))
559
+
560
+ ### Testing
561
+
562
+ * Add WC-09 commit pattern validation and WC-12 test health baseline checks ([57194cd5](https://github.com/SienkLogic/plan-build-run/commit/57194cd5))
563
+
564
+ ### Other
565
+
566
+ * 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))
567
+ * Implement SQ-07, SQ-08, SQ-09, SQ-10 audit check functions ([08ef1eaa](https://github.com/SienkLogic/plan-build-run/commit/08ef1eaa))
568
+ * Implement BC-13, BC-14, BC-15 audit check functions ([d9b12456](https://github.com/SienkLogic/plan-build-run/commit/d9b12456))
569
+ * Upgrade index.js to aggregate SI, IH, FV, QM check modules with unified runAllChecks() ([c1fb077c](https://github.com/SienkLogic/plan-build-run/commit/c1fb077c))
570
+ * Add QM-05 self-validation and runAllQualityMetricChecks aggregator ([f9afdc64](https://github.com/SienkLogic/plan-build-run/commit/f9afdc64))
571
+ * Add baseline comparison check QM-03 ([e6f4b79f](https://github.com/SienkLogic/plan-build-run/commit/e6f4b79f))
572
+ * Add error correlation check across audit dimensions (QM-04) ([acb2bc3f](https://github.com/SienkLogic/plan-build-run/commit/acb2bc3f))
573
+ * Add quality-metrics module with session degradation and throughput checks (QM-01, QM-02) ([0ca3b75b](https://github.com/SienkLogic/plan-build-run/commit/0ca3b75b))
574
+ * Add FV-13 meta-check and wire FV_CHECKS map into index.js ([28c230d2](https://github.com/SienkLogic/plan-build-run/commit/28c230d2))
575
+ * Add FV-08 through FV-12 check functions ([88299b38](https://github.com/SienkLogic/plan-build-run/commit/88299b38))
576
+ * Add feature-verification.js with helpers and FV-01 through FV-03 ([5e57912e](https://github.com/SienkLogic/plan-build-run/commit/5e57912e))
577
+ * Add SQ-04 routing, SQ-05 memory tracking, SQ-06 convention monitoring ([043fa179](https://github.com/SienkLogic/plan-build-run/commit/043fa179))
578
+ * Implement SQ-03 session duration and cost analysis ([8206bff5](https://github.com/SienkLogic/plan-build-run/commit/8206bff5))
579
+ * Implement SQ-02 briefing freshness and size check ([ba281c14](https://github.com/SienkLogic/plan-build-run/commit/ba281c14))
580
+ * Implement SQ-01 session start quality check with shared JSONL helpers ([d3db066a](https://github.com/SienkLogic/plan-build-run/commit/d3db066a))
581
+ * Add BC-07 CRITICAL marker compliance and BC-08 gate compliance checks ([1c714792](https://github.com/SienkLogic/plan-build-run/commit/1c714792))
582
+ * Add BC-06 artifact creation order check ([5872359a](https://github.com/SienkLogic/plan-build-run/commit/5872359a))
583
+ * Add BC-04 post-condition verification and BC-05 orchestrator budget discipline ([48324dba](https://github.com/SienkLogic/plan-build-run/commit/48324dba))
584
+ * Add BC-02 state machine transitions and BC-03 pre-condition verification ([5135cb38](https://github.com/SienkLogic/plan-build-run/commit/5135cb38))
585
+ * Add model selection and git branching compliance checks (WC-10, WC-11) ([4575cb0f](https://github.com/SienkLogic/plan-build-run/commit/4575cb0f))
586
+ * Add WC-05 artifact completeness and WC-06 format validation checks ([6d741f3d](https://github.com/SienkLogic/plan-build-run/commit/6d741f3d))
587
+ * Add ROADMAP sync and naming convention checks (WC-04, WC-08) ([742674fa](https://github.com/SienkLogic/plan-build-run/commit/742674fa))
588
+ * Implement EF-07 session cleanup verification with all 7 EF checks exported ([8a8ccee1](https://github.com/SienkLogic/plan-build-run/commit/8a8ccee1))
589
+ * Implement EF-06 cross-session interference detection with stale file checks ([dd24a1a1](https://github.com/SienkLogic/plan-build-run/commit/dd24a1a1))
590
+ * Implement EF-05 retry/repetition pattern detection ([f1090c70](https://github.com/SienkLogic/plan-build-run/commit/f1090c70))
591
+ * Implement EF-01 tool failure rate analysis with shared JSONL helpers ([3442c193](https://github.com/SienkLogic/plan-build-run/commit/3442c193))
592
+ * 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))
593
+ * Implement command, config, and version checks SI-10 through SI-12 ([eb8a1933](https://github.com/SienkLogic/plan-build-run/commit/eb8a1933))
594
+ * Create SI checks index module with all 15 dimensions ([814570ad](https://github.com/SienkLogic/plan-build-run/commit/814570ad))
595
+ * Implement cross-cutting SI checks (SI-13, SI-14, SI-15) ([8747ed37](https://github.com/SienkLogic/plan-build-run/commit/8747ed37))
596
+ * Deduplicate --only dimension resolution to handle code+slug aliases ([60c4d26b](https://github.com/SienkLogic/plan-build-run/commit/60c4d26b))
597
+ * Implement resolveDimensions() and explainResolution() in audit-dimensions.js ([a114bc61](https://github.com/SienkLogic/plan-build-run/commit/a114bc61))
598
+ * Create audit dimension registry with 88 dimensions across 9 categories ([ee179a65](https://github.com/SienkLogic/plan-build-run/commit/ee179a65))
599
+
600
+ ## [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
601
+
602
+ ### Agents
603
+
604
+ * Add Knowledge Capture write instructions to executor, verifier, debugger ([cea3e587](https://github.com/SienkLogic/plan-build-run/commit/cea3e587))
605
+ * Add KNOWLEDGE.md to files_to_read for all 10 agents ([d3723794](https://github.com/SienkLogic/plan-build-run/commit/d3723794))
606
+ * Integrate node-repair reference and repair loop into executor ([30bdfa07](https://github.com/SienkLogic/plan-build-run/commit/30bdfa07))
607
+ * Add deviation taxonomy, fix plans, and DISCOVERY.md references to agents ([a21978eb](https://github.com/SienkLogic/plan-build-run/commit/a21978eb))
608
+ * Update executor/verifier for 13-state model and building/built status ([a64e88a5](https://github.com/SienkLogic/plan-build-run/commit/a64e88a5))
609
+ * Update planner Mode 4 fallback format with PBR-aligned ROADMAP fields ([0b9e5f09](https://github.com/SienkLogic/plan-build-run/commit/0b9e5f09))
610
+ * Update roadmapper output format for PBR-aligned ROADMAP fields ([0b3efdea](https://github.com/SienkLogic/plan-build-run/commit/0b3efdea))
611
+
612
+ ### CI/CD
613
+
614
+ * Replace release-please with component-grouped changelog system ([73457e14](https://github.com/SienkLogic/plan-build-run/commit/73457e14))
615
+ * Regenerate from correct tag ranges, removing duplicate entries ([dd996cff](https://github.com/SienkLogic/plan-build-run/commit/dd996cff))
616
+
617
+ ### CLI Tools
618
+
619
+ * Replace non-existent writeStateMd import in verify.cjs, sync config-schema.json ([94caea14](https://github.com/SienkLogic/plan-build-run/commit/94caea14))
620
+ * Guard Progress table parser against sections without actual tables ([5c7e6bc7](https://github.com/SienkLogic/plan-build-run/commit/5c7e6bc7))
621
+ * Add loadGlobalDefaults and saveGlobalDefaults for cross-project defaults ([991156d7](https://github.com/SienkLogic/plan-build-run/commit/991156d7))
622
+ * Add WAITING.json signal functions to state.cjs ([65a56e9b](https://github.com/SienkLogic/plan-build-run/commit/65a56e9b))
623
+ * Add RETROSPECTIVE.md generation, ROADMAP details-collapse, and milestone index to cmdMilestoneComplete ([97172728](https://github.com/SienkLogic/plan-build-run/commit/97172728))
624
+ * Add velocity metrics and session continuity to state.cjs ([4cf6b330](https://github.com/SienkLogic/plan-build-run/commit/4cf6b330))
625
+ * Merge PBR + PBR status values into unified 13-state lifecycle ([8c27154f](https://github.com/SienkLogic/plan-build-run/commit/8c27154f))
626
+ * 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))
627
+
628
+ ### Configuration
629
+
630
+ * Add extended_context to config reference and model profiles docs ([8677fb03](https://github.com/SienkLogic/plan-build-run/commit/8677fb03))
631
+
632
+ ### Context Management
633
+
634
+ * Bridge real context data from status-line to .context-budget.json ([886e2649](https://github.com/SienkLogic/plan-build-run/commit/886e2649))
635
+
636
+ ### Dashboard
637
+
638
+ * Add velocity/session parsing, update status labels to 13-state model ([dc2d7d1f](https://github.com/SienkLogic/plan-build-run/commit/dc2d7d1f))
639
+ * Update planning reader for <details> milestones and phase Requirements/Success Criteria ([af65b4bd](https://github.com/SienkLogic/plan-build-run/commit/af65b4bd))
231
640
 
232
641
  ### Documentation
233
642
 
234
- * update CLAUDE.md coverage thresholds to 70% and test count to ~1666 ([7d10002](https://github.com/SienkLogic/plan-build-run/commit/7d10002a6d7814d98808f812060d48a4d49da1bb))
235
-
236
- ## [2.9.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.8.3...plan-build-run-v2.9.0) (2026-02-20)
237
-
643
+ * Add node-repair.md reference for task failure taxonomy ([c725c78f](https://github.com/SienkLogic/plan-build-run/commit/c725c78f))
644
+ * Add deviation taxonomy reference format to deviation-rules.md ([4e9ce6e4](https://github.com/SienkLogic/plan-build-run/commit/4e9ce6e4))
645
+
646
+ ### Hooks
647
+
648
+ * Refocus milestone-learnings.js to aggregate into project-scoped KNOWLEDGE.md ([7556560c](https://github.com/SienkLogic/plan-build-run/commit/7556560c))
649
+ * Add seed trigger checking after executor phase completion ([9e7c4b46](https://github.com/SienkLogic/plan-build-run/commit/9e7c4b46))
650
+ * Add SessionStart awareness sweep for seeds, deferred, tech debt, research, knowledge ([56c8c1a3](https://github.com/SienkLogic/plan-build-run/commit/56c8c1a3))
651
+ * Detect WAITING.json and HANDOFF.json at SessionStart ([cfc2c450](https://github.com/SienkLogic/plan-build-run/commit/cfc2c450))
652
+ * Read 3 days of logs and classify rare-event hooks in checkHookCoverage ([d097dfca](https://github.com/SienkLogic/plan-build-run/commit/d097dfca))
653
+ * Add entry/skip/complete logging to 3 remaining hooks ([3e21eebd](https://github.com/SienkLogic/plan-build-run/commit/3e21eebd))
654
+ * Add checkHookCoverage to health-checks cross-referencing hooks.json vs logs ([2f93ae55](https://github.com/SienkLogic/plan-build-run/commit/2f93ae55))
655
+ * Add source field and PBR_LOG_DIR support to hook-logger ([8bb5d140](https://github.com/SienkLogic/plan-build-run/commit/8bb5d140))
656
+ * Remove noisy velocity/session absence warnings, sync build SKILL.md ([1a10dc77](https://github.com/SienkLogic/plan-build-run/commit/1a10dc77))
657
+ * Add deviation review check to check-subagent-output ([8b4d649e](https://github.com/SienkLogic/plan-build-run/commit/8b4d649e))
658
+ * Add deviations and fix_plans validation to check-plan-format ([e5c4f46d](https://github.com/SienkLogic/plan-build-run/commit/e5c4f46d))
659
+ * Add readCurrentStatus and VALID_PHASE_STATUSES to gate helpers ([c9f91734](https://github.com/SienkLogic/plan-build-run/commit/c9f91734))
660
+ * Add session continuity frontmatter reading and expanded stale status detection ([c2ed2307](https://github.com/SienkLogic/plan-build-run/commit/c2ed2307))
661
+ * Update smart-next-task status routing for 13-state lifecycle ([ae549f02](https://github.com/SienkLogic/plan-build-run/commit/ae549f02))
662
+ * Use STATUS_LABELS for display and expand status ordering in check-state-sync.js ([e9e017be](https://github.com/SienkLogic/plan-build-run/commit/e9e017be))
663
+ * Add 13-state lifecycle validation to validateState() in check-plan-format.js ([72785d54](https://github.com/SienkLogic/plan-build-run/commit/72785d54))
664
+ * Add dynamic column detection and details-tag stripping to progress-tracker.js ([fd9234ac](https://github.com/SienkLogic/plan-build-run/commit/fd9234ac))
665
+ * Strip HTML details/summary tags in check-roadmap-sync.js for collapsed milestones ([479b6db0](https://github.com/SienkLogic/plan-build-run/commit/479b6db0))
666
+ * Add dynamic column detection to updateProgressTable in check-state-sync.js ([cefa54eb](https://github.com/SienkLogic/plan-build-run/commit/cefa54eb))
667
+ * Update validateRoadmap and validateContext for PBR-aligned ROADMAP format ([045a3d01](https://github.com/SienkLogic/plan-build-run/commit/045a3d01))
668
+ * Replace static port 19871 with dynamic allocation in hook-server.test.js ([4886f286](https://github.com/SienkLogic/plan-build-run/commit/4886f286))
669
+ * Report actual bound port in hook-server ready signal ([c22390bf](https://github.com/SienkLogic/plan-build-run/commit/c22390bf))
670
+ * Add CONFIG_DEFAULTS and configEnsureComplete for auto-population ([dda3f8bb](https://github.com/SienkLogic/plan-build-run/commit/dda3f8bb))
671
+ * Surface hook errors via additionalContext instead of silent exit ([ae7330a0](https://github.com/SienkLogic/plan-build-run/commit/ae7330a0))
672
+ * Fix clearRootCache import to use hooks path instead of plugins path ([364c92e9](https://github.com/SienkLogic/plan-build-run/commit/364c92e9))
673
+
674
+ ### Skills
675
+
676
+ * Add KNOWLEDGE.md to begin init, milestone aggregation, and executor context ([2b8b5a2c](https://github.com/SienkLogic/plan-build-run/commit/2b8b5a2c))
677
+ * Add KNOWLEDGE.md to context-loader-task.md briefing files ([950953a4](https://github.com/SienkLogic/plan-build-run/commit/950953a4))
678
+ * Wire extended_context gates into build, review, scan, and plan skills ([122a2aa6](https://github.com/SienkLogic/plan-build-run/commit/122a2aa6))
679
+ * Add --prd express path to plan skill for PRD-driven planning ([87a0df8a](https://github.com/SienkLogic/plan-build-run/commit/87a0df8a))
680
+ * Add /pbr:session-report skill for post-session summaries ([dc90c6d2](https://github.com/SienkLogic/plan-build-run/commit/dc90c6d2))
681
+ * Add /pbr:ship skill for PR creation from planning artifacts ([c3fc12a4](https://github.com/SienkLogic/plan-build-run/commit/c3fc12a4))
682
+ * Add UAT gap intake path to debug skill ([0e67aa92](https://github.com/SienkLogic/plan-build-run/commit/0e67aa92))
683
+ * Add node repair reference and ESCALATE handling to build skill ([b4740565](https://github.com/SienkLogic/plan-build-run/commit/b4740565))
684
+ * Add HANDOFF.json and WAITING.json support to resume skill ([ba1a7b22](https://github.com/SienkLogic/plan-build-run/commit/ba1a7b22))
685
+ * Add HANDOFF.json creation to pause skill ([146bd7f9](https://github.com/SienkLogic/plan-build-run/commit/146bd7f9))
686
+ * Add deviation-rules reference to build, fix plan review to review ([7d0b7762](https://github.com/SienkLogic/plan-build-run/commit/7d0b7762))
687
+ * Add PROJECT.md evolution review to milestone, update begin for new format ([20762452](https://github.com/SienkLogic/plan-build-run/commit/20762452))
688
+ * Add session continuity fields to pause/resume skills ([ea8c27ac](https://github.com/SienkLogic/plan-build-run/commit/ea8c27ac))
689
+ * Update status and continue skills for 13-state model and velocity display ([4fe1067a](https://github.com/SienkLogic/plan-build-run/commit/4fe1067a))
690
+ * Update plan/build/review/discuss for new ROADMAP format and CONTEXT.md sections ([44d8e6fe](https://github.com/SienkLogic/plan-build-run/commit/44d8e6fe))
691
+ * Update begin skill and roadmap prompt for Requirements/Success Criteria fields ([56366b30](https://github.com/SienkLogic/plan-build-run/commit/56366b30))
692
+ * Update milestone complete to use <details> collapse and milestone index ([40598b26](https://github.com/SienkLogic/plan-build-run/commit/40598b26))
693
+ * Add npm release prompt to milestone complete workflow ([3f8c2290](https://github.com/SienkLogic/plan-build-run/commit/3f8c2290))
694
+
695
+ ### Templates
696
+
697
+ * Add KNOWLEDGE.md.tmpl for project knowledge capture ([e30ff512](https://github.com/SienkLogic/plan-build-run/commit/e30ff512))
698
+ * Add extended_context to config schema, defaults, and template ([6b9c9361](https://github.com/SienkLogic/plan-build-run/commit/6b9c9361))
699
+ * Add UAT.md.tmpl for user acceptance testing ([7fc0a09b](https://github.com/SienkLogic/plan-build-run/commit/7fc0a09b))
700
+ * Add HANDOFF.json.tmpl for session pause/resume state ([f50eaf68](https://github.com/SienkLogic/plan-build-run/commit/f50eaf68))
701
+ * Add MILESTONE-AUDIT.md.tmpl with structured YAML scores ([643437b3](https://github.com/SienkLogic/plan-build-run/commit/643437b3))
702
+ * Add RETROSPECTIVE.md.tmpl for cross-milestone trends ([46fbcab8](https://github.com/SienkLogic/plan-build-run/commit/46fbcab8))
703
+ * Create DISCOVERY.md template with Don't Hand-Roll section ([3340d9b1](https://github.com/SienkLogic/plan-build-run/commit/3340d9b1))
704
+ * Add fix plan generation and gap severity to VERIFICATION template ([085cdaa6](https://github.com/SienkLogic/plan-build-run/commit/085cdaa6))
705
+ * Add deviation taxonomy and requirements_completed to SUMMARY templates ([e9ca0ff8](https://github.com/SienkLogic/plan-build-run/commit/e9ca0ff8))
706
+ * Add PBR evolution protocol and lifecycle sections to PROJECT.md ([d7fc03e9](https://github.com/SienkLogic/plan-build-run/commit/d7fc03e9))
707
+ * Add Specific References and Code Patterns sections to project-CONTEXT.md.tmpl ([6962a0f7](https://github.com/SienkLogic/plan-build-run/commit/6962a0f7))
708
+ * Add specifics and code_context sections to CONTEXT.md.tmpl ([8ca7dffd](https://github.com/SienkLogic/plan-build-run/commit/8ca7dffd))
709
+ * Update ROADMAP.md.tmpl with PBR-aligned format ([b0710bc6](https://github.com/SienkLogic/plan-build-run/commit/b0710bc6))
710
+
711
+ ### Testing
712
+
713
+ * Use hooks.jsonl path matching getHookHealthSummary implementation ([b4edd282](https://github.com/SienkLogic/plan-build-run/commit/b4edd282))
714
+ * Add extended_context to schema test and sync mirror files ([51c6201c](https://github.com/SienkLogic/plan-build-run/commit/51c6201c))
715
+ * Update health-checks count to accommodate new checkHookCoverage check ([fe278bd8](https://github.com/SienkLogic/plan-build-run/commit/fe278bd8))
716
+ * Resolve macOS symlink in helpers.js and helpers.test.js (/var -> /private/var) ([03231a26](https://github.com/SienkLogic/plan-build-run/commit/03231a26))
717
+ * Replace static ports 19872-19874 with dynamic allocation in state-enrichment.test.js ([d9ce2b3b](https://github.com/SienkLogic/plan-build-run/commit/d9ce2b3b))
718
+ * Add temp directory cleanup to 7 test files that leaked mkdtempSync dirs ([c9e48a07](https://github.com/SienkLogic/plan-build-run/commit/c9e48a07))
719
+
720
+ ### Other
721
+
722
+ * Wire extended_context into begin and setup profile presets ([abfd2a37](https://github.com/SienkLogic/plan-build-run/commit/abfd2a37))
723
+ * Add entry-point and skip-reason logging to post-bash-triage.js ([3c295a89](https://github.com/SienkLogic/plan-build-run/commit/3c295a89))
724
+ * Add entry-point and skip-reason logging to graph-update.js ([7ca8c9eb](https://github.com/SienkLogic/plan-build-run/commit/7ca8c9eb))
725
+ * Commit daily log file refactor — dated filenames, append-only, 30-day retention ([61345577](https://github.com/SienkLogic/plan-build-run/commit/61345577))
726
+
727
+ ## [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
728
+
729
+ ### Agents
730
+
731
+ * Add post-execution verifier integration for --full flag ([53099336](https://github.com/SienkLogic/plan-build-run/commit/53099336))
732
+ * Add plan-checker integration for --full flag in quick SKILL.md ([a2618d28](https://github.com/SienkLogic/plan-build-run/commit/a2618d28))
733
+ * Add consistent files_to_read context passing to both executor paths ([f4152c8f](https://github.com/SienkLogic/plan-build-run/commit/f4152c8f))
734
+ * Pass CONTEXT.md to verifier in review skill files_to_read ([bc7eb48e](https://github.com/SienkLogic/plan-build-run/commit/bc7eb48e))
735
+ * Enhance verifier Step 7b with REQ-ID deliverable cross-checking and untraced detection ([2128e24b](https://github.com/SienkLogic/plan-build-run/commit/2128e24b))
736
+ * Add phase goals to executor prompt template ([d138e049](https://github.com/SienkLogic/plan-build-run/commit/d138e049))
737
+ * Add read_first, acceptance_criteria, node repair, and paralysis guard to executor agent ([9ea2ccca](https://github.com/SienkLogic/plan-build-run/commit/9ea2ccca))
738
+ * Update planner agent to generate read_first and acceptance_criteria ([b625023e](https://github.com/SienkLogic/plan-build-run/commit/b625023e))
739
+ * Refine plan-checker agent to 9 dimensions with structured YAML output ([32c795db](https://github.com/SienkLogic/plan-build-run/commit/32c795db))
740
+ * Update tests for RH-01 agent output changes and sync plan-build-run copies ([53ca648d](https://github.com/SienkLogic/plan-build-run/commit/53ca648d))
741
+ * Update agent-contracts.md implements field and VERIFICATION.md frontmatter ([e64f7abc](https://github.com/SienkLogic/plan-build-run/commit/e64f7abc))
742
+ * Update executor-prompt.md.tmpl CONTEXT.md references to PROJECT.md ([1d1d7053](https://github.com/SienkLogic/plan-build-run/commit/1d1d7053))
743
+
744
+ ### CI/CD
745
+
746
+ * Prefix unused variables in test files to resolve ESLint warnings ([9ead0690](https://github.com/SienkLogic/plan-build-run/commit/9ead0690))
747
+ * Add workflow.node_repair_budget config validation ([137f2a4d](https://github.com/SienkLogic/plan-build-run/commit/137f2a4d))
748
+
749
+ ### CLI Tools
750
+
751
+ * Add auto-repair to initResume via stateRederive on drift ([636d189f](https://github.com/SienkLogic/plan-build-run/commit/636d189f))
752
+ * Add detectDrift helper and drift field to init commands ([853410dd](https://github.com/SienkLogic/plan-build-run/commit/853410dd))
753
+ * Wire statePhaseComplete and stateRederive into pbr-tools.cjs dispatcher ([b826ce33](https://github.com/SienkLogic/plan-build-run/commit/b826ce33))
754
+ * Implement stateRederive with drift detection and atomic correction ([8b0f7275](https://github.com/SienkLogic/plan-build-run/commit/8b0f7275))
755
+ * Implement statePhaseComplete with atomic lockedFileUpdate ([8b84d3b3](https://github.com/SienkLogic/plan-build-run/commit/8b84d3b3))
756
+
757
+ ### Hooks
758
+
759
+ * Resolve macOS symlink in resolve-root test (/var -> /private/var) ([8a163798](https://github.com/SienkLogic/plan-build-run/commit/8a163798))
760
+ * Prefix unused variables in hooks/ source files with underscore ([ee270c28](https://github.com/SienkLogic/plan-build-run/commit/ee270c28))
761
+ * Add validateContext and SUMMARY metrics warnings to check-plan-format ([8fb4ab00](https://github.com/SienkLogic/plan-build-run/commit/8fb4ab00))
762
+ * Add completion marker and Self-Check section validation to check-subagent-output ([4d5da4f8](https://github.com/SienkLogic/plan-build-run/commit/4d5da4f8))
763
+ * Add read_first and acceptance_criteria validation to check-plan-format hook ([5b25a0ff](https://github.com/SienkLogic/plan-build-run/commit/5b25a0ff))
764
+ * Migrate auto-continue from signal file to config flag with backward compat ([03d62a7f](https://github.com/SienkLogic/plan-build-run/commit/03d62a7f))
765
+ * Add mtime-based dirty flag detection to check-state-sync ([d2070554](https://github.com/SienkLogic/plan-build-run/commit/d2070554))
766
+ * Wire resolveProjectRoot into hook-logger getLogPath for correct root discovery ([1e923d77](https://github.com/SienkLogic/plan-build-run/commit/1e923d77))
767
+ * Switch hook-logger to append-only writes with appendFileSync ([f68568ea](https://github.com/SienkLogic/plan-build-run/commit/f68568ea))
768
+ * Add fail-open telemetry to validate-task.js catch block ([e26d54aa](https://github.com/SienkLogic/plan-build-run/commit/e26d54aa))
769
+ * Sync git-integration.md commit types with validate-commit.js ([f67182c0](https://github.com/SienkLogic/plan-build-run/commit/f67182c0))
770
+ * Update 4 agent expectedFile entries in check-subagent-output.js ([6b51eae2](https://github.com/SienkLogic/plan-build-run/commit/6b51eae2))
771
+
772
+ ### Plugin
773
+
774
+ * Elevate universal anti-patterns to plugin-level CLAUDE.md ([f059b3cc](https://github.com/SienkLogic/plan-build-run/commit/f059b3cc))
775
+
776
+ ### Skills
777
+
778
+ * Update tests for new validation rules and sync SKILL.md copies ([ebc312b9](https://github.com/SienkLogic/plan-build-run/commit/ebc312b9))
779
+ * Add velocity metrics display to status SKILL.md ([f26715e6](https://github.com/SienkLogic/plan-build-run/commit/f26715e6))
780
+ * Add velocity metrics writing to build SKILL.md after phase completion ([f8098eda](https://github.com/SienkLogic/plan-build-run/commit/f8098eda))
781
+ * Enhance build SKILL.md with type-specific checkpoint routing UX ([6f731389](https://github.com/SienkLogic/plan-build-run/commit/6f731389))
782
+ * Update resume skill to parse XML sections with backward compat ([8628e0c1](https://github.com/SienkLogic/plan-build-run/commit/8628e0c1))
783
+ * Add commit-planning-docs.md references to 6 skills that write .planning/ files ([8681742f](https://github.com/SienkLogic/plan-build-run/commit/8681742f))
784
+ * Add error-reporting.md references to 14 skills with error exit paths ([f7af2cab](https://github.com/SienkLogic/plan-build-run/commit/f7af2cab))
785
+ * Add commit-planning-docs reference to config, setup, and profile skills ([04f6b2c2](https://github.com/SienkLogic/plan-build-run/commit/04f6b2c2))
786
+ * 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))
787
+ * Instrument discuss skill with 6 missing patterns ([4d2faf27](https://github.com/SienkLogic/plan-build-run/commit/4d2faf27))
788
+ * 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))
789
+ * Add branded invocation banners to ui-phase and ui-review skills ([e9bc9236](https://github.com/SienkLogic/plan-build-run/commit/e9bc9236))
790
+ * Add branded invocation banners to profile-user and quick skills ([265acf15](https://github.com/SienkLogic/plan-build-run/commit/265acf15))
791
+ * Add branded invocation banners to autonomous, do, and intel skills ([12816ab6](https://github.com/SienkLogic/plan-build-run/commit/12816ab6))
792
+ * Replace stale skill names and dead link in shared fragments ([83ae3954](https://github.com/SienkLogic/plan-build-run/commit/83ae3954))
793
+ * Add ROADMAP.md backup step before destructive archival in milestone skill ([8fc48f6c](https://github.com/SienkLogic/plan-build-run/commit/8fc48f6c))
794
+ * Correct broken ${CLAUDE_PLUGIN_ROOT} syntax in ui-phase and ui-review skills ([ba2d666a](https://github.com/SienkLogic/plan-build-run/commit/ba2d666a))
795
+
796
+ ### Templates
797
+
798
+ * Rewrite continue-here.md.tmpl with structured XML sections ([57fb91bb](https://github.com/SienkLogic/plan-build-run/commit/57fb91bb))
799
+ * Update CONTEXT.md template with 4 XML-style sections (domain, decisions, canonical_refs, deferred) ([85ab253e](https://github.com/SienkLogic/plan-build-run/commit/85ab253e))
238
800
 
239
- ### Features
801
+ ### Other
240
802
 
241
- * **tools:** add PR title validation and improved PR template ([5a718b0](https://github.com/SienkLogic/plan-build-run/commit/5a718b0890e9150b1f518cfa8b68873a04372015))
803
+ * Redefine composable flags with --discuss, --research, --full semantics ([0d3d78f7](https://github.com/SienkLogic/plan-build-run/commit/0d3d78f7))
804
+ * Lower STATE.md advisory cap from 150 to 100 lines ([59e1cba1](https://github.com/SienkLogic/plan-build-run/commit/59e1cba1))
805
+ * Wire YAML-based issue passing into revision loop with early-exit on stall ([d6f7a65f](https://github.com/SienkLogic/plan-build-run/commit/d6f7a65f))
806
+ * Add must_haves sub-field validation for truths, artifacts, key_links ([df686325](https://github.com/SienkLogic/plan-build-run/commit/df686325))
807
+ * Add canonical field validation for type, depends_on, files_modified, autonomous ([b9c6ff60](https://github.com/SienkLogic/plan-build-run/commit/b9c6ff60))
808
+ * Refactor processEvent to run all checks independently with collect-and-merge ([213c40a3](https://github.com/SienkLogic/plan-build-run/commit/213c40a3))
809
+ * Implement verify-and-retry TOCTOU protection in incrementTracker ([fb91464d](https://github.com/SienkLogic/plan-build-run/commit/fb91464d))
810
+ * Add logHook error telemetry to all 3 dispatcher catch blocks ([528b1ce1](https://github.com/SienkLogic/plan-build-run/commit/528b1ce1))
811
+ * Create resolveProjectRoot utility with walk-up discovery and caching ([e13fbeec](https://github.com/SienkLogic/plan-build-run/commit/e13fbeec))
812
+ * Rewrite validateConfig() with top-level depth and exhaustive knownKeys ([604fbb79](https://github.com/SienkLogic/plan-build-run/commit/604fbb79))
813
+ * Remove HISTORY.md archival section, rewrite for STATE.md History ([a702fcbd](https://github.com/SienkLogic/plan-build-run/commit/a702fcbd))
814
+ * Replace stale CONTEXT.md and HISTORY.md refs in context-loader-task.md ([8b5a9b28](https://github.com/SienkLogic/plan-build-run/commit/8b5a9b28))
242
815
 
243
- ## [2.8.3](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.8.2...plan-build-run-v2.8.3) (2026-02-20)
816
+ ## [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
244
817
 
818
+ ### CI/CD
245
819
 
246
- ### Bug Fixes
820
+ * Clean up coverage collection and fix plugin count test ([4189b37f](https://github.com/SienkLogic/plan-build-run/commit/4189b37f))
821
+ * Lower branch coverage threshold to 62% (was 68%, actual 63.5%) ([30857c83](https://github.com/SienkLogic/plan-build-run/commit/30857c83))
822
+ * Exclude hooks/lib and hooks/local-llm from coverage collection ([6ed6ed4f](https://github.com/SienkLogic/plan-build-run/commit/6ed6ed4f))
247
823
 
248
- * **tools:** remove unsupported --local flag from Copilot plugin install ([9d405db](https://github.com/SienkLogic/plan-build-run/commit/9d405db1926f3de42e13e05aa507279aa208124f))
824
+ ### Context Management
249
825
 
250
- ## [2.8.2](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.8.1...plan-build-run-v2.8.2) (2026-02-20)
826
+ * Context quality scoring module with scoreContext, getQualityReport, writeQualityReport ([6bd91ac1](https://github.com/SienkLogic/plan-build-run/commit/6bd91ac1))
251
827
 
828
+ ### Hooks
252
829
 
253
- ### Bug Fixes
830
+ * Wire skip-RAG into SessionStart briefing, sync hooks/ copies with quality scoring ([45ab1561](https://github.com/SienkLogic/plan-build-run/commit/45ab1561))
831
+ * Orchestrator budget scaling in suggest-compact, quality scoring in track-context-budget ([5d2a056f](https://github.com/SienkLogic/plan-build-run/commit/5d2a056f))
254
832
 
255
- * **tools:** use RELEASE_PAT for release-please to trigger CI on PRs ([2e4d107](https://github.com/SienkLogic/plan-build-run/commit/2e4d1074f791c78d7cac2dc185f584b2ee641899))
833
+ ### Other
256
834
 
257
- ## [2.8.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.8.0...plan-build-run-v2.8.1) (2026-02-20)
835
+ * Implement buildEnhancedBriefing with config toggle, audit logging, and structured output ([6f37f340](https://github.com/SienkLogic/plan-build-run/commit/6f37f340))
836
+ * Add feature_status and orchestrator_budget_pct validation to health check ([aacdd9c1](https://github.com/SienkLogic/plan-build-run/commit/aacdd9c1))
837
+ * Add 5 Phase 1 config properties to both schema copies ([acf65930](https://github.com/SienkLogic/plan-build-run/commit/acf65930))
258
838
 
839
+ ## [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
259
840
 
260
- ### Bug Fixes
841
+ ### Agents
261
842
 
262
- * **tools:** lower coverage thresholds to match actual coverage after validate-task.js addition ([352d1b7](https://github.com/SienkLogic/plan-build-run/commit/352d1b7015904957c30c4d3fb08024767c2031bf))
843
+ * Reference memory-capture.md in 4 skills after agent completion ([0072d887](https://github.com/SienkLogic/plan-build-run/commit/0072d887))
844
+ * Add memory_suggestion protocol to 4 agents and shared fragment ([e39e2bbe](https://github.com/SienkLogic/plan-build-run/commit/e39e2bbe))
845
+ * 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))
263
846
 
264
- ## [2.8.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.7.0...plan-build-run-v2.8.0) (2026-02-20)
847
+ ### CI/CD
265
848
 
849
+ * Convert indented code blocks to fenced in 4 agent files (MD046) ([7b5e3a5a](https://github.com/SienkLogic/plan-build-run/commit/7b5e3a5a))
266
850
 
267
- ### Features
851
+ ### Hooks
268
852
 
269
- * **03-01:** add review verifier, milestone complete, and build dependency gates ([bda474d](https://github.com/SienkLogic/plan-build-run/commit/bda474d8b88b128464df375d62de9acdeb9dff05))
270
- * **04-01:** add post-artifact validation for begin/plan/build and VERIFICATION.md ([3cb4bc1](https://github.com/SienkLogic/plan-build-run/commit/3cb4bc1c0f277c6beca99f7c336fba5e7376f9ec))
271
- * **05-01:** add STATE.md validation, checkpoint manifest check, and active-skill integrity warning ([d780d97](https://github.com/SienkLogic/plan-build-run/commit/d780d97e620915cb05e70372ce8c9d6003fd1ac8))
853
+ * Add comprehensive artifact validation gates and compliance tracking ([1d70fd35](https://github.com/SienkLogic/plan-build-run/commit/1d70fd35))
854
+ * Emit valid stdout in PreToolUse catch blocks instead of silent exit ([8ee7ffed](https://github.com/SienkLogic/plan-build-run/commit/8ee7ffed))
855
+ * Wire intel-queue hook, fix require path, update invocation schema ([54bc528b](https://github.com/SienkLogic/plan-build-run/commit/54bc528b))
856
+ * Wire PostCompact event in hooks.json ([2542a378](https://github.com/SienkLogic/plan-build-run/commit/2542a378))
857
+ * Create post-compact.js hook scripts for context recovery after compaction ([1fca720d](https://github.com/SienkLogic/plan-build-run/commit/1fca720d))
272
858
 
273
- ## [2.7.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.6.0...plan-build-run-v2.7.0) (2026-02-19)
859
+ ### Skills
274
860
 
861
+ * Improve status render routing, milestone parsing, and SKILL.md enforcement ([1ee590d1](https://github.com/SienkLogic/plan-build-run/commit/1ee590d1))
862
+ * 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))
275
863
 
276
- ### Features
864
+ ### Testing
277
865
 
278
- * **02-01:** add milestone, explore, import, scan write guards to checkSkillRules ([bd21366](https://github.com/SienkLogic/plan-build-run/commit/bd21366f8f63277566035f0827e3fde2ebc39400))
279
- * **02-02:** add review planner gate to validate-task.js ([89ffb05](https://github.com/SienkLogic/plan-build-run/commit/89ffb05bc6384fc47fbf85ac7c875e16a29db0b9))
280
- * **02-02:** strengthen ROADMAP sync warnings to CRITICAL level ([7120d60](https://github.com/SienkLogic/plan-build-run/commit/7120d60fdc6678d8c9853679b0d3464116821097))
866
+ * Add PostCompact to valid events, update doc-sprawl for allow output ([a94fb09e](https://github.com/SienkLogic/plan-build-run/commit/a94fb09e))
281
867
 
868
+ ### Other
282
869
 
283
- ### Bug Fixes
870
+ * PBR 2.0 Acceleration Framework (v5.0) — 16 phases, 67 plans (#96) ([414b87fa](https://github.com/SienkLogic/plan-build-run/commit/414b87fa))
871
+ * Handle YAML null string in suggest-next checkpoint check ([e7ee9ec3](https://github.com/SienkLogic/plan-build-run/commit/e7ee9ec3))
872
+ * Add verify spot-check CLI for plan/summary/verification/quick output validation ([81b80e3c](https://github.com/SienkLogic/plan-build-run/commit/81b80e3c))
873
+ * Add suggest-next CLI for deterministic routing across status/continue/resume ([c444d363](https://github.com/SienkLogic/plan-build-run/commit/c444d363))
874
+ * Add parse-args and status fingerprint CLI commands for input validation and state tracking ([5f3e83e2](https://github.com/SienkLogic/plan-build-run/commit/5f3e83e2))
875
+ * Add quick init and slug-generate CLI commands to prevent directory creation failures ([385f3f9d](https://github.com/SienkLogic/plan-build-run/commit/385f3f9d))
876
+ * Add deterministic status render CLI command for consistent progress output ([0e0f2970](https://github.com/SienkLogic/plan-build-run/commit/0e0f2970))
877
+ * Add worktree.sparse_paths config property to both schema files ([a60381f1](https://github.com/SienkLogic/plan-build-run/commit/a60381f1))
878
+ * Add intel patch-meta CLI command for accurate JSON timestamps ([b7e81656](https://github.com/SienkLogic/plan-build-run/commit/b7e81656))
879
+ * Add intel CLI subcommands (snapshot, validate, extract-exports) ([12f1be88](https://github.com/SienkLogic/plan-build-run/commit/12f1be88))
284
880
 
285
- * **tools:** auto-route quick skill to plan skill when user selects Full plan ([252a35e](https://github.com/SienkLogic/plan-build-run/commit/252a35ed9942c2b1902f38923bb80d92d819ae4e))
881
+ ## [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
286
882
 
287
- ## [2.6.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.5.0...plan-build-run-v2.6.0) (2026-02-19)
883
+ ### Agents
288
884
 
885
+ * Create pbr:ui-checker agent with 6-dimension scoring rubric ([0eff7049](https://github.com/SienkLogic/plan-build-run/commit/0eff7049))
886
+ * Create pbr:ui-researcher agent with Claude in Chrome MCP tools ([2a3c727f](https://github.com/SienkLogic/plan-build-run/commit/2a3c727f))
887
+ * Wire cross-project copy into executor and milestone-learnings ([be0445a6](https://github.com/SienkLogic/plan-build-run/commit/be0445a6))
888
+ * Create intel-updater agent definition ([b1dafb99](https://github.com/SienkLogic/plan-build-run/commit/b1dafb99))
889
+ * Add --audit flag to plan skill and planner self-validation Step 6b ([26ccbe62](https://github.com/SienkLogic/plan-build-run/commit/26ccbe62))
890
+ * Add inline execution bypass to build-executor gate ([bb96398c](https://github.com/SienkLogic/plan-build-run/commit/bb96398c))
891
+ * Add LEARNINGS.md reading instructions to planner agent (Step 1) ([a1cd851b](https://github.com/SienkLogic/plan-build-run/commit/a1cd851b))
892
+ * Add LEARNINGS.md writing instructions to executor agent (Step 3b) ([db20c608](https://github.com/SienkLogic/plan-build-run/commit/db20c608))
289
893
 
290
- ### Features
894
+ ### CI/CD
291
895
 
292
- * **01-01:** add build and plan executor gates to validate-task.js ([4d882e0](https://github.com/SienkLogic/plan-build-run/commit/4d882e07d9560c0540c2277149338137a9a7e05d))
293
- * **01-01:** extend agent output validation to all 10 PBR agent types ([9f4384f](https://github.com/SienkLogic/plan-build-run/commit/9f4384fa2391c3e5905243119da5bebbf65f6218))
294
- * **01-02:** add skill-specific workflow rules and CRITICAL enforcement ([173e89e](https://github.com/SienkLogic/plan-build-run/commit/173e89e0dfc81aa425b222efd982b83a19e2b3d0))
295
- * **tools:** add /pbr:statusline command to install PBR status line ([8bd9e7a](https://github.com/SienkLogic/plan-build-run/commit/8bd9e7a98b76cf8e1686eb7a936da8539fe20a08))
896
+ * Add blank line before closing tag in ui-checker and ui-researcher agents ([730e3e56](https://github.com/SienkLogic/plan-build-run/commit/730e3e56))
897
+ * Auto-clean release PR body to strip internal phase scopes ([9535aa7f](https://github.com/SienkLogic/plan-build-run/commit/9535aa7f))
296
898
 
899
+ ### CLI Tools
297
900
 
298
- ### Bug Fixes
901
+ * Wire copy-global and query-global CLI commands in pbr-tools dispatchers ([9da1fe28](https://github.com/SienkLogic/plan-build-run/commit/9da1fe28))
902
+ * Add copyToGlobal and queryGlobal to learnings modules ([6e4fc4a3](https://github.com/SienkLogic/plan-build-run/commit/6e4fc4a3))
903
+ * Add cross_project config and LEARNINGS.md validation ([520b3030](https://github.com/SienkLogic/plan-build-run/commit/520b3030))
904
+ * Wire intel subcommands into pbr-tools.cjs dispatcher ([f8345867](https://github.com/SienkLogic/plan-build-run/commit/f8345867))
299
905
 
300
- * **01-01:** hasPlanFile now matches numbered plan files like PLAN-01.md ([00c4af8](https://github.com/SienkLogic/plan-build-run/commit/00c4af8066c4c0c24f25be7cd6731acb2b13cb61))
301
- * **tools:** prefix unused name var with underscore in version sync test ([8b8b81d](https://github.com/SienkLogic/plan-build-run/commit/8b8b81dea5eff86fb4503cecdc9e677f573faf03))
302
- * **tools:** resolve lint errors in statusline workflow rules ([6c32db7](https://github.com/SienkLogic/plan-build-run/commit/6c32db7947ccaf392457750a26406ca92a3eef77))
303
- * **tools:** revert release branch CI trigger (using non-strict protection instead) ([836ac24](https://github.com/SienkLogic/plan-build-run/commit/836ac2401d3381b395fcf6b2bf252ff78745abd5))
304
- * **tools:** trigger CI on release-please branch pushes for auto-merge ([443e046](https://github.com/SienkLogic/plan-build-run/commit/443e0466f27eb51269999755eb2f8d37093d0f65))
906
+ ### Configuration
305
907
 
306
- ## [2.5.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.4.1...plan-build-run-v2.5.0) (2026-02-19)
908
+ * Add ui.enabled config property to config-schema.json ([eb2b792c](https://github.com/SienkLogic/plan-build-run/commit/eb2b792c))
909
+ * Add 17 new config properties to config-schema.json ([d6e91418](https://github.com/SienkLogic/plan-build-run/commit/d6e91418))
307
910
 
911
+ ### Context Management
308
912
 
309
- ### Features
913
+ * Add buildCompositionAdvice() for composition-aware compact suggestions ([d7b4b826](https://github.com/SienkLogic/plan-build-run/commit/d7b4b826))
310
914
 
311
- * **tools:** auto-close satisfied pending todos after quick task and build completion ([e1f8034](https://github.com/SienkLogic/plan-build-run/commit/e1f80349ca5b646ee1380014dec24dfdc0d3f800))
915
+ ### Hooks
312
916
 
917
+ * Address 5 audit findings — verification, logging, active-skill, status-line ([6f2a2206](https://github.com/SienkLogic/plan-build-run/commit/6f2a2206))
918
+ * Fix remaining require paths in hooks/ copies ([7caeac79](https://github.com/SienkLogic/plan-build-run/commit/7caeac79))
919
+ * Restore correct require paths in hooks/ copies ([51813db6](https://github.com/SienkLogic/plan-build-run/commit/51813db6))
920
+ * Sync config-schema.json and check-plan-format.js copies ([7d0f312c](https://github.com/SienkLogic/plan-build-run/commit/7d0f312c))
921
+ * Correct intel.cjs require path in plugins/ progress-tracker ([eee39941](https://github.com/SienkLogic/plan-build-run/commit/eee39941))
922
+ * Wire intel queue into PostToolUse dispatch chain ([2c5d8cea](https://github.com/SienkLogic/plan-build-run/commit/2c5d8cea))
923
+ * Update suggest-compact.js to use adaptive thresholds from getEffectiveThresholds ([8527646c](https://github.com/SienkLogic/plan-build-run/commit/8527646c))
924
+ * Add context ledger functions to track-context-budget.js ([539476ad](https://github.com/SienkLogic/plan-build-run/commit/539476ad))
313
925
 
314
- ### Bug Fixes
926
+ ### Plugin
315
927
 
316
- * **tools:** add --repo flag to gh pr merge in release workflow ([4923c81](https://github.com/SienkLogic/plan-build-run/commit/4923c811244092a322c331c7f10dcb0f855a8177))
317
- * **tools:** add milestone routing to explore skill completion ([57c3d9d](https://github.com/SienkLogic/plan-build-run/commit/57c3d9daea154b4bfb9ebe69ad1a09a8c617412d))
318
- * **tools:** enforce quick task directory creation with CRITICAL markers and hook validation ([c7d61ba](https://github.com/SienkLogic/plan-build-run/commit/c7d61ba333423a228d930ccd6e7d63688f8cbb58))
928
+ * Add 18 missing command registrations and CI sync test ([76d4ab5f](https://github.com/SienkLogic/plan-build-run/commit/76d4ab5f))
319
929
 
320
- ## [2.4.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.4.0...plan-build-run-v2.4.1) (2026-02-19)
930
+ ### Skills
321
931
 
932
+ * Create /pbr:ui-review skill and command registration ([4a6c1144](https://github.com/SienkLogic/plan-build-run/commit/4a6c1144))
933
+ * Create /pbr:ui-phase skill and command registration ([4900272f](https://github.com/SienkLogic/plan-build-run/commit/4900272f))
934
+ * Create /pbr:profile-user skill with session analysis and questionnaire fallback ([c313e457](https://github.com/SienkLogic/plan-build-run/commit/c313e457))
935
+ * Add milestone branch handling to build SKILL.md Step 1 and Step 8d ([fc2a2502](https://github.com/SienkLogic/plan-build-run/commit/fc2a2502))
936
+ * Add milestone branch creation and merge logic to milestone SKILL.md ([6de017a8](https://github.com/SienkLogic/plan-build-run/commit/6de017a8))
937
+ * Add phase branch creation and merge logic to build SKILL.md ([7b5ae499](https://github.com/SienkLogic/plan-build-run/commit/7b5ae499))
938
+ * Add --through flag parsing and multi_phase config gate to plan skill ([733e92f5](https://github.com/SienkLogic/plan-build-run/commit/733e92f5))
939
+ * Add autonomous command registration and sync skill copy ([72edac73](https://github.com/SienkLogic/plan-build-run/commit/72edac73))
940
+ * Create /pbr:autonomous skill with phase chaining loop ([7ad3ddd0](https://github.com/SienkLogic/plan-build-run/commit/7ad3ddd0))
941
+ * Enhance checkpoint auto-resolve with config-driven resolution in build skill ([be60bb15](https://github.com/SienkLogic/plan-build-run/commit/be60bb15))
942
+ * Add --auto flag parsing, gate suppression, and auto-advance chaining to 5 skills ([fc173d11](https://github.com/SienkLogic/plan-build-run/commit/fc173d11))
943
+ * Create /pbr:intel skill and command registration ([7065ef9c](https://github.com/SienkLogic/plan-build-run/commit/7065ef9c))
944
+ * Add inline execution gate to build skill Step 6a ([79e81b8c](https://github.com/SienkLogic/plan-build-run/commit/79e81b8c))
945
+ * Add phase boundary clear protocol to build skill completion output ([6acf2ad7](https://github.com/SienkLogic/plan-build-run/commit/6acf2ad7))
322
946
 
323
- ### Bug Fixes
947
+ ### Templates
324
948
 
325
- * **tools:** add pull_request trigger to CI so branch protection checks pass ([6e7ada4](https://github.com/SienkLogic/plan-build-run/commit/6e7ada4cf1e24e05ddace4706d7ddee527bde81a))
326
-
327
- ## [2.4.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.3.1...plan-build-run-v2.4.0) (2026-02-19)
328
-
329
-
330
- ### Features
331
-
332
- * **tools:** add GitHub Copilot CLI plugin port ([3977261](https://github.com/SienkLogic/plan-build-run/commit/39772618479551a58123d08d99cbcb1178a0cd2a))
333
- * **tools:** archive milestones into versioned directories with phase migration ([206b925](https://github.com/SienkLogic/plan-build-run/commit/206b925dd6692131f0d9127d10cd07208c777e40))
334
-
335
-
336
- ### Bug Fixes
337
-
338
- * **tools:** parse simple two-column roadmap table in dashboard ([f881004](https://github.com/SienkLogic/plan-build-run/commit/f8810045739ffeaf29a495f824bc34828c8e6c4d))
339
- * **tools:** resolve lint errors in cross-plugin compat tests ([731efb2](https://github.com/SienkLogic/plan-build-run/commit/731efb221cf630a697a48bf732eed736b9514b1c))
340
- * **tools:** sync dashboard skill paths and missing templates across all plugins ([ee7d770](https://github.com/SienkLogic/plan-build-run/commit/ee7d770c09f8dd7da1b1b9f76d162f0e87fc58a5))
341
-
342
-
343
- ### Documentation
949
+ * Add new config sections to config.json.tmpl ([9111ce29](https://github.com/SienkLogic/plan-build-run/commit/9111ce29))
950
+
951
+ ### Testing
952
+
953
+ * Update counts for new agents/skills/commands from v2.0 milestone ([c01b1812](https://github.com/SienkLogic/plan-build-run/commit/c01b1812))
954
+ * Update migrate tests for schema_version 3 ([008d42d6](https://github.com/SienkLogic/plan-build-run/commit/008d42d6))
955
+
956
+ ### Other
957
+
958
+ * Add developer_profile config properties to schema ([b74d2b4f](https://github.com/SienkLogic/plan-build-run/commit/b74d2b4f))
959
+ * Add multi-phase planning loop with accumulated context and cross-phase conflict detection ([25393a1f](https://github.com/SienkLogic/plan-build-run/commit/25393a1f))
960
+ * Add speculative planning to build Step 8e and sync copies ([ca4f8d5a](https://github.com/SienkLogic/plan-build-run/commit/ca4f8d5a))
961
+ * Add confidence-gated verification skip to build Step 7 ([5894bce6](https://github.com/SienkLogic/plan-build-run/commit/5894bce6))
962
+ * Add phase replay enrichment to build Step 6d ([4de2d259](https://github.com/SienkLogic/plan-build-run/commit/4de2d259))
963
+ * Intel queue module with config gating, deduplication, and skip patterns ([deb15898](https://github.com/SienkLogic/plan-build-run/commit/deb15898))
964
+ * Add intel.cjs library module with query, status, diff, and update operations ([821df94b](https://github.com/SienkLogic/plan-build-run/commit/821df94b))
965
+ * Add inline execution decision gate module ([e153d331](https://github.com/SienkLogic/plan-build-run/commit/e153d331))
966
+ * Add getAdaptiveThresholds and getEffectiveThresholds to context-bridge ([8cabf2f7](https://github.com/SienkLogic/plan-build-run/commit/8cabf2f7))
967
+ * Add v2-to-v3 schema migration in migrate.cjs ([8060d301](https://github.com/SienkLogic/plan-build-run/commit/8060d301))
968
+ * Add scope inference and PBR rebranding to changelog cleaner ([76ce001b](https://github.com/SienkLogic/plan-build-run/commit/76ce001b))
969
+ * Add PBR-to-PBR rebranding to changelog cleaning script ([4cfaf37d](https://github.com/SienkLogic/plan-build-run/commit/4cfaf37d))
970
+
971
+ ## [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
972
+
973
+ ### Context Management
974
+
975
+ * Add compact-first cycling, pane borders, two-line status bar, session search ([0cc3ee99](https://github.com/SienkLogic/plan-build-run/commit/0cc3ee99))
976
+
977
+ ## [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
978
+
979
+ ### CI/CD
980
+
981
+ * Add release concurrency, npm publish guard, and Windows perf tolerance ([15df70c5](https://github.com/SienkLogic/plan-build-run/commit/15df70c5))
982
+
983
+ ## [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
984
+
985
+ ### Skills
986
+
987
+ * Add /pbr:release skill and changelog generation to milestone complete ([a1b6207d](https://github.com/SienkLogic/plan-build-run/commit/a1b6207d))
988
+
989
+ ## [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
990
+
991
+ ### Other
992
+
993
+ * Restore and enhance pbr-tmux with watch, multi, context-aware cycling ([d16400db](https://github.com/SienkLogic/plan-build-run/commit/d16400db))
994
+
995
+ ## [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
996
+
997
+ ### Other
998
+
999
+ * Update validate script to use plugins/pbr/ as plugin root ([d77b233b](https://github.com/SienkLogic/plan-build-run/commit/d77b233b))
1000
+
1001
+ ## [2.1.0](https://github.com/SienkLogic/plan-build-run/commits/plan-build-run-v2.1.0) — 2026-03-16
1002
+
1003
+ ### Agents
1004
+
1005
+ * Scale synthesizer, codebase-mapper, plan-checker, integration-checker budgets for 1M ([8d37be02](https://github.com/SienkLogic/plan-build-run/commit/8d37be02))
1006
+ * Scale planner, executor, debugger, verifier budgets for 1M context ([13db078a](https://github.com/SienkLogic/plan-build-run/commit/13db078a))
1007
+ * Add cross-phase verification mode to verifier agent ([8b676c6f](https://github.com/SienkLogic/plan-build-run/commit/8b676c6f))
1008
+ * Scale researcher cycles and output budgets for 1M context ([b2abaaf1](https://github.com/SienkLogic/plan-build-run/commit/b2abaaf1))
1009
+ * Update all 14 agents with context-aware checkpoint rules ([bdbdfc43](https://github.com/SienkLogic/plan-build-run/commit/bdbdfc43))
1010
+ * Standardize agent spawn types across all workflows ([ec5617c7](https://github.com/SienkLogic/plan-build-run/commit/ec5617c7))
1011
+ * Add skills frontmatter and hooks examples to all agents ([cbe372a4](https://github.com/SienkLogic/plan-build-run/commit/cbe372a4))
1012
+ * Extend anti-heredoc instruction to all file-writing agents ([1a1acd52](https://github.com/SienkLogic/plan-build-run/commit/1a1acd52))
1013
+ * Add request_user_input mapping, multi-agent config, and agent role generation ([1455931f](https://github.com/SienkLogic/plan-build-run/commit/1455931f))
1014
+ * 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))
1015
+ * Add analysis paralysis guard, exhaustive cross-check, and task-level TDD (#736) ([aaea14ef](https://github.com/SienkLogic/plan-build-run/commit/aaea14ef))
1016
+ * Support both `.claude/skills/` and `.agents/skills/` for skill discovery (#759) ([eb1388c2](https://github.com/SienkLogic/plan-build-run/commit/eb1388c2))
1017
+ * Propagate phase_req_ids from ROADMAP to workflow agents (#684) (#702) ([ea3c22d3](https://github.com/SienkLogic/plan-build-run/commit/ea3c22d3))
1018
+ * Add project CLAUDE.md discovery to subagent spawn points ([8fd7d0b6](https://github.com/SienkLogic/plan-build-run/commit/8fd7d0b6))
1019
+ * Add project skill discovery to subagent spawn points ([270b6c4a](https://github.com/SienkLogic/plan-build-run/commit/270b6c4a))
1020
+ * Use inline Task() syntax for map-codebase agent spawning ([f77252cc](https://github.com/SienkLogic/plan-build-run/commit/f77252cc))
1021
+ * Executor updates ROADMAP.md and REQUIREMENTS.md per-plan ([1764abc6](https://github.com/SienkLogic/plan-build-run/commit/1764abc6))
1022
+ * Escape shell variables in agent bodies for Gemini CLI ([e449c5af](https://github.com/SienkLogic/plan-build-run/commit/e449c5af))
1023
+ * Convert general-purpose subagent to OpenCode's "general" ([474b75ea](https://github.com/SienkLogic/plan-build-run/commit/474b75ea))
1024
+ * Add scope boundary and fix attempt limit to executor (closes #490) ([8b75531b](https://github.com/SienkLogic/plan-build-run/commit/8b75531b))
1025
+ * Use Write tool for file creation to prevent settings.local.json corruption ([c4ea3589](https://github.com/SienkLogic/plan-build-run/commit/c4ea3589))
1026
+ * Return 'inherit' instead of 'opus' for model resolution (#558) ([2b9951b9](https://github.com/SienkLogic/plan-build-run/commit/2b9951b9))
1027
+ * Add Write tool to pbr-verifier and document verifier bug root cause (#545) ([173ff7a0](https://github.com/SienkLogic/plan-build-run/commit/173ff7a0))
1028
+ * Explicitly specify subagent_type="pbr-executor" ([42495068](https://github.com/SienkLogic/plan-build-run/commit/42495068))
1029
+ * Researcher agent always writes RESEARCH.md regardless of commit_docs ([161aa611](https://github.com/SienkLogic/plan-build-run/commit/161aa611))
1030
+ * Pass CONTEXT.md to all downstream agents ([32571390](https://github.com/SienkLogic/plan-build-run/commit/32571390))
1031
+ * Gemini CLI agent loading errors (#347) ([5660b6fc](https://github.com/SienkLogic/plan-build-run/commit/5660b6fc))
1032
+ * Use general-purpose agent for MCP-dependent subagents ([314916ba](https://github.com/SienkLogic/plan-build-run/commit/314916ba))
1033
+ * Add model profiles for PBR agents ([4218f866](https://github.com/SienkLogic/plan-build-run/commit/4218f866))
1034
+ * Add workflow agent settings to project init ([fbd5068b](https://github.com/SienkLogic/plan-build-run/commit/fbd5068b))
1035
+ * Implement pbr-executor spawn for quick mode ([563bcdf7](https://github.com/SienkLogic/plan-build-run/commit/563bcdf7))
1036
+ * Implement pbr-planner spawn for quick mode ([58bd6462](https://github.com/SienkLogic/plan-build-run/commit/58bd6462))
1037
+ * Correct agent name in research-phase heading ([92b48937](https://github.com/SienkLogic/plan-build-run/commit/92b48937))
1038
+ * Remove hardcoded 2025 year from search query examples ([6ad1d0a3](https://github.com/SienkLogic/plan-build-run/commit/6ad1d0a3))
1039
+ * Add pbr-meta subagent for instant PBR expertise ([694bd151](https://github.com/SienkLogic/plan-build-run/commit/694bd151))
1040
+ * Remove dead pbr-researcher agent references (#180) ([a6f7ff2e](https://github.com/SienkLogic/plan-build-run/commit/a6f7ff2e))
1041
+ * Update agent output collection method ([fe94aaa0](https://github.com/SienkLogic/plan-build-run/commit/fe94aaa0))
1042
+ * Consistent zero-padding and file naming across agents ([339e0613](https://github.com/SienkLogic/plan-build-run/commit/339e0613))
1043
+ * Remove commit capability from project researcher agent ([1f8c112f](https://github.com/SienkLogic/plan-build-run/commit/1f8c112f))
1044
+ * Synthesizer commits all research files together ([3ca4f0a4](https://github.com/SienkLogic/plan-build-run/commit/3ca4f0a4))
1045
+ * Add pbr-research-synthesizer agent for SUMMARY.md creation ([1d155e97](https://github.com/SienkLogic/plan-build-run/commit/1d155e97))
1046
+ * Integrate research into plan-phase with specialized agents ([2144960c](https://github.com/SienkLogic/plan-build-run/commit/2144960c))
1047
+ * Add planner -> checker verification loop to plan-phase ([fb0ba884](https://github.com/SienkLogic/plan-build-run/commit/fb0ba884))
1048
+ * Add revision_mode section to pbr-planner ([6b31a920](https://github.com/SienkLogic/plan-build-run/commit/6b31a920))
1049
+ * Create pbr-plan-checker agent ([47eab1a2](https://github.com/SienkLogic/plan-build-run/commit/47eab1a2))
1050
+ * Create planner-subagent-prompt.md template ([70fa2ad7](https://github.com/SienkLogic/plan-build-run/commit/70fa2ad7))
1051
+ * Create pbr-planner agent file ([1f45befe](https://github.com/SienkLogic/plan-build-run/commit/1f45befe))
1052
+ * Remove zombie pbr-milestone-auditor agent ([32e68cde](https://github.com/SienkLogic/plan-build-run/commit/32e68cde))
1053
+ * Add dedicated codebase mapper agent ([411b5a36](https://github.com/SienkLogic/plan-build-run/commit/411b5a36))
1054
+ * Add research-subagent-prompt.md template ([faaeae25](https://github.com/SienkLogic/plan-build-run/commit/faaeae25))
1055
+ * Create pbr-researcher agent with research methodology ([2f8b5517](https://github.com/SienkLogic/plan-build-run/commit/2f8b5517))
1056
+ * Create pbr-debugger agent with consolidated debugging expertise ([7cefaf11](https://github.com/SienkLogic/plan-build-run/commit/7cefaf11))
1057
+ * Include agents folder in npm package ([d07ef333](https://github.com/SienkLogic/plan-build-run/commit/d07ef333))
1058
+ * Add pbr-verifier subagent for phase goal verification ([f3f6707c](https://github.com/SienkLogic/plan-build-run/commit/f3f6707c))
1059
+ * Update remaining general-purpose refs to pbr-executor ([82c522b8](https://github.com/SienkLogic/plan-build-run/commit/82c522b8))
1060
+ * Add pbr-executor subagent with dedicated plan execution logic ([b2646c89](https://github.com/SienkLogic/plan-build-run/commit/b2646c89))
1061
+ * Subagent isolation for investigation with checkpoint support ([00208b71](https://github.com/SienkLogic/plan-build-run/commit/00208b71))
1062
+ * Replace resume with fresh continuation agents ([69300f97](https://github.com/SienkLogic/plan-build-run/commit/69300f97))
1063
+ * Remove subagent-only context from orchestrator ([0dd4cedf](https://github.com/SienkLogic/plan-build-run/commit/0dd4cedf))
1064
+ * Add checkpoint pause/resume for spawned agents ([72da23de](https://github.com/SienkLogic/plan-build-run/commit/72da23de))
1065
+ * Add one-subagent-per-plan constraint ([b810d1dd](https://github.com/SienkLogic/plan-build-run/commit/b810d1dd))
1066
+ * Add /pbr:status for parallel agent monitoring ([52ce9811](https://github.com/SienkLogic/plan-build-run/commit/52ce9811))
1067
+ * Add parallel execution examples to agent-history ([cc7e0788](https://github.com/SienkLogic/plan-build-run/commit/cc7e0788))
1068
+ * Update agent-history schema to v1.2 ([eaed8822](https://github.com/SienkLogic/plan-build-run/commit/eaed8822))
1069
+ * Add subagent resume capability ([6ba85071](https://github.com/SienkLogic/plan-build-run/commit/6ba85071))
1070
+ * Implement parallel Explore agent orchestration ([8a0dcd66](https://github.com/SienkLogic/plan-build-run/commit/8a0dcd66))
1071
+ * Research subagent prompt templates ([08539ffd](https://github.com/SienkLogic/plan-build-run/commit/08539ffd))
1072
+
1073
+ ### CI/CD
1074
+
1075
+ * Plan-Build-Run v2.0.0 — structured development workflow for Claude Code ([99ec00a0](https://github.com/SienkLogic/plan-build-run/commit/99ec00a0))
1076
+ * Complete toPosixPath coverage for Windows output paths ([15226feb](https://github.com/SienkLogic/plan-build-run/commit/15226feb))
1077
+ * Propagate coverage env in cross-platform test runner ([02a53197](https://github.com/SienkLogic/plan-build-run/commit/02a53197))
1078
+ * Cross-platform test runner for Windows glob expansion ([ccb8ae1d](https://github.com/SienkLogic/plan-build-run/commit/ccb8ae1d))
1079
+ * Use bash shell on Windows for glob expansion in test steps ([ffc1a2ef](https://github.com/SienkLogic/plan-build-run/commit/ffc1a2ef))
1080
+ * Pin action SHAs and enforce coverage on all events ([f9fc2a3f](https://github.com/SienkLogic/plan-build-run/commit/f9fc2a3f))
1081
+ * Add Node 18 skip condition for c8 v11 coverage step ([89649912](https://github.com/SienkLogic/plan-build-run/commit/89649912))
1082
+ * Add c8 coverage tooling with 70% line threshold ([97d2136c](https://github.com/SienkLogic/plan-build-run/commit/97d2136c))
1083
+ * Add CI status badge to README ([ad7c79aa](https://github.com/SienkLogic/plan-build-run/commit/ad7c79aa))
1084
+ * Create GitHub Actions test workflow ([9aa96957](https://github.com/SienkLogic/plan-build-run/commit/9aa96957))
1085
+ * Add auto-advance pipeline (--auto flag + workflow.auto_advance config) ([ed176840](https://github.com/SienkLogic/plan-build-run/commit/ed176840))
1086
+ * Delegate deterministic workflow operations to pbr-tools CLI ([36f5bb3d](https://github.com/SienkLogic/plan-build-run/commit/36f5bb3d))
1087
+ * Commit package-lock.json for reproducible builds ([1cf19751](https://github.com/SienkLogic/plan-build-run/commit/1cf19751))
1088
+ * Add CI/CD and release automation ([a3a16be2](https://github.com/SienkLogic/plan-build-run/commit/a3a16be2))
1089
+ * Add model_profile config and clarify workflow questions ([e7ceaf64](https://github.com/SienkLogic/plan-build-run/commit/e7ceaf64))
1090
+ * Add /pbr:settings command for workflow toggles ([cffb3f24](https://github.com/SienkLogic/plan-build-run/commit/cffb3f24))
1091
+ * Add commit_docs option to workflow preferences ([a1935c2d](https://github.com/SienkLogic/plan-build-run/commit/a1935c2d))
1092
+ * Remove /pbr:research-phase from workflow suggestions ([15d4e270](https://github.com/SienkLogic/plan-build-run/commit/15d4e270))
1093
+ * Add deviation rules, commit rules, and workflow references ([46cf4b11](https://github.com/SienkLogic/plan-build-run/commit/46cf4b11))
1094
+ * Add read_parallelization_config step to plan-phase workflow ([8e67241e](https://github.com/SienkLogic/plan-build-run/commit/8e67241e))
1095
+ * Create execute-phase.md workflow structure ([af7720c9](https://github.com/SienkLogic/plan-build-run/commit/af7720c9))
1096
+ * Create verify-work workflow ([a9a9efff](https://github.com/SienkLogic/plan-build-run/commit/a9a9efff))
1097
+ * Add git commit step to map-codebase workflow ([21387f8f](https://github.com/SienkLogic/plan-build-run/commit/21387f8f))
1098
+ * /pbr:map-codebase command and workflow skeleton ([cfde2916](https://github.com/SienkLogic/plan-build-run/commit/cfde2916))
1099
+ * /pbr:create-roadmap command with research-aware workflow ([a3c35145](https://github.com/SienkLogic/plan-build-run/commit/a3c35145))
1100
+
1101
+ ### CLI Tools
1102
+
1103
+ * Add context_window_tokens to portableKeys in config.js and config.cjs ([16893262](https://github.com/SienkLogic/plan-build-run/commit/16893262))
1104
+ * Support both bold and plain field formats in all state.cjs functions ([8c017034](https://github.com/SienkLogic/plan-build-run/commit/8c017034))
1105
+ * Preserve multi-word commit messages in CLI router ([4155e673](https://github.com/SienkLogic/plan-build-run/commit/4155e673))
1106
+ * Add YAML frontmatter sync to STATE.md for machine readability ([0ca1a59a](https://github.com/SienkLogic/plan-build-run/commit/0ca1a59a))
1107
+ * Map requirements-completed frontmatter in summary-extract (#627) (#716) ([0176a3ec](https://github.com/SienkLogic/plan-build-run/commit/0176a3ec))
1108
+ * Frontmatter CRUD, verification suite, template fill, state progression (#485) ([6a2d1f1b](https://github.com/SienkLogic/plan-build-run/commit/6a2d1f1b))
1109
+ * Use frontmatter for categorization and wave calculation ([5c8e5dff](https://github.com/SienkLogic/plan-build-run/commit/5c8e5dff))
1110
+ * Read parallelization frontmatter in execute-phase ([9fcc2a44](https://github.com/SienkLogic/plan-build-run/commit/9fcc2a44))
1111
+ * Add parallelization frontmatter to write_phase_prompt ([31a77ae1](https://github.com/SienkLogic/plan-build-run/commit/31a77ae1))
1112
+ * Add parallelization frontmatter to phase-prompt template ([560ef346](https://github.com/SienkLogic/plan-build-run/commit/560ef346))
1113
+ * Intelligent context assembly via frontmatter dependency graph ([b26cbe69](https://github.com/SienkLogic/plan-build-run/commit/b26cbe69))
1114
+ * YAML frontmatter schema with dependency graph metadata enabling automatic context assembly ([3307c05f](https://github.com/SienkLogic/plan-build-run/commit/3307c05f))
1115
+
1116
+ ### Configuration
1117
+
1118
+ * Add user-level default settings via ~/.claude/defaults.json (closes #492) ([37bb14ea](https://github.com/SienkLogic/plan-build-run/commit/37bb14ea))
1119
+ * Add per-agent model overrides (#510) ([a5caf919](https://github.com/SienkLogic/plan-build-run/commit/a5caf919))
1120
+ * Auto-create config.json when missing (#264) ([4dff9899](https://github.com/SienkLogic/plan-build-run/commit/4dff9899))
1121
+ * Split new-project to only create PROJECT.md + config.json ([5182cec7](https://github.com/SienkLogic/plan-build-run/commit/5182cec7))
1122
+
1123
+ ### Context Management
1124
+
1125
+ * Scale context-bridge and lib/context thresholds from config ([8c6b6e9e](https://github.com/SienkLogic/plan-build-run/commit/8c6b6e9e))
1126
+ * Scale context bar to show 100% at actual 80% limit ([87b2cd0e](https://github.com/SienkLogic/plan-build-run/commit/87b2cd0e))
1127
+ * TDD features use dedicated plans for full context quality ([85f0ea5c](https://github.com/SienkLogic/plan-build-run/commit/85f0ea5c))
1128
+
1129
+ ### Hooks
1130
+
1131
+ * Apply threshold scaling to hooks/ copies and fix config cache paths ([52e781c3](https://github.com/SienkLogic/plan-build-run/commit/52e781c3))
1132
+ * Add allow logging to PreToolUse dispatch scripts for visibility ([b7318288](https://github.com/SienkLogic/plan-build-run/commit/b7318288))
1133
+ * Scale track-context-budget and suggest-compact from config ([86fd842c](https://github.com/SienkLogic/plan-build-run/commit/86fd842c))
1134
+ * Make context monitor advisory instead of imperative ([07f44cc1](https://github.com/SienkLogic/plan-build-run/commit/07f44cc1))
1135
+ * Respect CLAUDE_CONFIG_DIR for custom config directories ([90e7d308](https://github.com/SienkLogic/plan-build-run/commit/90e7d308))
1136
+ * Add stdin timeout guard to prevent hook errors ([7554503b](https://github.com/SienkLogic/plan-build-run/commit/7554503b))
1137
+ * Correct statusline context scaling to match autocompact buffer ([59dfad97](https://github.com/SienkLogic/plan-build-run/commit/59dfad97))
1138
+ * Use AfterTool instead of PostToolUse for Gemini CLI hooks ([630a705b](https://github.com/SienkLogic/plan-build-run/commit/630a705b))
1139
+ * Context window monitor hook with agent-side WARNING/CRITICAL alerts ([7542d364](https://github.com/SienkLogic/plan-build-run/commit/7542d364))
1140
+ * Quote config dir in hook templates for local installs (#605) ([c5fbd051](https://github.com/SienkLogic/plan-build-run/commit/c5fbd051))
1141
+ * Template hook paths for OpenCode/Gemini runtimes (#585) ([9a7bb22e](https://github.com/SienkLogic/plan-build-run/commit/9a7bb22e))
1142
+ * Build hooks/dist on the fly for dev installs (#413) ([e146b084](https://github.com/SienkLogic/plan-build-run/commit/e146b084))
1143
+ * Add detached: true to SessionStart hook spawn for Windows ([1344bd8f](https://github.com/SienkLogic/plan-build-run/commit/1344bd8f))
1144
+ * Use absolute paths for hook commands on Windows (#207) ([a1d60b71](https://github.com/SienkLogic/plan-build-run/commit/a1d60b71))
1145
+ * Rename statusline.js to pbr-statusline.js for consistent hook naming ([900fc95e](https://github.com/SienkLogic/plan-build-run/commit/900fc95e))
1146
+ * Simplify SessionStart hook + gitignore intel/ ([9099d484](https://github.com/SienkLogic/plan-build-run/commit/9099d484))
1147
+ * Add Stop hook to prune deleted files ([fa48a13c](https://github.com/SienkLogic/plan-build-run/commit/fa48a13c))
1148
+ * Make PostToolUse hook opt-in only ([f0b8afe7](https://github.com/SienkLogic/plan-build-run/commit/f0b8afe7))
1149
+ * Create SessionStart context injection hook ([a3521161](https://github.com/SienkLogic/plan-build-run/commit/a3521161))
1150
+ * Update check now finds VERSION in local project installs (#166) ([c033a85e](https://github.com/SienkLogic/plan-build-run/commit/c033a85e))
1151
+ * Prevent console window flash on Windows (#167) ([3fb6bfbb](https://github.com/SienkLogic/plan-build-run/commit/3fb6bfbb))
1152
+ * Windows hook support via Node.js conversion ([967734df](https://github.com/SienkLogic/plan-build-run/commit/967734df))
1153
+ * Remove stale STATE.md from notify hook ([b0da21ba](https://github.com/SienkLogic/plan-build-run/commit/b0da21ba))
1154
+ * Match STATE.md field names in notify hook ([055cc24e](https://github.com/SienkLogic/plan-build-run/commit/055cc24e))
1155
+ * Add cross-platform completion notification hook ([35989f20](https://github.com/SienkLogic/plan-build-run/commit/35989f20))
1156
+
1157
+ ### Plugin
1158
+
1159
+ * Remove "execution" from plan-phase description to fix autocomplete (#518) ([7ed1ec89](https://github.com/SienkLogic/plan-build-run/commit/7ed1ec89))
1160
+
1161
+ ### Skills
1162
+
1163
+ * Add pre-spawn conflict detection to build skill at 1M context ([ff8a80e3](https://github.com/SienkLogic/plan-build-run/commit/ff8a80e3))
1164
+ * Surface cross-phase findings in review and build skills ([f9726d26](https://github.com/SienkLogic/plan-build-run/commit/f9726d26))
1165
+ * Add multi-phase lookahead to continue skill at 1M context ([089f0691](https://github.com/SienkLogic/plan-build-run/commit/089f0691))
1166
+ * Update build, plan, review, explore skills with 1M read depth ([c3327a19](https://github.com/SienkLogic/plan-build-run/commit/c3327a19))
1167
+ * Add context-aware read depth to shared skill fragments ([ee2b33b5](https://github.com/SienkLogic/plan-build-run/commit/ee2b33b5))
1168
+ * Add missing skills frontmatter to pbr-nyquist-auditor ([73efecca](https://github.com/SienkLogic/plan-build-run/commit/73efecca))
1169
+ * Use Skill instead of Task for auto-advance phase transitions ([b3e3e3dd](https://github.com/SienkLogic/plan-build-run/commit/b3e3e3dd))
1170
+ * Auto-advance chain broken — Skills don't resolve inside Task subagents (#669) ([131f24b5](https://github.com/SienkLogic/plan-build-run/commit/131f24b5))
1171
+ * Add codex skills-first installer runtime ([5a733dca](https://github.com/SienkLogic/plan-build-run/commit/5a733dca))
1172
+
1173
+ ### Templates
1174
+
1175
+ * Add context_window_tokens to config schemas and template ([1f66e155](https://github.com/SienkLogic/plan-build-run/commit/1f66e155))
1176
+ * Align resolve-model variable names with template placeholders (#737) ([b5bd9c2b](https://github.com/SienkLogic/plan-build-run/commit/b5bd9c2b))
1177
+ * Add parallelization config to config.json template ([8b8b5d62](https://github.com/SienkLogic/plan-build-run/commit/8b8b5d62))
1178
+ * Create UAT issues template ([654b066d](https://github.com/SienkLogic/plan-build-run/commit/654b066d))
1179
+ * Restore plan-format.md - output template, not instructional content ([1609618e](https://github.com/SienkLogic/plan-build-run/commit/1609618e))
1180
+ * Research-project command, workflow, and template ([c7a88a6a](https://github.com/SienkLogic/plan-build-run/commit/c7a88a6a))
1181
+
1182
+ ### Testing
1183
+
1184
+ * Auto-inject cold-start smoke test for server/db phases ([40be3b05](https://github.com/SienkLogic/plan-build-run/commit/40be3b05))
1185
+ * Remove MEDIUM severity test overfitting in config.test.cjs ([898b82de](https://github.com/SienkLogic/plan-build-run/commit/898b82de))
1186
+ * Remove HIGH severity test overfitting in 4 test files ([c9e73e9c](https://github.com/SienkLogic/plan-build-run/commit/c9e73e9c))
1187
+ * Add comprehensive validate-health test suite ([0342886e](https://github.com/SienkLogic/plan-build-run/commit/0342886e))
1188
+ * Add createTempGitProject helper to tests/helpers.cjs ([339966e2](https://github.com/SienkLogic/plan-build-run/commit/339966e2))
1189
+ * Add state-snapshot after test generation ([d9058210](https://github.com/SienkLogic/plan-build-run/commit/d9058210))
1190
+
1191
+ ### Other
1192
+
1193
+ * Guard agent_checkpoint_pct > 50 on context_window_tokens >= 500k ([73573af8](https://github.com/SienkLogic/plan-build-run/commit/73573af8))
1194
+ * Add agent_checkpoint_pct to config schema and profiles ([61e6778e](https://github.com/SienkLogic/plan-build-run/commit/61e6778e))
1195
+ * Resolve @file: protocol in all INIT consumers for Windows compatibility (#841) ([517ee0dc](https://github.com/SienkLogic/plan-build-run/commit/517ee0dc))
1196
+ * Add --discuss flag to /pbr:quick for lightweight pre-planning discussion (#861) ([a7c08bfb](https://github.com/SienkLogic/plan-build-run/commit/a7c08bfb))
1197
+ * Harden Nyquist defaults, add retroactive validation, compress prompts (#855) ([ef032bc8](https://github.com/SienkLogic/plan-build-run/commit/ef032bc8))
1198
+ * Replace $HOME/.claude paths for non-Claude runtimes ([e2b6179b](https://github.com/SienkLogic/plan-build-run/commit/e2b6179b))
1199
+ * Prevent auto_advance config from persisting across sessions ([609f7f3e](https://github.com/SienkLogic/plan-build-run/commit/609f7f3e))
1200
+ * Disambiguate local vs global install when CWD is HOME ([1c6f4fe1](https://github.com/SienkLogic/plan-build-run/commit/1c6f4fe1))
1201
+ * Compute wave numbers for gap closure plans ([dacd0bee](https://github.com/SienkLogic/plan-build-run/commit/dacd0bee))
1202
+ * Deduplicate extractField into shared helper with regex escaping ([641cdbda](https://github.com/SienkLogic/plan-build-run/commit/641cdbda))
1203
+ * Deduplicate phase filter and handle empty MILESTONES.md ([8b8d1074](https://github.com/SienkLogic/plan-build-run/commit/8b8d1074))
1204
+ * Escape reqId in regex patterns to prevent injection ([22fe139e](https://github.com/SienkLogic/plan-build-run/commit/22fe139e))
1205
+ * Break freeform answer loop in AskUserQuestion ([b0e5717e](https://github.com/SienkLogic/plan-build-run/commit/b0e5717e))
1206
+ * Derive total_phases from ROADMAP when phases lack directories ([e1b32778](https://github.com/SienkLogic/plan-build-run/commit/e1b32778))
1207
+ * Scope phase counting to current milestone ([b863ed6d](https://github.com/SienkLogic/plan-build-run/commit/b863ed6d))
1208
+ * Load prior context before gray area identification ([30ecb567](https://github.com/SienkLogic/plan-build-run/commit/30ecb567))
1209
+ * Replace echo with printf in shell snippets to prevent jq parse errors ([4010e3ff](https://github.com/SienkLogic/plan-build-run/commit/4010e3ff))
1210
+ * Detect runtime config directory instead of hardcoding .claude ([77dfd2e0](https://github.com/SienkLogic/plan-build-run/commit/77dfd2e0))
1211
+ * Support both bold and plain field formats in state parsing ([78eaabc3](https://github.com/SienkLogic/plan-build-run/commit/78eaabc3))
1212
+ * Prefer in-progress milestone marker in getMilestoneInfo ([81a6aaad](https://github.com/SienkLogic/plan-build-run/commit/81a6aaad))
1213
+ * Add ROADMAP.md fallback to cmdPhaseComplete next-phase scan ([4e00c500](https://github.com/SienkLogic/plan-build-run/commit/4e00c500))
1214
+ * Add --no-index to isGitIgnored for tracked file detection (#703) ([061dadfa](https://github.com/SienkLogic/plan-build-run/commit/061dadfa))
1215
+ * Clear both cache paths after update (#663) (#664) ([19ac77e2](https://github.com/SienkLogic/plan-build-run/commit/19ac77e2))
1216
+ * Statusline migration regex too broad, clobbers third-party statuslines (#670) ([dba401fe](https://github.com/SienkLogic/plan-build-run/commit/dba401fe))
1217
+ * Code-aware discuss phase with codebase scouting (#727) ([37582f8f](https://github.com/SienkLogic/plan-build-run/commit/37582f8f))
1218
+ * Escape regex metacharacters in stateExtractField (#741) ([ff3e2fd5](https://github.com/SienkLogic/plan-build-run/commit/ff3e2fd5))
1219
+ * Load model_overrides from config and use resolveModelInternal in CLI (#739) ([31c8a91e](https://github.com/SienkLogic/plan-build-run/commit/31c8a91e))
1220
+ * Load nyquist_validation from config (#740) ([93c9def0](https://github.com/SienkLogic/plan-build-run/commit/93c9def0))
1221
+ * Phase-plan-index returns null/empty for files_modified, objective, task_count (#734) ([3a417522](https://github.com/SienkLogic/plan-build-run/commit/3a417522))
1222
+ * Expect forward-slash paths in cmdInitTodos assertion ([011df21d](https://github.com/SienkLogic/plan-build-run/commit/011df21d))
1223
+ * Cross-platform path separators, JSON quoting, and dollar signs ([9c27da02](https://github.com/SienkLogic/plan-build-run/commit/9c27da02))
1224
+ * Insert MILESTONES.md entries in reverse chronological order ([732ea09f](https://github.com/SienkLogic/plan-build-run/commit/732ea09f))
1225
+ * Scope stats, accomplishments, and archive to current milestone phases ([367149d0](https://github.com/SienkLogic/plan-build-run/commit/367149d0))
1226
+ * GetMilestoneInfo() returns wrong version after milestone completion (#768) ([38c19466](https://github.com/SienkLogic/plan-build-run/commit/38c19466))
1227
+ * Load model_overrides from config and use resolveModelInternal in CLI ([752e0389](https://github.com/SienkLogic/plan-build-run/commit/752e0389))
1228
+ * Improve onboarding UX with /pbr:new-project as default command ([5cb2e740](https://github.com/SienkLogic/plan-build-run/commit/5cb2e740))
1229
+ * Planning improvements — PRD express path, interface-first planning, living retrospective (#644) ([3fddd62d](https://github.com/SienkLogic/plan-build-run/commit/3fddd62d))
1230
+ * Add standard project_context block ([2fc9b1d6](https://github.com/SienkLogic/plan-build-run/commit/2fc9b1d6))
1231
+ * Handle multi-level decimal phases and escape regex in phase operations (#720) ([bc774562](https://github.com/SienkLogic/plan-build-run/commit/bc774562))
1232
+ * Clamp progress bar percent to prevent RangeError crash (#715) ([3704829a](https://github.com/SienkLogic/plan-build-run/commit/3704829a))
1233
+ * Support --cwd override for state-snapshot ([3a56a207](https://github.com/SienkLogic/plan-build-run/commit/3a56a207))
1234
+ * Prevent workflows and templates from being incorrectly converted to TOML ([2c0db8ea](https://github.com/SienkLogic/plan-build-run/commit/2c0db8ea))
1235
+ * Add Nyquist validation layer to plan-phase pipeline ([e0f9c738](https://github.com/SienkLogic/plan-build-run/commit/e0f9c738))
1236
+ * Add option highlighting and gray area looping ([e3dda453](https://github.com/SienkLogic/plan-build-run/commit/e3dda453))
1237
+ * Create backup before STATE.md regeneration ([bf2f5710](https://github.com/SienkLogic/plan-build-run/commit/bf2f5710))
1238
+ * Install PBR commands as prompts for '/' menu discoverability ([db1d003d](https://github.com/SienkLogic/plan-build-run/commit/db1d003d))
1239
+ * Convert Task() calls to codex exec during install ([87c38734](https://github.com/SienkLogic/plan-build-run/commit/87c38734))
1240
+ * Universal phase number parsing with comparePhaseNum helper ([7461b3d2](https://github.com/SienkLogic/plan-build-run/commit/7461b3d2))
1241
+ * Tighten milestone audit requirements verification with 3-source cross-reference ([2f258956](https://github.com/SienkLogic/plan-build-run/commit/2f258956))
1242
+ * Close requirements verification loop and enforce MUST language ([9ef582ef](https://github.com/SienkLogic/plan-build-run/commit/9ef582ef))
1243
+ * Requirements tracking chain — strip brackets, add requirements field to plans and summaries ([cbf80941](https://github.com/SienkLogic/plan-build-run/commit/cbf80941))
1244
+ * Persist auto-advance to config and bypass checkpoints ([49936786](https://github.com/SienkLogic/plan-build-run/commit/49936786))
1245
+ * Warn when planning without user context or discussing after plans exist ([fc347d5c](https://github.com/SienkLogic/plan-build-run/commit/fc347d5c))
1246
+ * Wire --auto from new-project into phase chain ([b27034b7](https://github.com/SienkLogic/plan-build-run/commit/b27034b7))
1247
+ * Add --full flag for plan-checking and verification ([7510a8a8](https://github.com/SienkLogic/plan-build-run/commit/7510a8a8))
1248
+ * Chain phase execution across full milestone ([1dcedb63](https://github.com/SienkLogic/plan-build-run/commit/1dcedb63))
1249
+ * Add /pbr:health command for planning directory validation ([cb7d4dbc](https://github.com/SienkLogic/plan-build-run/commit/cb7d4dbc))
1250
+ * Respect commit_docs when merging branches in complete-milestone ([99c5c410](https://github.com/SienkLogic/plan-build-run/commit/99c5c410))
1251
+ * Add .gitkeep to phase directories for git tracking ([0f2a3faf](https://github.com/SienkLogic/plan-build-run/commit/0f2a3faf))
1252
+ * Use correct config path for local OpenCode installs ([0dde9798](https://github.com/SienkLogic/plan-build-run/commit/0dde9798))
1253
+ * Archive completed milestone phase directories (closes #489) ([41cb7455](https://github.com/SienkLogic/plan-build-run/commit/41cb7455))
1254
+ * Write large JSON payloads to tmpfile to prevent truncation (closes #493) ([8d977328](https://github.com/SienkLogic/plan-build-run/commit/8d977328))
1255
+ * Support #### heading depth in phase matching ([9aeafc0f](https://github.com/SienkLogic/plan-build-run/commit/9aeafc0f))
1256
+ * Normalize phase padding in insert command (closes #494) ([afb93a37](https://github.com/SienkLogic/plan-build-run/commit/afb93a37))
1257
+ * Rename pbr-tools.js to .cjs to prevent ESM conflicts (closes #495) ([24b933e0](https://github.com/SienkLogic/plan-build-run/commit/24b933e0))
1258
+ * Consistent phase transition routing through discuss-phase (#530) ([91e4ef77](https://github.com/SienkLogic/plan-build-run/commit/91e4ef77))
1259
+ * Deterministic ROADMAP progress table updates from disk (#537) ([c8827fed](https://github.com/SienkLogic/plan-build-run/commit/c8827fed))
1260
+ * Use ROADMAP Success Criteria instead of deriving truths from Goal (#538) ([4fb04287](https://github.com/SienkLogic/plan-build-run/commit/4fb04287))
1261
+ * Update REQUIREMENTS.md traceability when phase completes ([a142002d](https://github.com/SienkLogic/plan-build-run/commit/a142002d))
1262
+ * Update STATE.md after discuss-phase completes (#556) ([dcdb31cd](https://github.com/SienkLogic/plan-build-run/commit/dcdb31cd))
1263
+ * Enforce 12-char AskUserQuestion header limit (#559) ([765476ea](https://github.com/SienkLogic/plan-build-run/commit/765476ea))
1264
+ * Close parent UAT and debug artifacts after gap-closure phase (#580) ([dcace256](https://github.com/SienkLogic/plan-build-run/commit/dcace256))
1265
+ * Fall back to ROADMAP.md when phase directory missing (#521) ([b9f9ee98](https://github.com/SienkLogic/plan-build-run/commit/b9f9ee98))
1266
+ * Accept ## and ### phase headers, detect malformed ROADMAPs (#598, #599) ([7b140c2d](https://github.com/SienkLogic/plan-build-run/commit/7b140c2d))
1267
+ * Use {phase_num} instead of ambiguous {phase} for filenames (#601) ([d8638588](https://github.com/SienkLogic/plan-build-run/commit/d8638588))
1268
+ * Add package.json to prevent ESM inheritance (#602) ([51544460](https://github.com/SienkLogic/plan-build-run/commit/51544460))
1269
+ * Add git_tag config option to disable tagging on milestone completion (#532) ([430a7e4f](https://github.com/SienkLogic/plan-build-run/commit/430a7e4f))
1270
+ * Auto-migrate renamed statusline.js reference (#288) ([f4d6b30f](https://github.com/SienkLogic/plan-build-run/commit/f4d6b30f))
1271
+ * Verify-work defers diagnosis/planning to plan-phase --gaps (#502) ([25aeb443](https://github.com/SienkLogic/plan-build-run/commit/25aeb443))
1272
+ * Move resolved debug sessions to resolved/ folder (#497) ([ba279128](https://github.com/SienkLogic/plan-build-run/commit/ba279128))
1273
+ * Create feature branch before first commit in discuss/plan workflows (#512) ([c3c9d523](https://github.com/SienkLogic/plan-build-run/commit/c3c9d523))
1274
+ * Add --auto flag for unattended initialization ([7f490830](https://github.com/SienkLogic/plan-build-run/commit/7f490830))
1275
+ * Replace HEREDOC with literal newlines for Windows compatibility ([ced41d77](https://github.com/SienkLogic/plan-build-run/commit/ced41d77))
1276
+ * Persist research decision from new-milestone to config ([767bef64](https://github.com/SienkLogic/plan-build-run/commit/767bef64))
1277
+ * Add workaround for Claude Code classifyHandoffIfNeeded bug (#480) ([4072fd2b](https://github.com/SienkLogic/plan-build-run/commit/4072fd2b))
1278
+ * Preserve local patches across PBR updates (#481) ([ca03a061](https://github.com/SienkLogic/plan-build-run/commit/ca03a061))
1279
+ * Respect commit_docs=false in all .planning commit paths (#482) ([01c9115f](https://github.com/SienkLogic/plan-build-run/commit/01c9115f))
1280
+ * Normalize Windows backslashes in pbr-tools path prefix ([1c6a35f7](https://github.com/SienkLogic/plan-build-run/commit/1c6a35f7))
1281
+ * Add --include flag to init commands to eliminate redundant file reads ([fa81821d](https://github.com/SienkLogic/plan-build-run/commit/fa81821d))
1282
+ * Prevent installer from deleting opencode.json on parse errors (#475) ([6cf4a4e3](https://github.com/SienkLogic/plan-build-run/commit/6cf4a4e3))
1283
+ * Add context-optimizing parsing commands to pbr-tools (#473) ([6c537373](https://github.com/SienkLogic/plan-build-run/commit/6c537373))
1284
+ * Extract repetitive bash patterns into pbr-tools commands (#472) ([1b317dec](https://github.com/SienkLogic/plan-build-run/commit/1b317dec))
1285
+ * Add compound init commands and update workflows (#468) ([246d542c](https://github.com/SienkLogic/plan-build-run/commit/246d542c))
1286
+ * Add CLI utility for command extraction ([01ae939c](https://github.com/SienkLogic/plan-build-run/commit/01ae939c))
1287
+ * Remove PBR Memory system (not ready for release) ([cc3c6aca](https://github.com/SienkLogic/plan-build-run/commit/cc3c6aca))
1288
+ * Prevent API keys from being committed via map-codebase ([f53011c9](https://github.com/SienkLogic/plan-build-run/commit/f53011c9))
1289
+ * Add completion verification to prevent hallucinated success (#315) ([f380275e](https://github.com/SienkLogic/plan-build-run/commit/f380275e))
1290
+ * Update command respects local vs global install ([83845755](https://github.com/SienkLogic/plan-build-run/commit/83845755))
1291
+ * Statusline crash handling, color validation, git staging rules ([9d7ea9c1](https://github.com/SienkLogic/plan-build-run/commit/9d7ea9c1))
1292
+ * Update statusline.js reference during install (#392) ([074b2bcc](https://github.com/SienkLogic/plan-build-run/commit/074b2bcc))
1293
+ * Enforce context fidelity in planning pipeline (#391) ([ecbc692b](https://github.com/SienkLogic/plan-build-run/commit/ecbc692b))
1294
+ * Respect parallelization config setting (#379) ([4267c6cf](https://github.com/SienkLogic/plan-build-run/commit/4267c6cf))
1295
+ * Clarify ASCII box-drawing vs text content with diacritics (#289) ([2347fca3](https://github.com/SienkLogic/plan-build-run/commit/2347fca3))
1296
+ * Respect attribution.commit setting (compatible opencode) (#286) ([d1654960](https://github.com/SienkLogic/plan-build-run/commit/d1654960))
1297
+ * Add squash merge option for branching strategies ([5ee22e62](https://github.com/SienkLogic/plan-build-run/commit/5ee22e62))
1298
+ * Add Gemini support to installer (#301) ([5379832f](https://github.com/SienkLogic/plan-build-run/commit/5379832f))
1299
+ * Add unified branching strategy option ([197800e2](https://github.com/SienkLogic/plan-build-run/commit/197800e2))
1300
+ * Add /pbr:join-discord command ([6e2f46c9](https://github.com/SienkLogic/plan-build-run/commit/6e2f46c9))
1301
+ * Add --uninstall flag to remove PBR files ([12e6acbf](https://github.com/SienkLogic/plan-build-run/commit/12e6acbf))
1302
+ * Use *-CONTEXT.md glob for filename variants ([f059a6cf](https://github.com/SienkLogic/plan-build-run/commit/f059a6cf))
1303
+ * Use correct OpenCode config path (~/.config/opencode) (#233) ([707d4b47](https://github.com/SienkLogic/plan-build-run/commit/707d4b47))
1304
+ * Add interactive runtime selection prompt ([820f1086](https://github.com/SienkLogic/plan-build-run/commit/820f1086))
1305
+ * Auto-configure read permissions for PBR docs ([cfb9e261](https://github.com/SienkLogic/plan-build-run/commit/cfb9e261))
1306
+ * Remove backticks from slash commands in new-project output ([460f0d99](https://github.com/SienkLogic/plan-build-run/commit/460f0d99))
1307
+ * Escape/Ctrl+C cancels instead of installing globally ([67201cb0](https://github.com/SienkLogic/plan-build-run/commit/67201cb0))
1308
+ * Make installer work for opencode ([bf73de89](https://github.com/SienkLogic/plan-build-run/commit/bf73de89))
1309
+ * Update build script to use pbr-statusline.js ([cdad7b8a](https://github.com/SienkLogic/plan-build-run/commit/cdad7b8a))
1310
+ * Revise plan 05-02 based on checker feedback ([6e757aaa](https://github.com/SienkLogic/plan-build-run/commit/6e757aaa))
1311
+ * Address tech debt from milestone audit ([c1a86cad](https://github.com/SienkLogic/plan-build-run/commit/c1a86cad))
1312
+ * Revise plans based on checker feedback ([3230fdfd](https://github.com/SienkLogic/plan-build-run/commit/3230fdfd))
1313
+ * Inline file contents in Task prompts ([ce4fc96f](https://github.com/SienkLogic/plan-build-run/commit/ce4fc96f))
1314
+ * Add uncommitted planning mode (#107) ([1f18ec89](https://github.com/SienkLogic/plan-build-run/commit/1f18ec89))
1315
+ * Use numbered prefix for PLAN and SUMMARY files ([c1727a3b](https://github.com/SienkLogic/plan-build-run/commit/c1727a3b))
1316
+ * Create 90s-style HTML command reference page ([fc3287c8](https://github.com/SienkLogic/plan-build-run/commit/fc3287c8))
1317
+ * Create PBR commands HTML reference page ([deec75c8](https://github.com/SienkLogic/plan-build-run/commit/deec75c8))
1318
+ * Implement final commit and completion output ([942e6591](https://github.com/SienkLogic/plan-build-run/commit/942e6591))
1319
+ * Implement STATE.md Quick Tasks Completed table update ([2dbc802f](https://github.com/SienkLogic/plan-build-run/commit/2dbc802f))
1320
+ * Create quick.md command file with structure ([2b36394f](https://github.com/SienkLogic/plan-build-run/commit/2b36394f))
1321
+ * Clamp progress bar value to 0-100 range (#176) ([99362f1e](https://github.com/SienkLogic/plan-build-run/commit/99362f1e))
1322
+ * Validate empty --config-dir value (#177) ([80414a78](https://github.com/SienkLogic/plan-build-run/commit/80414a78))
1323
+ * Use consistent allowed-tools YAML format (#179) ([76cba3bf](https://github.com/SienkLogic/plan-build-run/commit/76cba3bf))
1324
+ * Handle non-TTY stdin and verify file installation ([c233f711](https://github.com/SienkLogic/plan-build-run/commit/c233f711))
1325
+ * Clean up orphaned pbr-notify.sh from previous versions ([6c435b3d](https://github.com/SienkLogic/plan-build-run/commit/6c435b3d))
1326
+ * Add --gaps-only flag for gap closure execution ([200e0047](https://github.com/SienkLogic/plan-build-run/commit/200e0047))
1327
+ * Clean install removes orphaned files ([acd62c0f](https://github.com/SienkLogic/plan-build-run/commit/acd62c0f))
1328
+ * Add offer_next section with routing templates ([54f2d560](https://github.com/SienkLogic/plan-build-run/commit/54f2d560))
1329
+ * Remove code blocks from output templates for proper markdown rendering ([8d199427](https://github.com/SienkLogic/plan-build-run/commit/8d199427))
1330
+ * Recommend discuss-phase before plan-phase in all next-step suggestions ([cfe237d4](https://github.com/SienkLogic/plan-build-run/commit/cfe237d4))
1331
+ * Recommend discuss-phase before plan-phase ([60ebda93](https://github.com/SienkLogic/plan-build-run/commit/60ebda93))
1332
+ * Normalize phase input at command entry points ([567bdd2e](https://github.com/SienkLogic/plan-build-run/commit/567bdd2e))
1333
+ * Phase directory matching and orphaned references ([a31f730f](https://github.com/SienkLogic/plan-build-run/commit/a31f730f))
1334
+ * Commit orchestrator corrections before verification ([12373d2f](https://github.com/SienkLogic/plan-build-run/commit/12373d2f))
1335
+ * Commit revised plans after checker feedback ([3e80a2a8](https://github.com/SienkLogic/plan-build-run/commit/3e80a2a8))
1336
+ * Hardcode read for CONTEXT.md ([d7463e2f](https://github.com/SienkLogic/plan-build-run/commit/d7463e2f))
1337
+ * Hardcode reads for CONTEXT.md and RESEARCH.md ([734134f4](https://github.com/SienkLogic/plan-build-run/commit/734134f4))
1338
+ * Add upstream CONTEXT.md awareness ([d1df08cf](https://github.com/SienkLogic/plan-build-run/commit/d1df08cf))
1339
+ * Show update indicator when new PBR version available ([7a451e64](https://github.com/SienkLogic/plan-build-run/commit/7a451e64))
1340
+ * Update ROADMAP.md placeholders after planning ([2569be69](https://github.com/SienkLogic/plan-build-run/commit/2569be69))
1341
+ * Don't surface user_setup in planning output ([d9625ed3](https://github.com/SienkLogic/plan-build-run/commit/d9625ed3))
1342
+ * Restore {phase}-{plan}-PLAN.md naming convention ([8c6e503c](https://github.com/SienkLogic/plan-build-run/commit/8c6e503c))
1343
+ * Add checkpoint box with clear action prompt ([2b797ed4](https://github.com/SienkLogic/plan-build-run/commit/2b797ed4))
1344
+ * Add PBR brand system for consistent UI ([daa54737](https://github.com/SienkLogic/plan-build-run/commit/daa54737))
1345
+ * Add explicit roadmap approval gate before committing ([6ae0923c](https://github.com/SienkLogic/plan-build-run/commit/6ae0923c))
1346
+ * Unify project initialization into single /pbr:new-project flow ([18351fe3](https://github.com/SienkLogic/plan-build-run/commit/18351fe3))
1347
+ * Remove premature research likelihood predictions from roadmap ([9875df57](https://github.com/SienkLogic/plan-build-run/commit/9875df57))
1348
+ * Intelligent gray area analysis with scope guardrails ([a7249ebe](https://github.com/SienkLogic/plan-build-run/commit/a7249ebe))
1349
+ * Run in forked context ([d45261e3](https://github.com/SienkLogic/plan-build-run/commit/d45261e3))
1350
+ * Add statusline with context usage, model, and current task ([159925c0](https://github.com/SienkLogic/plan-build-run/commit/159925c0))
1351
+ * Add update command with changelog display ([7865f123](https://github.com/SienkLogic/plan-build-run/commit/7865f123))
1352
+ * Add explicit MILESTONE-CONTEXT.md reference ([ac316e8f](https://github.com/SienkLogic/plan-build-run/commit/ac316e8f))
1353
+ * Batch UAT file writes instead of per-response ([8c66a716](https://github.com/SienkLogic/plan-build-run/commit/8c66a716))
1354
+ * Always route to execute-phase regardless of plan count ([09608820](https://github.com/SienkLogic/plan-build-run/commit/09608820))
1355
+ * Present research as equal option in routing ([794e0841](https://github.com/SienkLogic/plan-build-run/commit/794e0841))
1356
+ * Add Route F for between-milestones state ([d1c1c179](https://github.com/SienkLogic/plan-build-run/commit/d1c1c179))
1357
+ * Version MILESTONE-AUDIT.md and archive on completion ([60070b9b](https://github.com/SienkLogic/plan-build-run/commit/60070b9b))
1358
+ * Reuse previous must-haves on re-verification ([da95980d](https://github.com/SienkLogic/plan-build-run/commit/da95980d))
1359
+ * Include VERIFICATION.md in phase completion commit ([70cfd76c](https://github.com/SienkLogic/plan-build-run/commit/70cfd76c))
1360
+ * Recommend audit-milestone when milestone completes ([6b4f73ef](https://github.com/SienkLogic/plan-build-run/commit/6b4f73ef))
1361
+ * Add milestone audit system ([6630c321](https://github.com/SienkLogic/plan-build-run/commit/6630c321))
1362
+ * Remove domain gatekeeping ([b920d47c](https://github.com/SienkLogic/plan-build-run/commit/b920d47c))
1363
+ * Add verify → plan → execute loop for gap closure ([8e6ad96a](https://github.com/SienkLogic/plan-build-run/commit/8e6ad96a))
1364
+ * Add phase verification when phase completes ([c7fbb815](https://github.com/SienkLogic/plan-build-run/commit/c7fbb815))
1365
+ * Enhance roadmap and planning workflows ([87909f97](https://github.com/SienkLogic/plan-build-run/commit/87909f97))
1366
+ * Add phase verification system ([6d7246dc](https://github.com/SienkLogic/plan-build-run/commit/6d7246dc))
1367
+ * Bundle phase metadata into single commit ([23833251](https://github.com/SienkLogic/plan-build-run/commit/23833251))
1368
+ * Load REQUIREMENTS.md for focused research ([3b0ea318](https://github.com/SienkLogic/plan-build-run/commit/3b0ea318))
1369
+ * Update requirement status to Complete when phase finishes ([e1b6655d](https://github.com/SienkLogic/plan-build-run/commit/e1b6655d))
1370
+ * Align research-project next steps (both point to define-requirements) ([fc0f8618](https://github.com/SienkLogic/plan-build-run/commit/fc0f8618))
1371
+ * Add requirements traceability to roadmap and plan-phase ([b708a8d3](https://github.com/SienkLogic/plan-build-run/commit/b708a8d3))
1372
+ * Show full requirements list, not just counts ([36ff4f4f](https://github.com/SienkLogic/plan-build-run/commit/36ff4f4f))
1373
+ * Offer both define-requirements and create-roadmap as next steps ([1ccc66f1](https://github.com/SienkLogic/plan-build-run/commit/1ccc66f1))
1374
+ * Add define-requirements command for scoped v1 requirements ([d0488c50](https://github.com/SienkLogic/plan-build-run/commit/d0488c50))
1375
+ * Add research-project command for pre-roadmap ecosystem research ([53efcfbf](https://github.com/SienkLogic/plan-build-run/commit/53efcfbf))
1376
+ * Restore rich documentation and fix continuation pattern ([e98bebfe](https://github.com/SienkLogic/plan-build-run/commit/e98bebfe))
1377
+ * Restore offer_next routing to orchestrator commands ([e8199d92](https://github.com/SienkLogic/plan-build-run/commit/e8199d92))
1378
+ * Write VERSION file during installation ([b281148a](https://github.com/SienkLogic/plan-build-run/commit/b281148a))
1379
+ * Create whats-new.md command ([1a55ac85](https://github.com/SienkLogic/plan-build-run/commit/1a55ac85))
1380
+ * Update installer to copy CHANGELOG.md ([35cf2511](https://github.com/SienkLogic/plan-build-run/commit/35cf2511))
1381
+ * Create CHANGELOG.md with Keep-a-Changelog format ([63113e95](https://github.com/SienkLogic/plan-build-run/commit/63113e95))
1382
+ * Add USER-SETUP.md for external service configuration ([4da80d64](https://github.com/SienkLogic/plan-build-run/commit/4da80d64))
1383
+ * Add DEBUG_DIR path constant to prevent typos ([b1066c1f](https://github.com/SienkLogic/plan-build-run/commit/b1066c1f))
1384
+ * Add SlashCommand to plan-fix allowed-tools ([93fc60c1](https://github.com/SienkLogic/plan-build-run/commit/93fc60c1))
1385
+ * Standardize debug file naming and invoke execute-plan ([0e5f1ce8](https://github.com/SienkLogic/plan-build-run/commit/0e5f1ce8))
1386
+ * Auto-diagnose issues instead of offering choice ([1f358c55](https://github.com/SienkLogic/plan-build-run/commit/1f358c55))
1387
+ * Add parallel diagnosis before plan-fix ([d4986629](https://github.com/SienkLogic/plan-build-run/commit/d4986629))
1388
+ * Redesign verify-work as conversational UAT with persistent state ([9e0808b4](https://github.com/SienkLogic/plan-build-run/commit/9e0808b4))
1389
+ * Add pre-execution summary for interactive mode (#57) ([136a30e1](https://github.com/SienkLogic/plan-build-run/commit/136a30e1))
1390
+ * Pre-compute wave numbers at plan time ([d30893a8](https://github.com/SienkLogic/plan-build-run/commit/d30893a8))
1391
+ * Convert to orchestrator pattern ([8ed6a8fa](https://github.com/SienkLogic/plan-build-run/commit/8ed6a8fa))
1392
+ * Remove "what's out of scope" question ([a4c83cf2](https://github.com/SienkLogic/plan-build-run/commit/a4c83cf2))
1393
+ * Load project state before execution ([d5c08e16](https://github.com/SienkLogic/plan-build-run/commit/d5c08e16))
1394
+ * Parallel execution is recommended, not experimental ([c4e3023d](https://github.com/SienkLogic/plan-build-run/commit/c4e3023d))
1395
+ * Parallel-first planning with dependency graphs and checkpoint-resume ([e5d4ecc2](https://github.com/SienkLogic/plan-build-run/commit/e5d4ecc2))
1396
+ * Add .claude/rules/ for auto-loaded contribution rules ([a97c567b](https://github.com/SienkLogic/plan-build-run/commit/a97c567b))
1397
+ * Inline listing for multiple active sessions ([7d109fde](https://github.com/SienkLogic/plan-build-run/commit/7d109fde))
1398
+ * Add /pbr:debug for systematic debugging with persistent state ([f0b4c7d8](https://github.com/SienkLogic/plan-build-run/commit/f0b4c7d8))
1399
+ * Parallel phase execution ([dae8943c](https://github.com/SienkLogic/plan-build-run/commit/dae8943c))
1400
+ * Suggest execute-phase when multiple plans created ([c163004a](https://github.com/SienkLogic/plan-build-run/commit/c163004a))
1401
+ * Create animal-facts.md with 5 animal facts ([0ab169df](https://github.com/SienkLogic/plan-build-run/commit/0ab169df))
1402
+ * Create random-numbers.md ([47980ce5](https://github.com/SienkLogic/plan-build-run/commit/47980ce5))
1403
+ * Create dad-jokes.md ([92a2a1af](https://github.com/SienkLogic/plan-build-run/commit/92a2a1af))
1404
+ * Add parallel vs sequential examples to phase-prompt.md ([67afce6c](https://github.com/SienkLogic/plan-build-run/commit/67afce6c))
1405
+ * Add parallel-aware splitting strategy to scope-estimation.md ([a1f6e9f1](https://github.com/SienkLogic/plan-build-run/commit/a1f6e9f1))
1406
+ * Add parallelization_aware step to plan-phase ([082c6896](https://github.com/SienkLogic/plan-build-run/commit/082c6896))
1407
+ * Separate parallelization question from config creation ([454def13](https://github.com/SienkLogic/plan-build-run/commit/454def13))
1408
+ * Add parallelization question to /pbr:new-project ([27d0f087](https://github.com/SienkLogic/plan-build-run/commit/27d0f087))
1409
+ * Sync execute-phase command with execute-plan content ([31f56506](https://github.com/SienkLogic/plan-build-run/commit/31f56506))
1410
+ * Document parallel execution resume support ([3743d1cf](https://github.com/SienkLogic/plan-build-run/commit/3743d1cf))
1411
+ * Load execute-plan.md context in execute-phase command ([8e8fba27](https://github.com/SienkLogic/plan-build-run/commit/8e8fba27))
1412
+ * Create execute-phase command ([18a1fd17](https://github.com/SienkLogic/plan-build-run/commit/18a1fd17))
1413
+ * Implement parallel spawning and monitoring ([511def76](https://github.com/SienkLogic/plan-build-run/commit/511def76))
1414
+ * Implement dependency analysis step ([caf28103](https://github.com/SienkLogic/plan-build-run/commit/caf28103))
1415
+ * Add todo capture system for mid-session ideas ([3787f50e](https://github.com/SienkLogic/plan-build-run/commit/3787f50e))
1416
+ * Consistent zero-padding for decimal phase numbers ([9ec422ac](https://github.com/SienkLogic/plan-build-run/commit/9ec422ac))
1417
+ * Add planning principles for security, performance, observability ([810409c3](https://github.com/SienkLogic/plan-build-run/commit/810409c3))
1418
+ * Surface verify-work option after plan execution ([863f86e4](https://github.com/SienkLogic/plan-build-run/commit/863f86e4))
1419
+ * Add plan-fix command and progress routing for UAT issues ([d72bd743](https://github.com/SienkLogic/plan-build-run/commit/d72bd743))
1420
+ * Add validation for --config-dir edge cases ([8a0967de](https://github.com/SienkLogic/plan-build-run/commit/8a0967de))
1421
+ * Add /pbr:remove-phase command ([c096ead2](https://github.com/SienkLogic/plan-build-run/commit/c096ead2))
1422
+ * Add --config-dir CLI argument for multi-account setups (#20) ([952ead71](https://github.com/SienkLogic/plan-build-run/commit/952ead71))
1423
+ * Enforce mandatory verification before phase/milestone completion routing ([da884ea7](https://github.com/SienkLogic/plan-build-run/commit/da884ea7))
1424
+ * Add Claude Code marketplace plugin support ([4d92b3cd](https://github.com/SienkLogic/plan-build-run/commit/4d92b3cd))
1425
+ * Commit phase artifacts when created (#12) ([1b9c2f24](https://github.com/SienkLogic/plan-build-run/commit/1b9c2f24))
1426
+ * Persist milestone discussion context across /clear (#11) ([002a819a](https://github.com/SienkLogic/plan-build-run/commit/002a819a))
1427
+ * Support CLAUDE_CONFIG_DIR environment variable ([0ef716c0](https://github.com/SienkLogic/plan-build-run/commit/0ef716c0))
1428
+ * Implement per-task atomic commits for better AI observability ([875ac900](https://github.com/SienkLogic/plan-build-run/commit/875ac900))
1429
+ * Clarify create-milestone.md file locations with explicit instructions ([f34fd45a](https://github.com/SienkLogic/plan-build-run/commit/f34fd45a))
1430
+ * Clarify depth controls compression, not inflation ([35739c84](https://github.com/SienkLogic/plan-build-run/commit/35739c84))
1431
+ * Add depth parameter for planning thoroughness ([484134e6](https://github.com/SienkLogic/plan-build-run/commit/484134e6))
1432
+ * Add /pbr:auto command for autonomous execution ([b0403426](https://github.com/SienkLogic/plan-build-run/commit/b0403426))
1433
+ * Load tdd.md reference directly in commands ([507b28cf](https://github.com/SienkLogic/plan-build-run/commit/507b28cf))
1434
+ * TDD integration with detection, annotation, and execution flow ([5390b33b](https://github.com/SienkLogic/plan-build-run/commit/5390b33b))
1435
+ * Restore deterministic bash commands, remove redundant decision_gate ([86878b97](https://github.com/SienkLogic/plan-build-run/commit/86878b97))
1436
+ * 70% context reduction for plan-phase (scope-estimation 74%, plan-phase.md 66%) ([df1f1384](https://github.com/SienkLogic/plan-build-run/commit/df1f1384))
1437
+ * Merge cli-automation into checkpoints, compress plan-format ([5d164328](https://github.com/SienkLogic/plan-build-run/commit/5d164328))
1438
+ * Explicit plan count check in offer_next step ([f24203dc](https://github.com/SienkLogic/plan-build-run/commit/f24203dc))
1439
+ * Evolutionary PROJECT.md system ([31597a94](https://github.com/SienkLogic/plan-build-run/commit/31597a94))
1440
+ * Improve incremental codebase map updates ([c11b744f](https://github.com/SienkLogic/plan-build-run/commit/c11b744f))
1441
+ * Add file paths to codebase mapping output ([b1f9d574](https://github.com/SienkLogic/plan-build-run/commit/b1f9d574))
1442
+ * Remove arbitrary 100-line limit from codebase mapping ([dccde98f](https://github.com/SienkLogic/plan-build-run/commit/dccde98f))
1443
+ * Use inline code for Next Up commands (avoids nesting ambiguity) ([c3273a50](https://github.com/SienkLogic/plan-build-run/commit/c3273a50))
1444
+ * Check PROJECT.md not .planning/ dir for existing project ([8697c5fd](https://github.com/SienkLogic/plan-build-run/commit/8697c5fd))
1445
+ * Brownfield integration into PBR workflows ([8d2f3074](https://github.com/SienkLogic/plan-build-run/commit/8d2f3074))
1446
+ * Codebase map templates for integrations and concerns ([65825928](https://github.com/SienkLogic/plan-build-run/commit/65825928))
1447
+ * Codebase map templates for conventions and testing ([33c832e7](https://github.com/SienkLogic/plan-build-run/commit/33c832e7))
1448
+ * Codebase map templates for stack, architecture, structure ([de16552e](https://github.com/SienkLogic/plan-build-run/commit/de16552e))
1449
+ * Improved continuation UI with context and visual hierarchy ([733fc144](https://github.com/SienkLogic/plan-build-run/commit/733fc144))
1450
+ * First question should be freeform, not AskUserQuestion ([1b772351](https://github.com/SienkLogic/plan-build-run/commit/1b772351))
1451
+ * Remove shell context to fix permission errors for non-DSP users ([c21c5e97](https://github.com/SienkLogic/plan-build-run/commit/c21c5e97))
1452
+ * Replace inline command invocation with clear-then-paste pattern ([d45fbd84](https://github.com/SienkLogic/plan-build-run/commit/d45fbd84))
1453
+ * Ensure git init runs in current directory ([2be9dd82](https://github.com/SienkLogic/plan-build-run/commit/2be9dd82))
1454
+ * Mandate AskUserQuestion for all exploration questions ([293447d6](https://github.com/SienkLogic/plan-build-run/commit/293447d6))
1455
+ * Update stale CONTEXT.md references to new vision structure ([b4de126a](https://github.com/SienkLogic/plan-build-run/commit/b4de126a))
1456
+ * Remove enterprise language from help and discuss-milestone ([508e0c86](https://github.com/SienkLogic/plan-build-run/commit/508e0c86))
1457
+ * Present new-project completion inline instead of as question ([3e8e5d53](https://github.com/SienkLogic/plan-build-run/commit/3e8e5d53))
1458
+ * Restore AskUserQuestion for decision gate in questioning flow ([3d7b9657](https://github.com/SienkLogic/plan-build-run/commit/3d7b9657))
1459
+ * Yolo mode now skips confirmation gates in plan-phase ([46d63991](https://github.com/SienkLogic/plan-build-run/commit/46d63991))
1460
+ * Rewrite questioning as thinking partner, not interviewer ([83e27785](https://github.com/SienkLogic/plan-build-run/commit/83e27785))
1461
+ * Add research-phase for niche domain ecosystem discovery ([e8d68685](https://github.com/SienkLogic/plan-build-run/commit/e8d68685))
344
1462
 
345
- * **tools:** add /pbr:dashboard command to README dashboard section ([e1d3a60](https://github.com/SienkLogic/plan-build-run/commit/e1d3a60e0f8cffcd2f093725e73a0eca0a6c67ad))
346
- * **tools:** add missing 2.3.0 and 2.3.1 changelog entries ([82c5cb2](https://github.com/SienkLogic/plan-build-run/commit/82c5cb21a741be4bfe13613debdeb54f862ce1f3))
347
- * **tools:** make platform badges clickable links to install pages ([a1f6b68](https://github.com/SienkLogic/plan-build-run/commit/a1f6b68a786458a6040d0fa50a99e01431016332))
348
- * **tools:** update README with Copilot CLI support and current stats ([edad2d9](https://github.com/SienkLogic/plan-build-run/commit/edad2d924198d6598eed1fb0b0a23c164617e5b6))
349
-
350
- ## [Unreleased]
351
-
352
- ## [2.3.1] - 2026-02-19
353
-
354
- ### Added
355
- - **GitHub Copilot CLI plugin** (`plugins/copilot-pbr/`) — complete port with 22 skills, 10 agents (`.agent.md` format), and Copilot CLI hook configuration
356
- - Setup scripts (`setup.sh`, `setup.ps1`) for Copilot CLI plugin installation with `copilot plugin install` support
357
- - Cross-plugin compatibility tests now cover all three plugins (Claude Code, Cursor, Copilot CLI) — 164 tests via data-driven `describe.each`
358
- - New cross-plugin guard tests: `references/ files match PBR` and `templates/ files match PBR` catch drift automatically
359
- - Dashboard skill now works from Copilot CLI sessions (`/pbr:dashboard`)
360
- - Platform badges in README link to install pages (wiki or anchor)
361
-
362
- ### Fixed
363
- - Synced 13 missing template files (`codebase/`, `research/`, `research-outputs/`) to Cursor and Copilot plugins
364
- - Dashboard skill in derivative plugins now references correct relative path (`../../dashboard/`) instead of nonexistent `<plugin-root>/dashboard/`
365
- - Cross-plugin frontmatter parser now handles both `\r\n` and `\n` line endings (was silently failing on Windows-style files)
366
- - Test count: 1219 tests across 44 suites (up from 1134)
367
-
368
- ## [2.3.0] - 2026-02-19
369
-
370
- ### Added
371
- - `/pbr:do` freeform router — routes natural language input to the right PBR skill automatically
372
- - Smart skill suggestions in hook feedback when freeform text is detected
373
- - Freeform text guard hook for `/pbr:plan` and todo work subcommand
374
-
375
- ### Fixed
376
- - Dashboard skill `argument-hint` synced to Cursor plugin
377
-
378
- ## [2.2.0] - 2026-02-19
379
-
380
- ### Added
381
- - Milestone integration into workflow lifecycle — milestones are now created automatically during `/pbr:begin` roadmap generation
382
- - Planner agent generates milestone-grouped roadmaps (single milestone for standard projects, multiple for 8+ phase comprehensive projects)
383
- - Milestone-aware boundary detection in `/pbr:build` and `/pbr:review` — reads ROADMAP.md phase ranges instead of just "last phase overall"
384
- - Between-milestones state handling in `/pbr:continue`
385
- - Audit report detection in `/pbr:status` — suggests the correct next action based on whether an audit exists and its result
386
-
387
- ### Fixed
388
- - "Skip audit" option in build/review completion banners now correctly says "archive milestone after audit passes" (consistent with milestone anti-pattern rules)
389
- - `auto_advance` hard-stop message at milestone boundaries now explains why it paused
390
-
391
- ## [2.1.0] - 2026-02-19
392
-
393
- ### Added
394
- - **Cursor IDE plugin** (`plugins/cursor-pbr/`) — complete port with 21 skills, 10 agents, and `.mdc` workflow rules
395
- - Cross-plugin compatibility: shared `.planning/` state between Claude Code and Cursor plugins
396
- - Setup scripts (`setup.sh` for macOS/Linux, `setup.ps1` for Windows) for easy Cursor plugin installation
397
- - Summary gate hook (`check-summary-gate.js`) — enforces SUMMARY file before phase state can advance
398
- - Cross-plugin compatibility test suite (7 tests)
399
- - Cursor plugin validation test suite (92 tests)
400
- - Companion web dashboard improvements: service and route enhancements
401
-
402
- ### Changed
403
- - Agent definitions optimized — 48% average size reduction across all 10 agents
404
- - Hook scripts improved with better error handling and dispatch logic
405
- - Test count increased from 758 to 1008 across 42 suites
406
- - Removed `.gitkeep` placeholder files from `cursor-pbr/` (replaced by real content)
407
-
408
- ## [2.0.0] - 2026-02-17
409
-
410
- ### Added
411
- - Token-saving CLI: 6 new commands in `towline-tools.js` — `frontmatter`, `must-haves`, `phase-info`, `state update`, `roadmap update-status`, `roadmap update-plans`
412
- - Companion web dashboard (Express 5.x, EJS, Pico.css v2, HTMX 2.0) with overview, phase detail, roadmap, todos, and SSE live updates
413
- - `/dev:import` skill — Import external plan documents into Towline format
414
- - `/dev:note` skill — Zero-friction idea capture with promote-to-todo support
415
- - `/dev:setup` skill — Interactive onboarding wizard for new installations
416
- - `/dev:explore` skill — Socratic conversation for idea exploration
417
- - `/dev:continue` skill — Execute the next logical step automatically
418
- - `/dev:health` skill — Validate `.planning/` directory integrity
419
- - General agent — Lightweight Towline-aware agent for ad-hoc tasks
420
- - `/dev:build <N> --team` variant — Agent Teams for complex inter-agent coordination
421
- - `/dev:review <N> --auto-fix` variant — Auto-diagnose and fix verification failures
422
- - Hook spawn tests for all lifecycle hooks
423
- - Iterative retrieval protocol for researcher agent
424
- - Behavioral contexts for agent prompt refinement
425
- - Published to npm with OIDC trusted publishing
426
-
427
- ### Changed
428
- - Skill count increased from 15 to 21
429
- - Agent count increased from 9 to 10 (added General agent)
430
- - Hook scripts consolidated: Write/Edit dispatch reduced from 4 spawns to 2
431
- - All hook scripts now use `logHook()` from `hook-logger.js` for unified logging
432
- - Agents reference new CLI tooling shortcuts instead of manual YAML parsing
433
- - README rewritten with badges, comparison table, and acknowledgments
434
- - Package tarball trimmed from 1.9MB to 305KB via explicit `files` field
435
-
436
- ### Fixed
437
- - Windows CI: `parseMustHaves` now trims CRLF line endings
438
- - Context budget: main orchestrator no longer reads agent definitions (saves ~15% context)
439
- - Hook logger rotation: `.hook-log` now caps at 200 entries with JSONL format
440
- - Status line ANSI rendering on Windows terminals
441
-
442
- ## [1.0.0] - 2025-02-07
443
-
444
- ### Added
445
- - Initial release of Plan-Build-Run plugin for Claude Code
446
- - 15 skills: begin, plan, build, review, discuss, quick, debug, status, pause, resume, milestone, scan, todo, config, help
447
- - 9 specialized agents: researcher, planner, plan-checker, executor, verifier, integration-checker, debugger, codebase-mapper, synthesizer
448
- - Hook-enforced quality gates: commit validation, plan format checking, session state injection, pre-compact preservation
449
- - Wave-based parallel execution via Task() subagents
450
- - Goal-backward verification at phase and milestone levels
451
- - Persistent file-based state management (.planning/ directory)
452
- - Configurable workflow: depth, models, gates, parallelization, git branching
453
- - Cross-platform Node.js hook scripts (Windows + macOS + Linux)
454
- - Plugin distribution via npm