@sienklogic/plan-build-run 2.19.0 → 2.19.1

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