@sienklogic/plan-build-run 2.34.0 → 2.38.0

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 (160) hide show
  1. package/CHANGELOG.md +683 -0
  2. package/dashboard/public/css/command-center.css +152 -65
  3. package/dashboard/public/css/explorer.css +22 -41
  4. package/dashboard/public/css/layout.css +119 -1
  5. package/dashboard/public/css/tokens.css +13 -0
  6. package/dashboard/src/components/Layout.tsx +32 -6
  7. package/dashboard/src/components/explorer/tabs/PhasesTab.tsx +11 -1
  8. package/dashboard/src/components/explorer/tabs/TodosTab.tsx +18 -2
  9. package/dashboard/src/components/partials/AttentionPanel.tsx +7 -1
  10. package/dashboard/src/components/partials/CurrentPhaseCard.tsx +26 -24
  11. package/dashboard/src/components/partials/QuickActions.tsx +21 -11
  12. package/dashboard/src/components/partials/StatCardGrid.tsx +67 -0
  13. package/dashboard/src/components/partials/StatusHeader.tsx +1 -0
  14. package/dashboard/src/routes/command-center.routes.tsx +8 -7
  15. package/dashboard/src/routes/index.routes.tsx +32 -29
  16. package/package.json +2 -2
  17. package/plugins/copilot-pbr/agents/audit.agent.md +129 -16
  18. package/plugins/copilot-pbr/agents/codebase-mapper.agent.md +49 -1
  19. package/plugins/copilot-pbr/agents/debugger.agent.md +50 -1
  20. package/plugins/copilot-pbr/agents/dev-sync.agent.md +23 -0
  21. package/plugins/copilot-pbr/agents/executor.agent.md +153 -8
  22. package/plugins/copilot-pbr/agents/general.agent.md +46 -1
  23. package/plugins/copilot-pbr/agents/integration-checker.agent.md +55 -2
  24. package/plugins/copilot-pbr/agents/plan-checker.agent.md +50 -2
  25. package/plugins/copilot-pbr/agents/planner.agent.md +80 -1
  26. package/plugins/copilot-pbr/agents/researcher.agent.md +50 -2
  27. package/plugins/copilot-pbr/agents/synthesizer.agent.md +49 -1
  28. package/plugins/copilot-pbr/agents/verifier.agent.md +114 -13
  29. package/plugins/copilot-pbr/commands/test.md +5 -0
  30. package/plugins/copilot-pbr/hooks/hooks.json +11 -0
  31. package/plugins/copilot-pbr/plugin.json +1 -1
  32. package/plugins/copilot-pbr/references/agent-contracts.md +27 -0
  33. package/plugins/copilot-pbr/references/checkpoints.md +32 -1
  34. package/plugins/copilot-pbr/references/context-quality-tiers.md +45 -0
  35. package/plugins/copilot-pbr/references/pbr-tools-cli.md +115 -0
  36. package/plugins/copilot-pbr/references/questioning.md +21 -1
  37. package/plugins/copilot-pbr/references/verification-patterns.md +96 -18
  38. package/plugins/copilot-pbr/skills/audit/SKILL.md +19 -3
  39. package/plugins/copilot-pbr/skills/begin/SKILL.md +57 -4
  40. package/plugins/copilot-pbr/skills/build/SKILL.md +39 -2
  41. package/plugins/copilot-pbr/skills/config/SKILL.md +12 -2
  42. package/plugins/copilot-pbr/skills/debug/SKILL.md +12 -1
  43. package/plugins/copilot-pbr/skills/explore/SKILL.md +13 -2
  44. package/plugins/copilot-pbr/skills/health/SKILL.md +13 -5
  45. package/plugins/copilot-pbr/skills/import/SKILL.md +26 -1
  46. package/plugins/copilot-pbr/skills/milestone/SKILL.md +15 -3
  47. package/plugins/copilot-pbr/skills/plan/SKILL.md +50 -0
  48. package/plugins/copilot-pbr/skills/quick/SKILL.md +21 -0
  49. package/plugins/copilot-pbr/skills/review/SKILL.md +45 -0
  50. package/plugins/copilot-pbr/skills/scan/SKILL.md +20 -0
  51. package/plugins/copilot-pbr/skills/setup/SKILL.md +9 -1
  52. package/plugins/copilot-pbr/skills/shared/context-budget.md +10 -0
  53. package/plugins/copilot-pbr/skills/shared/universal-anti-patterns.md +6 -0
  54. package/plugins/copilot-pbr/skills/test/SKILL.md +210 -0
  55. package/plugins/copilot-pbr/templates/SUMMARY-complex.md.tmpl +95 -0
  56. package/plugins/copilot-pbr/templates/SUMMARY-minimal.md.tmpl +48 -0
  57. package/plugins/cursor-pbr/.cursor-plugin/plugin.json +1 -1
  58. package/plugins/cursor-pbr/agents/audit.md +52 -5
  59. package/plugins/cursor-pbr/agents/codebase-mapper.md +49 -1
  60. package/plugins/cursor-pbr/agents/debugger.md +50 -1
  61. package/plugins/cursor-pbr/agents/dev-sync.md +23 -0
  62. package/plugins/cursor-pbr/agents/executor.md +153 -8
  63. package/plugins/cursor-pbr/agents/general.md +46 -1
  64. package/plugins/cursor-pbr/agents/integration-checker.md +54 -1
  65. package/plugins/cursor-pbr/agents/plan-checker.md +49 -1
  66. package/plugins/cursor-pbr/agents/planner.md +80 -1
  67. package/plugins/cursor-pbr/agents/researcher.md +49 -1
  68. package/plugins/cursor-pbr/agents/synthesizer.md +49 -1
  69. package/plugins/cursor-pbr/agents/verifier.md +113 -12
  70. package/plugins/cursor-pbr/commands/test.md +5 -0
  71. package/plugins/cursor-pbr/hooks/hooks.json +9 -0
  72. package/plugins/cursor-pbr/references/agent-contracts.md +27 -0
  73. package/plugins/cursor-pbr/references/checkpoints.md +32 -1
  74. package/plugins/cursor-pbr/references/context-quality-tiers.md +45 -0
  75. package/plugins/cursor-pbr/references/pbr-tools-cli.md +115 -0
  76. package/plugins/cursor-pbr/references/questioning.md +21 -1
  77. package/plugins/cursor-pbr/references/verification-patterns.md +96 -18
  78. package/plugins/cursor-pbr/skills/audit/SKILL.md +19 -3
  79. package/plugins/cursor-pbr/skills/begin/SKILL.md +57 -4
  80. package/plugins/cursor-pbr/skills/build/SKILL.md +37 -2
  81. package/plugins/cursor-pbr/skills/config/SKILL.md +12 -2
  82. package/plugins/cursor-pbr/skills/debug/SKILL.md +12 -1
  83. package/plugins/cursor-pbr/skills/explore/SKILL.md +13 -2
  84. package/plugins/cursor-pbr/skills/health/SKILL.md +14 -5
  85. package/plugins/cursor-pbr/skills/import/SKILL.md +26 -1
  86. package/plugins/cursor-pbr/skills/milestone/SKILL.md +15 -3
  87. package/plugins/cursor-pbr/skills/plan/SKILL.md +50 -0
  88. package/plugins/cursor-pbr/skills/quick/SKILL.md +21 -0
  89. package/plugins/cursor-pbr/skills/review/SKILL.md +45 -0
  90. package/plugins/cursor-pbr/skills/scan/SKILL.md +20 -0
  91. package/plugins/cursor-pbr/skills/setup/SKILL.md +9 -1
  92. package/plugins/cursor-pbr/skills/shared/context-budget.md +10 -0
  93. package/plugins/cursor-pbr/skills/shared/universal-anti-patterns.md +6 -0
  94. package/plugins/cursor-pbr/skills/test/SKILL.md +211 -0
  95. package/plugins/cursor-pbr/templates/SUMMARY-complex.md.tmpl +95 -0
  96. package/plugins/cursor-pbr/templates/SUMMARY-minimal.md.tmpl +48 -0
  97. package/plugins/pbr/.claude-plugin/plugin.json +1 -1
  98. package/plugins/pbr/agents/audit.md +45 -0
  99. package/plugins/pbr/agents/codebase-mapper.md +48 -0
  100. package/plugins/pbr/agents/debugger.md +49 -0
  101. package/plugins/pbr/agents/dev-sync.md +23 -0
  102. package/plugins/pbr/agents/executor.md +151 -6
  103. package/plugins/pbr/agents/general.md +45 -0
  104. package/plugins/pbr/agents/integration-checker.md +53 -0
  105. package/plugins/pbr/agents/plan-checker.md +48 -0
  106. package/plugins/pbr/agents/planner.md +78 -1
  107. package/plugins/pbr/agents/researcher.md +48 -0
  108. package/plugins/pbr/agents/synthesizer.md +48 -0
  109. package/plugins/pbr/agents/verifier.md +112 -11
  110. package/plugins/pbr/commands/test.md +5 -0
  111. package/plugins/pbr/hooks/hooks.json +9 -0
  112. package/plugins/pbr/references/agent-contracts.md +27 -0
  113. package/plugins/pbr/references/checkpoints.md +32 -0
  114. package/plugins/pbr/references/context-quality-tiers.md +45 -0
  115. package/plugins/pbr/references/pbr-tools-cli.md +115 -0
  116. package/plugins/pbr/references/questioning.md +21 -0
  117. package/plugins/pbr/references/verification-patterns.md +96 -17
  118. package/plugins/pbr/scripts/check-plan-format.js +13 -1
  119. package/plugins/pbr/scripts/check-state-sync.js +26 -7
  120. package/plugins/pbr/scripts/check-subagent-output.js +30 -2
  121. package/plugins/pbr/scripts/config-schema.json +11 -1
  122. package/plugins/pbr/scripts/context-bridge.js +265 -0
  123. package/plugins/pbr/scripts/lib/config.js +271 -0
  124. package/plugins/pbr/scripts/lib/core.js +587 -0
  125. package/plugins/pbr/scripts/lib/history.js +73 -0
  126. package/plugins/pbr/scripts/lib/init.js +166 -0
  127. package/plugins/pbr/scripts/lib/migrate.js +169 -0
  128. package/plugins/pbr/scripts/lib/phase.js +364 -0
  129. package/plugins/pbr/scripts/lib/roadmap.js +175 -0
  130. package/plugins/pbr/scripts/lib/state.js +397 -0
  131. package/plugins/pbr/scripts/lib/todo.js +300 -0
  132. package/plugins/pbr/scripts/pbr-tools.js +425 -1310
  133. package/plugins/pbr/scripts/post-write-dispatch.js +5 -4
  134. package/plugins/pbr/scripts/pre-write-dispatch.js +1 -1
  135. package/plugins/pbr/scripts/progress-tracker.js +1 -1
  136. package/plugins/pbr/scripts/suggest-compact.js +1 -1
  137. package/plugins/pbr/scripts/track-context-budget.js +53 -2
  138. package/plugins/pbr/scripts/validate-task.js +20 -28
  139. package/plugins/pbr/skills/audit/SKILL.md +19 -3
  140. package/plugins/pbr/skills/begin/SKILL.md +48 -2
  141. package/plugins/pbr/skills/build/SKILL.md +39 -2
  142. package/plugins/pbr/skills/config/SKILL.md +12 -2
  143. package/plugins/pbr/skills/debug/SKILL.md +12 -1
  144. package/plugins/pbr/skills/debug/templates/continuation-prompt.md.tmpl +12 -1
  145. package/plugins/pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +12 -5
  146. package/plugins/pbr/skills/explore/SKILL.md +13 -2
  147. package/plugins/pbr/skills/health/SKILL.md +14 -3
  148. package/plugins/pbr/skills/help/SKILL.md +2 -0
  149. package/plugins/pbr/skills/import/SKILL.md +26 -1
  150. package/plugins/pbr/skills/milestone/SKILL.md +15 -3
  151. package/plugins/pbr/skills/plan/SKILL.md +52 -2
  152. package/plugins/pbr/skills/quick/SKILL.md +21 -0
  153. package/plugins/pbr/skills/review/SKILL.md +46 -0
  154. package/plugins/pbr/skills/scan/SKILL.md +20 -0
  155. package/plugins/pbr/skills/setup/SKILL.md +9 -1
  156. package/plugins/pbr/skills/shared/context-budget.md +10 -0
  157. package/plugins/pbr/skills/shared/universal-anti-patterns.md +6 -0
  158. package/plugins/pbr/skills/test/SKILL.md +212 -0
  159. package/plugins/pbr/templates/SUMMARY-complex.md.tmpl +95 -0
  160. package/plugins/pbr/templates/SUMMARY-minimal.md.tmpl +48 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,689 @@ All notable changes to Plan-Build-Run will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.38.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.37.0...plan-build-run-v2.38.0) (2026-02-27)
9
+
10
+
11
+ ### Features
12
+
13
+ * **quick-016:** add L4 verification, failure markers, roadmap dual format, requirement coverage ([1260623](https://github.com/SienkLogic/plan-build-run/commit/1260623f483ae0e62a22b7637bfd3400da7883df))
14
+ * **quick-016:** enhance agent success criteria and behavioral anchors from GSD gap analysis ([a3ac95a](https://github.com/SienkLogic/plan-build-run/commit/a3ac95a7cb0cfc6a44905bdbba1b2e354aabb7ea))
15
+ * **quick-017:** add migrate subcommand to pbr-tools.js dispatcher ([8b4737a](https://github.com/SienkLogic/plan-build-run/commit/8b4737aa11eca1eea46a259805bd128ff3bee2e4))
16
+ * **quick-017:** GREEN - implement migrate.js and wire CURRENT_SCHEMA_VERSION into config.js ([84beb51](https://github.com/SienkLogic/plan-build-run/commit/84beb51b77af7e4ee6db59e868df291f114e621e))
17
+ * **scripts:** add CRITICAL tier to context-bridge ([4f46411](https://github.com/SienkLogic/plan-build-run/commit/4f464114b1401de3c6bb22c3fb2baff56ce3502f))
18
+ * **skills:** add /pbr:test skill with command across all plugins ([a38d6e3](https://github.com/SienkLogic/plan-build-run/commit/a38d6e3f8fc3eda17a5810b38bd17fddaccb730a))
19
+ * **skills:** add save-defaults, load-defaults, and --repair flag ([a56d1c9](https://github.com/SienkLogic/plan-build-run/commit/a56d1c9468c7212b802b18d71b7fe951b924d1c0))
20
+ * **tools:** add todo.js library with tests ([2ba058b](https://github.com/SienkLogic/plan-build-run/commit/2ba058bb2f143333a920ef8dd14b09021d7abe11))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **tests:** force-add fixture todo files ignored by .gitignore ([1b89f11](https://github.com/SienkLogic/plan-build-run/commit/1b89f1178b3980b9e167d8d137e300b0f2aa9e7d))
26
+ * **tools:** clean up .bak files in atomicWrite + add agent body sync tests ([af1aba2](https://github.com/SienkLogic/plan-build-run/commit/af1aba29ed80e46ec0e901974f6c851151274579))
27
+
28
+ ## [2.37.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.36.0...plan-build-run-v2.37.0) (2026-02-27)
29
+
30
+
31
+ ### Features
32
+
33
+ * **01-01:** add build and plan executor gates to validate-task.js ([eb50498](https://github.com/SienkLogic/plan-build-run/commit/eb5049838fa24fc4e327f3fd63779e94a08225df))
34
+ * **01-01:** extend agent output validation to all 10 PBR agent types ([ec7d1dc](https://github.com/SienkLogic/plan-build-run/commit/ec7d1dc647ce72c3806f70a86576289991c23608))
35
+ * **01-01:** scaffold Cursor plugin directory structure and manifest ([4743cb2](https://github.com/SienkLogic/plan-build-run/commit/4743cb2598dbba1339101cc9c738869017117fe4))
36
+ * **01-02:** add skill-specific workflow rules and CRITICAL enforcement ([5b51b7e](https://github.com/SienkLogic/plan-build-run/commit/5b51b7e28ae935b1d5bfca3584d0fedd0c865c7c))
37
+ * **02-01:** add milestone, explore, import, scan write guards to checkSkillRules ([7c5bb1d](https://github.com/SienkLogic/plan-build-run/commit/7c5bb1daf6aec0db18e39f1be62393c6eb147267))
38
+ * **02-01:** port 10 agent definitions and workflow rules to Cursor format ([126fe76](https://github.com/SienkLogic/plan-build-run/commit/126fe764497186aaff24ac33782036f87b063409))
39
+ * **02-02:** add review planner gate to validate-task.js ([30f9031](https://github.com/SienkLogic/plan-build-run/commit/30f90313c6add9063f15fdff041d8bcb1671e625))
40
+ * **02-02:** strengthen ROADMAP sync warnings to CRITICAL level ([127f506](https://github.com/SienkLogic/plan-build-run/commit/127f5062d6d7006181616d0a3386a153d95f5909))
41
+ * **03-01:** add review verifier, milestone complete, and build dependency gates ([cfcf0d5](https://github.com/SienkLogic/plan-build-run/commit/cfcf0d55510ac52ec27c4ff466b751dd4635570c))
42
+ * **03-01:** port 6 core skills to Cursor format ([6c984a4](https://github.com/SienkLogic/plan-build-run/commit/6c984a4d56dfd1c3dcf40f29cc7e926775744b6c))
43
+ * **04-01:** add post-artifact validation for begin/plan/build and VERIFICATION.md ([353b8be](https://github.com/SienkLogic/plan-build-run/commit/353b8be3687db03843e0996914116231220b82a8))
44
+ * **04-01:** port 15 supporting skills to Cursor format ([ae0a8ae](https://github.com/SienkLogic/plan-build-run/commit/ae0a8aec895036a56d85b38ed7841ec800840a62))
45
+ * **05-01:** adapt hooks.json for Cursor plugin with shared script paths ([eaa1a0c](https://github.com/SienkLogic/plan-build-run/commit/eaa1a0c2d82db06c2c21eb3b680bda766562aa1c))
46
+ * **05-01:** add STATE.md validation, checkpoint manifest check, and active-skill integrity warning ([3f0c7bc](https://github.com/SienkLogic/plan-build-run/commit/3f0c7bc09ae2508ae849972057b88818f0e18eb6))
47
+ * **06-01:** add .active-skill write and cleanup to begin, plan, review, import skills ([8c1132a](https://github.com/SienkLogic/plan-build-run/commit/8c1132ab93115f27f926637c89079a701dec2c43))
48
+ * **06-01:** port templates, references, and shared fragments to Cursor plugin ([43fc161](https://github.com/SienkLogic/plan-build-run/commit/43fc1610997caf0e13523896e97e2fd6ed25d757))
49
+ * **06-02:** add CRITICAL markers to file-creation steps in begin, build, milestone, setup, pause ([5b10576](https://github.com/SienkLogic/plan-build-run/commit/5b10576334f92cbf5464362044564b6eae0977b1))
50
+ * **07-01:** add Cursor plugin validation test suite with 92 tests ([72c328e](https://github.com/SienkLogic/plan-build-run/commit/72c328e2cc939bf08d59e530afb96e3dacc4bc87))
51
+ * **07-01:** add Write tool to verifier/integration-checker and update prose across all plugins ([a9fe348](https://github.com/SienkLogic/plan-build-run/commit/a9fe348654d434ab9c0f68d53bfeb52256354225))
52
+ * **07-01:** register missing skills in check-skill-workflow.js switch statement ([63bac6f](https://github.com/SienkLogic/plan-build-run/commit/63bac6f4338d5f9d22a8ea804a6f1851118f208e))
53
+ * **07-02:** add debugger advisory gate and milestone gaps_found status check ([c5acda2](https://github.com/SienkLogic/plan-build-run/commit/c5acda2f73ea6ce7ddd21bc5e8c52990c0abdacb))
54
+ * **07-02:** add mtime-based recency checks for researcher and synthesizer output ([c3685ad](https://github.com/SienkLogic/plan-build-run/commit/c3685adb2b051fce0f7b002272daa54d770016da))
55
+ * **08-01:** add cross-plugin compatibility test suite ([bad35e7](https://github.com/SienkLogic/plan-build-run/commit/bad35e746d6d9e64e309597e20acf58d1e82363f))
56
+ * **08-01:** add inline fallback formats to 7 template-dependent agents ([f9a1038](https://github.com/SienkLogic/plan-build-run/commit/f9a1038e8145e9c0dc48affd648ec4485a5008d3))
57
+ * **08-02:** add CRITICAL markers and fix agent handoff issues ([800bf5e](https://github.com/SienkLogic/plan-build-run/commit/800bf5e2d231ad36b3f5097ff889b22bd5577544))
58
+ * **09-01:** add gate error fix guidance and discuss deep-dive CRITICAL enforcement ([8f18fb7](https://github.com/SienkLogic/plan-build-run/commit/8f18fb72674061284f11d375b73ff51a25d5c387))
59
+ * **09-01:** add health auto-fix for common corruption patterns ([22f666a](https://github.com/SienkLogic/plan-build-run/commit/22f666a943449ecff5ccb3a24eda5d464055a9b0))
60
+ * **09-01:** add marketplace documentation, logo, and finalize manifest ([6a317af](https://github.com/SienkLogic/plan-build-run/commit/6a317afbd5356065ac984782154ade5c9518e43d))
61
+ * **09-01:** add rollback safety, setup idempotency, and todo archive safety ([914cc9b](https://github.com/SienkLogic/plan-build-run/commit/914cc9bd91a821e18c65e8c9c239976ddf47fb09))
62
+ * **09-02:** rewrite ui-formatting.md with unified double-line box format ([d5d96b4](https://github.com/SienkLogic/plan-build-run/commit/d5d96b45f717e556b3e8c9c0d3a9eb3e521a03fd))
63
+ * **09-02:** update error-reporting fragment with block reason guidance ([a266081](https://github.com/SienkLogic/plan-build-run/commit/a266081a19966e2925c9c05128f3ee97ab0dd38a))
64
+ * **09-03:** replace heavy bar and thin divider banners with double-line box format in all 24 skills ([a602cbb](https://github.com/SienkLogic/plan-build-run/commit/a602cbb03d25c65c89e41422cb0c66c6a831b9ca))
65
+ * **09-03:** sync banner replacements and 09-01/09-02 changes to cursor-pbr and copilot-pbr ([c6473f8](https://github.com/SienkLogic/plan-build-run/commit/c6473f8b6908a1d8252385b49c711fd023c257c7))
66
+ * **09-04:** replace Next Up headings with double-line box format in all PBR skills ([2f30dbe](https://github.com/SienkLogic/plan-build-run/commit/2f30dbe933be1714c87250cc86ffc2047f2705c4))
67
+ * **09-04:** sync Next Up box format to cursor-pbr and copilot-pbr derivatives ([2e3b848](https://github.com/SienkLogic/plan-build-run/commit/2e3b8487840c0f2d0673259817c63041f3ca66f5))
68
+ * **11-01:** create tokens.css with dual-mode design tokens ([efcc30c](https://github.com/SienkLogic/plan-build-run/commit/efcc30c856d7c0c1e888daa2dbb27b5aaeeeaa77))
69
+ * **11-01:** refactor layout.css to use semantic design tokens ([2f13a93](https://github.com/SienkLogic/plan-build-run/commit/2f13a93032d47cd6e52b0b669dd928ed8b0f5ffa))
70
+ * **11-02:** add theme toggle button with localStorage persistence ([f2a2c9b](https://github.com/SienkLogic/plan-build-run/commit/f2a2c9b8fea7c74fa2344593ceedf3d64ecfd6c5))
71
+ * **11-02:** pin Pico.css CDN to v2.0.6 ([54fdd1f](https://github.com/SienkLogic/plan-build-run/commit/54fdd1f5c20d7b411fa0e1ffcb70b76106f48241))
72
+ * **12-01:** add current-phase middleware for sidebar context ([bef4dd8](https://github.com/SienkLogic/plan-build-run/commit/bef4dd897b202acfe61b64b492efaa4acd022b82))
73
+ * **12-01:** implement mobile overlay sidebar with backdrop ([98548db](https://github.com/SienkLogic/plan-build-run/commit/98548db578ad7db06335fdce5b94a2a5b8fbfffa))
74
+ * **12-01:** redesign sidebar with collapsible sections and current phase card ([3d3e05c](https://github.com/SienkLogic/plan-build-run/commit/3d3e05c698bdfd0980ed1c51cdb08d800b3bcc42))
75
+ * **12-02:** add breadcrumb data to routes and include partial in content templates ([ed79edd](https://github.com/SienkLogic/plan-build-run/commit/ed79edd432310162256010e5db891b8c258b2722))
76
+ * **12-02:** create breadcrumbs partial and CSS styles ([232e917](https://github.com/SienkLogic/plan-build-run/commit/232e9173bdaefe92cd5780775e96c76396dcc0b3))
77
+ * **13-01:** add milestone history expandable table with stats and deliverables ([8774c0f](https://github.com/SienkLogic/plan-build-run/commit/8774c0fe9f2ad9dd4955131fbc7a8a240af797e2))
78
+ * **13-01:** add todo filtering by priority, status, and search with bulk complete ([95e9dfd](https://github.com/SienkLogic/plan-build-run/commit/95e9dfd3ca96b25526ff8016e7791dc1d8475a91))
79
+ * **13-02:** add dependency graph route, views, and sidebar link ([f972435](https://github.com/SienkLogic/plan-build-run/commit/f9724351166d360122cb66e4c15110ee3279890e))
80
+ * **13-02:** add Mermaid dependency graph generation to roadmap service ([b194455](https://github.com/SienkLogic/plan-build-run/commit/b194455f298b2ea0660fd26936d333fbb0f1feef))
81
+ * **13-03:** add analytics route, views, and sidebar link ([431dad7](https://github.com/SienkLogic/plan-build-run/commit/431dad79bedcba831a8e7d731803f3987b82a0ac))
82
+ * **13-03:** create analytics service with git-based metrics and TTL cache ([6c8c41a](https://github.com/SienkLogic/plan-build-run/commit/6c8c41a23cdfd736a4d2bceea01502ebe64514e8))
83
+ * **14-01:** add Last-Event-ID state recovery to SSE endpoint ([4b48cf1](https://github.com/SienkLogic/plan-build-run/commit/4b48cf1d03f2b6191dc6eb7c856abaf0a1aacdf6))
84
+ * **14-01:** create custom SSE client with exponential backoff ([5b855ec](https://github.com/SienkLogic/plan-build-run/commit/5b855ec7a19c606a286fbf6b6d4f40e89afce87f))
85
+ * **14-01:** reduce chokidar stability threshold to 500ms ([8a65e43](https://github.com/SienkLogic/plan-build-run/commit/8a65e43720a17d9b37ba63f55bfe5b37e83fb80f))
86
+ * **14-02:** add hx-indicator spinners to todo complete actions ([fc8c325](https://github.com/SienkLogic/plan-build-run/commit/fc8c32583e2a2eaa5b972344777091c4ce5bc67f))
87
+ * **14-02:** add TTL cache utility and integrate into analytics and milestone services ([19bd3ea](https://github.com/SienkLogic/plan-build-run/commit/19bd3eadfa5f13368176991e525c5adbdd3b8309))
88
+ * **15-01:** add error-card styling, loading indicator, and favicon ([f48c40f](https://github.com/SienkLogic/plan-build-run/commit/f48c40fca341d9144e7fa3bf7f2c2e0db9b1d5ab))
89
+ * **15-01:** add skip-to-content link, focus-visible styles, and ARIA labels ([fe2963b](https://github.com/SienkLogic/plan-build-run/commit/fe2963b266eae933a23ea0b74859ae8655964ad5))
90
+ * **15-01:** create reusable empty-state partial and integrate into views ([be8e5f5](https://github.com/SienkLogic/plan-build-run/commit/be8e5f57dc60e4c02d2cc656a156dd450bd45fa4))
91
+ * **15-02:** GREEN - analytics, cache, SSE tests pass against existing code ([1948189](https://github.com/SienkLogic/plan-build-run/commit/1948189fd9a74912017c3901413f3f0da0f1f073))
92
+ * **15-02:** GREEN - dependencies and breadcrumbs tests pass ([9b3f987](https://github.com/SienkLogic/plan-build-run/commit/9b3f9874fb3b5d50288ef36af6cb3edb4ea91260))
93
+ * **16-01:** redesign dashboard home, fix analytics duration, add bar charts, mermaid dark mode ([ba820a1](https://github.com/SienkLogic/plan-build-run/commit/ba820a111afd8f65350ff0caa30e4a7be0c1489e))
94
+ * **17-01:** add notes page, verification viewer, milestone progress bars, dynamic footer version ([51b2092](https://github.com/SienkLogic/plan-build-run/commit/51b2092e0e89d2d31626cc94be8e5f6712b79116))
95
+ * **24-01:** add check-agent-state-write.js module ([c407826](https://github.com/SienkLogic/plan-build-run/commit/c4078264dead22d20998aeb14c35ea545289ccf5))
96
+ * **24-01:** wire agent state write blocker into pre-write-dispatch ([1adf149](https://github.com/SienkLogic/plan-build-run/commit/1adf149bb79de4750b5e7462a656a90a1de42ea6))
97
+ * **24-02:** add .auto-next fallback writes to auto_advance hard stops in build skill ([f96b05d](https://github.com/SienkLogic/plan-build-run/commit/f96b05de1da60032de889b416d2a4e978cd2ec8a))
98
+ * **25-01:** add ROADMAP.md read to continue skill for milestone boundary detection ([85077b1](https://github.com/SienkLogic/plan-build-run/commit/85077b109d17d9ef01348e489c1f2b4cdcb6c57d))
99
+ * **25-01:** GREEN - add validateRoadmap and ROADMAP.md validation to check-plan-format ([e77f0d7](https://github.com/SienkLogic/plan-build-run/commit/e77f0d7f629f8ff35be9c9718b4ec4fc54472550))
100
+ * **25-01:** GREEN - PLAN.md writes trigger ROADMAP Planning status without regression ([97c4d91](https://github.com/SienkLogic/plan-build-run/commit/97c4d91c4d0adda1b5e4caa2c632a2d26cf4a450))
101
+ * **25-02:** GREEN - add checkRoadmapWrite routing to post-write-dispatch ([d40887d](https://github.com/SienkLogic/plan-build-run/commit/d40887d1ee8d69df6f433c9b9e340d5e58dbe263))
102
+ * **25-02:** GREEN - implement isHighRisk with status regression and phase gap detection ([f46f8c9](https://github.com/SienkLogic/plan-build-run/commit/f46f8c909c69873c6a6aaf3b4a5570ab336fac3a))
103
+ * **25-02:** GREEN - implement validatePostMilestone for milestone completion checks ([a46886e](https://github.com/SienkLogic/plan-build-run/commit/a46886eafe65a636ddf9972a3a75e61c8f347d41))
104
+ * **26-02:** GREEN - add 150-line advisory warning to checkStateWrite ([7b0d0a3](https://github.com/SienkLogic/plan-build-run/commit/7b0d0a35b41fe51cc3821cd9e2a95c6bd86c438f))
105
+ * **26-02:** GREEN - add cross-plugin sync advisory hook ([fffe35c](https://github.com/SienkLogic/plan-build-run/commit/fffe35c127c81be72be901ecbc8f81ae36661ab8))
106
+ * **27-01:** add PreToolUse Read hook to block SKILL.md self-reads ([8d4775e](https://github.com/SienkLogic/plan-build-run/commit/8d4775e67d820a7ce136094e994b3d25f5c63b9a))
107
+ * **27-01:** add session length guard to auto-continue with warn at 3, hard-stop at 6 ([3ecd460](https://github.com/SienkLogic/plan-build-run/commit/3ecd4605df1edfaf8589526cbc937e886d87c1dc))
108
+ * **28-01:** add local LLM foundation — client, health, metrics, config schema, hook integrations, tests ([331f337](https://github.com/SienkLogic/plan-build-run/commit/331f337b6623e926da3f1c86491876b0565d9281))
109
+ * **29-01:** integrate local LLM into hooks — artifact classification, task validation, error classification, CLI ([1d42a14](https://github.com/SienkLogic/plan-build-run/commit/1d42a1400227680cab271f1761159de76b091e1f))
110
+ * **30-01:** add metrics display — session summaries, status skill, CLI, dashboard analytics ([4d5d614](https://github.com/SienkLogic/plan-build-run/commit/4d5d614fc246fc3a6f2a3d43fc8ae7611cf0c63f))
111
+ * **30-03:** add local-llm-metrics.service.js with getLlmMetrics and Vitest tests ([37d8e59](https://github.com/SienkLogic/plan-build-run/commit/37d8e5951d8ccea935d0ad71e99e026245a0dc47))
112
+ * **30-03:** wire getLlmMetrics into /analytics route and add Local LLM Offload section to EJS template ([e980348](https://github.com/SienkLogic/plan-build-run/commit/e980348c75a904e49d2262aafc7932a2f59a32a3))
113
+ * **31-01:** add adaptive router — complexity heuristic, confidence gate, 3 routing strategies ([91db4be](https://github.com/SienkLogic/plan-build-run/commit/91db4be5562ba05915905e931a10e47af7246e9e))
114
+ * **32-01:** add agent support — source scoring, error classification, context summarization, prompt injection ([83890f9](https://github.com/SienkLogic/plan-build-run/commit/83890f96117f8fe776248c0f28f560d960c32ce7))
115
+ * **33-01:** add shadow mode, threshold tuner, comprehensive tests, docs, cross-plugin sync ([379ce7f](https://github.com/SienkLogic/plan-build-run/commit/379ce7f6a88ec4ffa5c11dc9bf0c2c28462ec9e8))
116
+ * **34-01:** add config.features.source_scoring feature flag guard to score-source.js ([a7bd37a](https://github.com/SienkLogic/plan-build-run/commit/a7bd37a629e0fafefe4f0484deee965923f0364c))
117
+ * **34-01:** wire runShadow() into router.js post-call path for all 3 routing strategies ([06fcfb5](https://github.com/SienkLogic/plan-build-run/commit/06fcfb501c64a9769501715f0afc99978dbc7398))
118
+ * **35-01:** GREEN - add escapeHtml helper and use it in HTMX error handler path ([f29965e](https://github.com/SienkLogic/plan-build-run/commit/f29965ea450f56e71b7cef132f0fe6d3db9cfe74))
119
+ * **35-01:** GREEN - add sanitize-html post-processing to planning.repository ([440a97a](https://github.com/SienkLogic/plan-build-run/commit/440a97a08378e58eb931c5f62d2e2852561a581a))
120
+ * **35-03:** add Quick Tasks view with /quick and /quick/:id routes ([921b288](https://github.com/SienkLogic/plan-build-run/commit/921b288d327867d8033afb6fc51e3f5dd88f0657))
121
+ * **35-05:** add Audit Reports view with /audits and /audits/:filename routes ([aba41ce](https://github.com/SienkLogic/plan-build-run/commit/aba41ce7eccfcf4fedff7116ee0afb1f20cd796b))
122
+ * **35-05:** GREEN - implement audit.service.js with listAuditReports and getAuditReport ([6025452](https://github.com/SienkLogic/plan-build-run/commit/602545216c12f7472111b54db24489eab88394b0))
123
+ * **36-01:** add .status-badge--sm and .status-badge--lg variants; tokenize base badge sizing ([864afc9](https://github.com/SienkLogic/plan-build-run/commit/864afc9d542390f04dfcf4f9ef47e7ca3ef2894f))
124
+ * **36-01:** expand tokens.css with card, shadow, transition, table, and badge tokens ([62a2469](https://github.com/SienkLogic/plan-build-run/commit/62a2469f1230ef8c36ed0f72b44cd956b9d430d2))
125
+ * **36-02:** create phase-timeline.ejs and activity-feed.ejs partials ([f5ae581](https://github.com/SienkLogic/plan-build-run/commit/f5ae581819ab03e38939064aa4352e4d75f63387))
126
+ * **36-02:** GREEN - add getRecentActivity and deriveQuickActions to dashboard.service.js ([82883ae](https://github.com/SienkLogic/plan-build-run/commit/82883ae7c914a9ac26c16182aa423ea0e4848658))
127
+ * **36-02:** rework dashboard-content.ejs with status cards, timeline, activity feed, and quick actions ([54b138b](https://github.com/SienkLogic/plan-build-run/commit/54b138b38203239e27159a5bad72019fdb994d69))
128
+ * **36-03:** add prev/next phase navigation to phase detail view ([334812d](https://github.com/SienkLogic/plan-build-run/commit/334812d61632d5f0acd1ad06dba1a326bd4e6ab7))
129
+ * **36-04:** enrich getPhaseDetail with planTitle, taskCount, and mustHaves ([44a89ad](https://github.com/SienkLogic/plan-build-run/commit/44a89ad9e521aede77e0593e18843ad2d41e8e2a))
130
+ * **36-04:** overhaul plan cards to use .card component with wave, task count, and status ([1df3a6b](https://github.com/SienkLogic/plan-build-run/commit/1df3a6b17fbe6fe40d1bd38182e1ef5b05c803c9))
131
+ * **36-04:** replace commit history table with visual .commit-timeline in phase-content.ejs ([baece7b](https://github.com/SienkLogic/plan-build-run/commit/baece7b1fe9502a3f947ac67927a4beccf18e03a))
132
+ * **36-05:** add config page CSS to layout.css ([cce9a90](https://github.com/SienkLogic/plan-build-run/commit/cce9a90a20c867f63eb74c3cb66b557ee5a4f18e))
133
+ * **36-05:** add config shell page, hybrid form partial, and config CSS ([e40a82d](https://github.com/SienkLogic/plan-build-run/commit/e40a82d5e6a4ab2f0531ecd703ce37c4b0c44d9a))
134
+ * **36-05:** add config.service with readConfig, writeConfig, validateConfig (TDD) ([4df72f4](https://github.com/SienkLogic/plan-build-run/commit/4df72f400c37a313fe4b60266075203fddc88bba))
135
+ * **36-05:** add GET /config and POST /api/config routes ([150f7e4](https://github.com/SienkLogic/plan-build-run/commit/150f7e49d76315da74206a00c9d0b7d63efc9201))
136
+ * **36-06:** add GET /research and GET /research/:slug routes with HTMX support ([5a79666](https://github.com/SienkLogic/plan-build-run/commit/5a7966658417460606ab49613099acf180e62bf2))
137
+ * **36-06:** add research list and detail EJS templates with card layout and HTMX navigation ([5433ba5](https://github.com/SienkLogic/plan-build-run/commit/5433ba5b086ea5022f20c01e1a8142a9ca4b71f1))
138
+ * **36-06:** GREEN - implement research.service with listResearchDocs, listCodebaseDocs, getResearchDocBySlug ([6e50a75](https://github.com/SienkLogic/plan-build-run/commit/6e50a757c2c9e0bd224a8971f7eb195c40f563fa))
139
+ * **36-07:** add GET /requirements route and EJS templates ([e64a2a5](https://github.com/SienkLogic/plan-build-run/commit/e64a2a553240c6295cd41963ae0c9d36e5b4f065))
140
+ * **36-07:** GREEN - implement getRequirementsData service ([c3e018e](https://github.com/SienkLogic/plan-build-run/commit/c3e018e1ef9889e966975b88df5ff14ea0ca3674))
141
+ * **36-08:** add GET /logs route and GET /logs/stream SSE endpoint ([215e7a5](https://github.com/SienkLogic/plan-build-run/commit/215e7a5ffeb74b37a98b3d71dc16cafe374ffd9d))
142
+ * **36-08:** create logs EJS templates with SSE live-tail and filter controls ([baf6c78](https://github.com/SienkLogic/plan-build-run/commit/baf6c7875c58fcf4986f5c5da4befadce29e8958))
143
+ * **36-08:** GREEN - implement log.service with listLogFiles, readLogPage, tailLogFile ([34bd22e](https://github.com/SienkLogic/plan-build-run/commit/34bd22e7f496e98878f9bbac76a18c3dc7042ce7))
144
+ * **38-01:** rebuild dashboard foundation with Hono + JSX + Open Props ([533f782](https://github.com/SienkLogic/plan-build-run/commit/533f782ea3909dd42e8072e3ebccb1a76dd30309))
145
+ * **39-01:** add Command Center view with live-updating dashboard components ([9d333a2](https://github.com/SienkLogic/plan-build-run/commit/9d333a251de19b52726f9dc3ac466acf8c104a7a))
146
+ * **40-01:** add Explorer view shell with phases tab and Alpine.js tabs ([1746054](https://github.com/SienkLogic/plan-build-run/commit/1746054f37065a598e780a3cfae1ab357c5a00bd))
147
+ * **40-02:** add MilestonesTab component and milestone.service type declarations ([9393bf2](https://github.com/SienkLogic/plan-build-run/commit/9393bf220ba82eb00b707438271da504e9adfe95))
148
+ * **40-02:** add TodosTab component with TodoListFragment and TodoCreateForm ([86c178c](https://github.com/SienkLogic/plan-build-run/commit/86c178ca6fb22eff43aafa10b42323ef72846e68))
149
+ * **40-02:** wire todos and milestones routes into explorer.routes.tsx ([7e0071e](https://github.com/SienkLogic/plan-build-run/commit/7e0071e179647d58375bc5055ae627045091a9fa))
150
+ * **40-03:** add NotesTab, AuditsTab, and QuickTab components ([fa98f5b](https://github.com/SienkLogic/plan-build-run/commit/fa98f5b907c18de4ee328051714cc5947e6e6bb6))
151
+ * **40-03:** add ResearchTab and RequirementsTab components with requirements CSS ([d5cccdc](https://github.com/SienkLogic/plan-build-run/commit/d5cccdc398dee7d113f5abfa6b1119de16ac7814))
152
+ * **40-03:** wire research, requirements, notes, audits, quick routes; add service .d.ts files ([6ee4421](https://github.com/SienkLogic/plan-build-run/commit/6ee4421e734f218d563ca957d659d6a2547a0204))
153
+ * **41-01:** create timeline routes, wire into app, link timeline CSS in Layout ([2daf291](https://github.com/SienkLogic/plan-build-run/commit/2daf291f26b83736b6dc70ea040ed11b563487c8))
154
+ * **41-01:** create timeline.service.js with event aggregation and filtering ([49ea52a](https://github.com/SienkLogic/plan-build-run/commit/49ea52a84878065c0ce5a84f22b22b94f1deae89))
155
+ * **41-01:** create TimelinePage component, EventStreamFragment, and timeline CSS ([380ae24](https://github.com/SienkLogic/plan-build-run/commit/380ae24e73d0aac74f71cc15b5575191399e556d))
156
+ * **41-02:** add analytics and dependency-graph routes; refactor TimelinePage with section tabs ([1444176](https://github.com/SienkLogic/plan-build-run/commit/1444176156ce3c9f8b75dc52c72989f3c1f5fe5b))
157
+ * **41-02:** add analytics/graph CSS sections and Mermaid CDN to Layout ([865d647](https://github.com/SienkLogic/plan-build-run/commit/865d6473b8b5981517814e89ce417304aae167f3))
158
+ * **41-02:** add AnalyticsPanel and DependencyGraph components ([5786e02](https://github.com/SienkLogic/plan-build-run/commit/5786e029069082d01cda51a46a8863ebdda113de))
159
+ * **42-01:** create settings routes, CSS, wire into app, and add config.service.d.ts ([fc24060](https://github.com/SienkLogic/plan-build-run/commit/fc24060ecb165b6468bd377c340877584a5eb09e))
160
+ * **42-01:** create SettingsPage shell and ConfigEditor component (form + raw JSON modes) ([ed2a579](https://github.com/SienkLogic/plan-build-run/commit/ed2a57943c0ef9f5b379607fcfe48f8f2e5d8f98))
161
+ * **42-02:** add log viewer routes (page, entries, SSE tail) and CSS ([3656fef](https://github.com/SienkLogic/plan-build-run/commit/3656fef638bbb6bed8146555a0a5f7922d3acc24))
162
+ * **42-02:** add LogFileList, LogEntryList, and LogViewer components ([98998bb](https://github.com/SienkLogic/plan-build-run/commit/98998bbe84004e91ffba6809ec6ba198e4babc82))
163
+ * **44-01:** add inline SVG icons to sidebar nav and brand area ([4c31c64](https://github.com/SienkLogic/plan-build-run/commit/4c31c641e21997817386f6e806fd738c699fd98c))
164
+ * **44-01:** create StatCardGrid component and stat-card CSS system ([e1921cf](https://github.com/SienkLogic/plan-build-run/commit/e1921cfe939bca0417ee14dda8b4d6c0b883a8df))
165
+ * **44-01:** wire StatCardGrid into command-center route replacing StatusHeader+ProgressRing ([bc264a4](https://github.com/SienkLogic/plan-build-run/commit/bc264a4551929f7c1fb43ebda6e065fdb69e3708))
166
+ * **44-02:** add empty-state CSS component and apply to AttentionPanel and QuickActions ([92dc66e](https://github.com/SienkLogic/plan-build-run/commit/92dc66e95b9937b93b2cf4bed493d280aaa1e1cc))
167
+ * **44-02:** enhance Explorer phases rows and add status/priority filter selects to todos toolbar ([9434b3e](https://github.com/SienkLogic/plan-build-run/commit/9434b3e4ef190bbc4e6b42133e1ecf92161e6dfb))
168
+ * **44-02:** restructure Command Center into 2-column cc-two-col grid layout ([a602139](https://github.com/SienkLogic/plan-build-run/commit/a602139851abda7c7b031ac49d466c63595e768c))
169
+ * **44-03:** consolidate btn system into layout.css, add card hover shadow and cursor:pointer ([ec24c38](https://github.com/SienkLogic/plan-build-run/commit/ec24c3895b66706f7db363aa2ccd82d68fe79354))
170
+ * **44-03:** unify section label typography via --section-label-* tokens ([46b326e](https://github.com/SienkLogic/plan-build-run/commit/46b326e8c634a4f23a2e346283bdbda2a8b55932))
171
+ * **dashboard:** add responsive mobile layout with sidebar hamburger menu ([d95ee38](https://github.com/SienkLogic/plan-build-run/commit/d95ee38f71f471bd22dac818cbb34bda60d408ce))
172
+ * **quick-003:** add data-flow to plan-format reference, verification template, and integration report template ([8f61b02](https://github.com/SienkLogic/plan-build-run/commit/8f61b02a759632556e47f79b14f7c36d39aa57a3))
173
+ * **quick-003:** add data-flow verification to planner, verifier, and integration-checker agents ([eea56bc](https://github.com/SienkLogic/plan-build-run/commit/eea56bc1bba18a5a642ee52d6a9106a151f93aff))
174
+ * **quick-004:** add local LLM token counter to statusline ([52dbd8e](https://github.com/SienkLogic/plan-build-run/commit/52dbd8e960efb70f3de9f2bfbf8e046708d68ce0))
175
+ * **quick-004:** show session + lifetime LLM stats using stdin duration ([4fd0672](https://github.com/SienkLogic/plan-build-run/commit/4fd0672d184593e14f8e48e53ba72c6e4d49955d))
176
+ * **quick-008:** add block mode to checkNonPbrAgent for stronger enforcement ([5bd3614](https://github.com/SienkLogic/plan-build-run/commit/5bd361429a53f984fb1fcea69d76bf0ca1a4705c))
177
+ * **quick-008:** inject PBR workflow directive into SessionStart and PreCompact hooks ([e6fee97](https://github.com/SienkLogic/plan-build-run/commit/e6fee972cae9b551de16175607bd31da98d6f5c0))
178
+ * **quick-011:** add mobile responsive sidebar with hamburger toggle ([c0f4b23](https://github.com/SienkLogic/plan-build-run/commit/c0f4b2306e859a3c033dd63ee0ad61b21a7293a4))
179
+ * **quick-011:** fix status badge data-status attrs and mermaid dark mode ([b73eece](https://github.com/SienkLogic/plan-build-run/commit/b73eece54c5f4d510676b3e8acaa2d1b0ab01eae))
180
+ * **quick-013:** Wave C — completion markers, file read protocol, XML enhancement, context tiers ([1ff6148](https://github.com/SienkLogic/plan-build-run/commit/1ff61487bafac196723b1d368b9e6b418e8bbba9))
181
+ * **quick-014:** Wave D — inline deviation rules, scope boundaries, self-check hardening, spot-checks ([f6c377b](https://github.com/SienkLogic/plan-build-run/commit/f6c377b9120f2a12f5e671c8d48d7b0a56a30214))
182
+ * **quick-014:** Wave E + review fixes — context bridge, files_to_read, B3 completion, XML nesting ([27db68c](https://github.com/SienkLogic/plan-build-run/commit/27db68cc39fab486dbf90f482ab128852905c183))
183
+ * **tools:** add /pbr:audit skill for session compliance and UX review ([8e942bc](https://github.com/SienkLogic/plan-build-run/commit/8e942bcd2836e0fb6f0b425eddb39ebf6c5b7659))
184
+ * **tools:** add /pbr:dashboard skill with auto-launch on session start ([1ca0425](https://github.com/SienkLogic/plan-build-run/commit/1ca042584783bdfbc762fe5661b5c62e31ffcdfc))
185
+ * **tools:** add /pbr:do freeform router and smart skill suggestions in hook ([b19533e](https://github.com/SienkLogic/plan-build-run/commit/b19533ef6f57f890130d128d5816058bac3c63a7))
186
+ * **tools:** add /pbr:statusline command to install PBR status line ([f1266aa](https://github.com/SienkLogic/plan-build-run/commit/f1266aa01ed0dda9eff41da47f10287342b6b0d5))
187
+ * **tools:** add 3 local LLM operations — classify-commit, triage-test-output, classify-file-intent ([55c2558](https://github.com/SienkLogic/plan-build-run/commit/55c255887af3562eef823314f79a4db6baa7b261))
188
+ * **tools:** add D10 test plan coverage dimension to plan-checker agent ([cf36b60](https://github.com/SienkLogic/plan-build-run/commit/cf36b604371c5c6e27aa476e27b2bf782ca175a2))
189
+ * **tools:** add EnterPlanMode interception hook to redirect to PBR commands ([6b7b9f9](https://github.com/SienkLogic/plan-build-run/commit/6b7b9f94b1ebdeda207670083f5f78873964c7aa))
190
+ * **tools:** add freeform text guard hook for /pbr:plan and todo work subcommand ([42c6527](https://github.com/SienkLogic/plan-build-run/commit/42c65270ee72045a718f6111388a839d54c7a7e7))
191
+ * **tools:** add GitHub Copilot CLI plugin port ([64bb081](https://github.com/SienkLogic/plan-build-run/commit/64bb081a1739a9b8fac111f5f7d259f9d04cf39a))
192
+ * **tools:** add help docs, concurrent tests, and discuss requirements surfacing ([ef66bdc](https://github.com/SienkLogic/plan-build-run/commit/ef66bdcff94dd641a8f1a2972efac67d48200e7a))
193
+ * **tools:** add local LLM skill-level fallbacks and platform compatibility docs ([92abfc7](https://github.com/SienkLogic/plan-build-run/commit/92abfc7bc219c85b408593e8c0944db712bf07b9))
194
+ * **tools:** add milestone preview subcommand across all plugins ([a9b65fc](https://github.com/SienkLogic/plan-build-run/commit/a9b65fc142f59a24b0f3a06f303b33d3e25d55cf))
195
+ * **tools:** add milestones page to dashboard with archived milestone support ([de96735](https://github.com/SienkLogic/plan-build-run/commit/de96735af69fb14befdfc9d08f767d9fa5a13f97))
196
+ * **tools:** add post-compaction recovery, pbr-tools CLI reference, and dashboard UI banner ([9cc8f30](https://github.com/SienkLogic/plan-build-run/commit/9cc8f304072cd9f79fd18c94f25cafccf5e00163))
197
+ * **tools:** add PR title validation and improved PR template ([f33c5a7](https://github.com/SienkLogic/plan-build-run/commit/f33c5a79d290c404f177b473caffdc8d7a2afe58))
198
+ * **tools:** add PreToolUse additionalContext soft warnings for risky operations ([adb77ae](https://github.com/SienkLogic/plan-build-run/commit/adb77aee7444a5058f94a6f17bcbedc3f27643e9))
199
+ * **tools:** add review verifier post-check and stale active-skill detection ([37d819a](https://github.com/SienkLogic/plan-build-run/commit/37d819acc59b30e5d86eb2ea672d3f13122b1beb))
200
+ * **tools:** add rollback downstream invalidation, complete help docs, dashboard route tests ([bb4bcb1](https://github.com/SienkLogic/plan-build-run/commit/bb4bcb111b25284764d546f46411b844b8069a4d))
201
+ * **tools:** add run-hook.js wrapper for Windows MSYS path normalization ([20286c3](https://github.com/SienkLogic/plan-build-run/commit/20286c32bd6477eba4b075d11c7ebfdf90d0dd57))
202
+ * **tools:** add scan mapper area validation and stale Building status detection ([110db29](https://github.com/SienkLogic/plan-build-run/commit/110db29f5444c716e9558935c3e4b12cc9ab6fab))
203
+ * **tools:** add stale active-skill session-start warning and copilot hook limitation docs ([8dfcffa](https://github.com/SienkLogic/plan-build-run/commit/8dfcffa5442f0579435d2db1232215335f6167b4))
204
+ * **tools:** add state-sync plans_total fix, anti-pattern rule for Skill-in-Task, and social images ([8a2c784](https://github.com/SienkLogic/plan-build-run/commit/8a2c784469dcccb74388838348c6f31adcc89df1))
205
+ * **tools:** add STATE.md backup step before health skill auto-fix regeneration ([173cde6](https://github.com/SienkLogic/plan-build-run/commit/173cde6d90966f13ab048ba268bd3afb8b59c70e))
206
+ * **tools:** add summary gate hook to enforce SUMMARY before state advance ([55a0bd4](https://github.com/SienkLogic/plan-build-run/commit/55a0bd4578f8f122b0d3618552f51474a62431dd))
207
+ * **tools:** add worktree isolation, ConfigChange hook, and claude agents docs ([8b3d821](https://github.com/SienkLogic/plan-build-run/commit/8b3d82108febfa5a5ec80a37bcbee7a652b3beb5))
208
+ * **tools:** archive milestones into versioned directories with phase migration ([5951613](https://github.com/SienkLogic/plan-build-run/commit/5951613fa8d27b99b9a07523364a9ba7f8ac2fd9))
209
+ * **tools:** auto-close satisfied pending todos after quick task and build completion ([56ead9d](https://github.com/SienkLogic/plan-build-run/commit/56ead9d46ece7b4c6164dd983ca79e6a195db18c))
210
+ * **tools:** completion markers, file-read protocol, spot-checks for secondary skills ([efd9dc9](https://github.com/SienkLogic/plan-build-run/commit/efd9dc908c8ce523794195133beddd33e6fccdaa))
211
+ * **tools:** enable project-scoped memory for planner agent ([fb6da2d](https://github.com/SienkLogic/plan-build-run/commit/fb6da2d3fc70ebe911803ee23c4374fa30612da3))
212
+ * **tools:** GSD gap implementation — pbr-tools split, bug fixes, behavioral tests ([12cfaa6](https://github.com/SienkLogic/plan-build-run/commit/12cfaa6c93bdb541d3408377d8d75c93f78ea8d5))
213
+ * **tools:** integrate milestones into workflow lifecycle ([35bf5b7](https://github.com/SienkLogic/plan-build-run/commit/35bf5b7addfa03914012a9cc6c73eece59f2267e))
214
+ * **tools:** rebrand towline to plan-build-run ([2ce02a7](https://github.com/SienkLogic/plan-build-run/commit/2ce02a7422f7e8a5ccd9098e0cd3e06126ce6e65))
215
+ * **tools:** require user confirmation before debugger agent applies fixes ([604e775](https://github.com/SienkLogic/plan-build-run/commit/604e77592cee630a74dc2f2b71671e6fa3dbd3c5))
216
+ * **tools:** resolve exploration backlog — fix script bugs, add copilot hooks, improve recovery ([ef9e81a](https://github.com/SienkLogic/plan-build-run/commit/ef9e81a662d11402c261e3acb638fc0005045d42))
217
+ * **tools:** use last_assistant_message in Stop/SubagentStop hooks ([7894c5e](https://github.com/SienkLogic/plan-build-run/commit/7894c5ecebba9ee600234ebf665d8fc422a220d6))
218
+ * **tools:** Wave B — compound init commands, bug fixes, and reference upgrades ([78deaa6](https://github.com/SienkLogic/plan-build-run/commit/78deaa6890b6c513ac1826161552beef6719109b))
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * **01-01:** add cursor-pbr entry to marketplace manifest (PLUG-03) ([2ac7ca1](https://github.com/SienkLogic/plan-build-run/commit/2ac7ca1ff7c3880f4e610433969e382c4695f19d))
224
+ * **01-01:** hasPlanFile now matches numbered plan files like PLAN-01.md ([c0a4a6d](https://github.com/SienkLogic/plan-build-run/commit/c0a4a6d279497cce6593b9825537fbba8cda6c9e))
225
+ * **01-02:** add plan skill write-guard to check-skill-workflow.js ([9c07bc4](https://github.com/SienkLogic/plan-build-run/commit/9c07bc4e725dc3655fc4a86cbbb6df7a92c3f038))
226
+ * **06-01:** add skill-local templates and prompt-partials missed in initial port ([8279c57](https://github.com/SienkLogic/plan-build-run/commit/8279c576951c37cc461373a3ee4732337a39b51b))
227
+ * **06-03:** fix planner naming convention, executor timestamps, and statusline backup ([55ecd12](https://github.com/SienkLogic/plan-build-run/commit/55ecd12810d01e1c522da7659dde8b0f4627bbf9))
228
+ * **09-01:** use relative path for logo in plugin manifest ([341bacf](https://github.com/SienkLogic/plan-build-run/commit/341bacf776b31a321e1b2ac06678c8072b4addf0))
229
+ * **14-01:** add missing #sse-status element to header ([7a2b7ba](https://github.com/SienkLogic/plan-build-run/commit/7a2b7ba5b451ff87a9435c45feecf4ef76f794f1))
230
+ * **14-02:** clear milestone cache between tests to prevent stale data ([449f15e](https://github.com/SienkLogic/plan-build-run/commit/449f15ec05d8aecea14d4ea5c8a533747f73959d))
231
+ * **18-01:** HTMX navigation consistency, SSE tooltip, error page fix, remove deprecated layout ([79ddc58](https://github.com/SienkLogic/plan-build-run/commit/79ddc588b29329cff878ceea813be9e8d8cef5f8))
232
+ * **23-01:** register /pbr:do command and fix critical audit findings ([d73e8a7](https://github.com/SienkLogic/plan-build-run/commit/d73e8a7acdcb5bf9b9494de66eb73312c2d36204))
233
+ * **23-02:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in cursor-pbr ([e36c614](https://github.com/SienkLogic/plan-build-run/commit/e36c6145da3d27f1a6f0cea1290a1245208bf1f3))
234
+ * **23-03:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in copilot-pbr ([27181a4](https://github.com/SienkLogic/plan-build-run/commit/27181a47d056183266bb12bf2131bf1f3cd250d0))
235
+ * **23-04:** replace subagents terminology with agents in cursor-pbr ([f5af300](https://github.com/SienkLogic/plan-build-run/commit/f5af300cabedf3c8f45217b4c46c90f22ef65031))
236
+ * **23-05:** fix subagents terminology in copilot-pbr and sync ROADMAP template ([9b999f0](https://github.com/SienkLogic/plan-build-run/commit/9b999f080711f7515db95d71245a2e0f826d6403))
237
+ * **23-07:** strip hookSpecificOutput wrapper from check-phase-boundary and pre-write-dispatch ([19db6d6](https://github.com/SienkLogic/plan-build-run/commit/19db6d634f023c86bfe1e51d259c815d813aca60))
238
+ * **23-09:** reorder copilot-pbr hooks.json postToolUseFailure before preToolUse to match pbr canonical ordering ([d8003d8](https://github.com/SienkLogic/plan-build-run/commit/d8003d808b614bfc4bab77c524b0931413dc8171))
239
+ * **23-09:** use decision:block in validate-skill-args.js, remove orphaned JSDoc in validate-task.js ([ada9e3d](https://github.com/SienkLogic/plan-build-run/commit/ada9e3d0914e6d47c190792d3f66340ca22e3857))
240
+ * **23-10:** correct dispatch table — move check-doc-sprawl and check-skill-workflow to pre-write-dispatch ([e1709f7](https://github.com/SienkLogic/plan-build-run/commit/e1709f70b8262d1c673ea80895cda7086c6de45b))
241
+ * **23-10:** remove dead body from checkStatuslineRules in check-skill-workflow.js ([8bf0218](https://github.com/SienkLogic/plan-build-run/commit/8bf0218f69aa040bbcfc87e11d8b602f6d9958bb))
242
+ * **23-10:** remove redundant allowed-tools Note from health SKILL.md Auto-Fix section ([93757f2](https://github.com/SienkLogic/plan-build-run/commit/93757f200ee6f77bd173d02d84e7e8e25edac5c1))
243
+ * **23-12:** fix remaining subagents terminology in scan SKILL.md derivatives ([8d49259](https://github.com/SienkLogic/plan-build-run/commit/8d4925943ab8cde0521843636bb1c81b2e388ece))
244
+ * **23-12:** fix test property paths and heredoc extraction to achieve 70% branch coverage ([85f0fa1](https://github.com/SienkLogic/plan-build-run/commit/85f0fa14fb9ea1c904f402ac8a2129ca5e22c56b))
245
+ * **23-12:** remove excess tool grants from synthesizer and plan-checker agents ([3e1284d](https://github.com/SienkLogic/plan-build-run/commit/3e1284d129e9b6ebdc1a53f8e02bbddef63337d8))
246
+ * **24-01:** remove building from ADVANCED_STATUSES gate ([36bd3da](https://github.com/SienkLogic/plan-build-run/commit/36bd3daa43c4463da0f34234ddd1f7816c26b24d))
247
+ * **24-02:** raise consecutive-continue guard threshold from 3 to 6 ([069b385](https://github.com/SienkLogic/plan-build-run/commit/069b385df469712db0abe3eb64424bfbddd2164c))
248
+ * **24-02:** remove .auto-next cleanup from session-cleanup to prevent race with Stop hook ([64b72d2](https://github.com/SienkLogic/plan-build-run/commit/64b72d200d1475f1d2ecb21260c163fdd69d2348))
249
+ * **25-02:** remove unused path import and result variable (lint) ([c63b390](https://github.com/SienkLogic/plan-build-run/commit/c63b3904ec532cf6ba353fb922384876ee7d6364))
250
+ * **26-01:** add CRITICAL dual-update markers to import Step 8b and milestone new Step 8 ([2652908](https://github.com/SienkLogic/plan-build-run/commit/26529088bd2f1e8c998a4f2fc6bd87489d3655d9))
251
+ * **26-01:** add CRITICAL frontmatter update marker to pause skill STATE.md step ([880ec8d](https://github.com/SienkLogic/plan-build-run/commit/880ec8d937d6befca07b7db43525da6cbacabe27))
252
+ * **26-02:** sync cross-plugin-sync hook to cursor-pbr and copilot-pbr hooks.json ([73e0470](https://github.com/SienkLogic/plan-build-run/commit/73e0470f48c97d4635ca801505f55eca4b0933b8))
253
+ * **36-01:** replace hardcoded CSS values with design tokens and expand config.service.js ([284fcf2](https://github.com/SienkLogic/plan-build-run/commit/284fcf270ead0ab7688cb6b1017f31891cd34c3d))
254
+ * **36-02:** add typeof guard for quickActions in dashboard template ([e75c4d1](https://github.com/SienkLogic/plan-build-run/commit/e75c4d129537ab4d4af30b6b66a45285376298f7))
255
+ * **36-08:** improve dashboard UX across 12 pages with 16 visual fixes ([7c51cb8](https://github.com/SienkLogic/plan-build-run/commit/7c51cb874e1868b7d92caf8dde380defe66ad2d5))
256
+ * **37-05:** fix breadcrumb icon, milestone spacing, summary lookup, and config mode dropdown ([d5661fd](https://github.com/SienkLogic/plan-build-run/commit/d5661fd01150adc9d9d889af4a68857c739c79c8))
257
+ * **40-02:** use JSX-compatible hx-on attribute syntax in TodoCreateForm ([d9cd51d](https://github.com/SienkLogic/plan-build-run/commit/d9cd51d9e7cc6c2e2e4df82d608c323d7ca04fdf))
258
+ * **42-02:** move beforeunload cleanup to addEventListener for JSX compatibility ([b93b0e4](https://github.com/SienkLogic/plan-build-run/commit/b93b0e4dcb0dc4db85408fd6db11fe683e5b3270))
259
+ * **43-02:** use tsx runtime with absolute static path for cross-cwd dashboard launch ([605c99d](https://github.com/SienkLogic/plan-build-run/commit/605c99d604c60db06477f87deac2e89bd5b3cc45))
260
+ * **dashboard:** handle todo files with H1 title and high/medium/low priority ([a8dadcf](https://github.com/SienkLogic/plan-build-run/commit/a8dadcfe3b7226c2af8406df3a8dfe627b2c1cf5))
261
+ * **dashboard:** plan count regex and mermaid rendering ([a423a7c](https://github.com/SienkLogic/plan-build-run/commit/a423a7c0c336a1907c6c22b27d94495dfa857018))
262
+ * **dashboard:** show completed milestones on roadmap when all phases archived ([a3469dc](https://github.com/SienkLogic/plan-build-run/commit/a3469dc2f399ff32241a0ad0630f980ee6b1b759))
263
+ * **quick-001:** fix agent prompt issues from audit (items 4-7) ([bf9cde2](https://github.com/SienkLogic/plan-build-run/commit/bf9cde2a9ba2b74ea4b523ab49e6101b6e26bb83))
264
+ * **quick-001:** fix agent prompt issues from audit (items 8-10) ([ca374fc](https://github.com/SienkLogic/plan-build-run/commit/ca374fc002b955893c38e5c8b7ceeaeb7c8398d3))
265
+ * **quick-001:** fix STATE.md body drift, stale status line, and ROADMAP sync gaps ([994977c](https://github.com/SienkLogic/plan-build-run/commit/994977c196c0d4f3f851e5ad6c7049fb1952d858))
266
+ * **quick-003:** pass data.session_id to LLM operations instead of undefined ([6670377](https://github.com/SienkLogic/plan-build-run/commit/6670377a42a5030c11283f7578ad3c882a15b2aa))
267
+ * **quick-004:** render LLM stats on second line with explicit Local LLM label ([89a8dae](https://github.com/SienkLogic/plan-build-run/commit/89a8dae9aa390788e7513149e01d946b038b5918))
268
+ * **quick-006:** bump vitest to ^4.0.18 to match @vitest/coverage-v8 peer dep ([a959641](https://github.com/SienkLogic/plan-build-run/commit/a9596419355803f031c7e71ff649ffd33ca7a3ab))
269
+ * **quick-007:** correct todo test to match title fallback behavior (H1 heading recovery) ([8e5012d](https://github.com/SienkLogic/plan-build-run/commit/8e5012d84843d96dc780888dba200f81e5f85c45))
270
+ * **quick-008:** propagate block exit code from checkNonPbrAgent in validate-task dispatcher ([f02fc19](https://github.com/SienkLogic/plan-build-run/commit/f02fc198e1e7d9eb8be17a85805a413e250be2a0))
271
+ * **quick-009:** fix dashboard UX across milestones, timeline, logs, todos, and layout ([0b09776](https://github.com/SienkLogic/plan-build-run/commit/0b09776c7251c3587587c637e107514462c30c14))
272
+ * **quick-010:** use lockedFileUpdate for atomic writes, fix shell injection, add writeActiveSkill ([c18107d](https://github.com/SienkLogic/plan-build-run/commit/c18107d05a29558b8d7167609128ade4f83c0baf))
273
+ * **quick-011:** move hamburger button outside sidebar for correct fixed positioning ([2034b2d](https://github.com/SienkLogic/plan-build-run/commit/2034b2deb77c2bdf584282879f561a72d90929eb))
274
+ * **quick-012:** remove cursor-pbr from Claude Code marketplace listing ([5baf0be](https://github.com/SienkLogic/plan-build-run/commit/5baf0be27015411e69f7d6f9f148029d1d3502ea))
275
+ * **quick-012:** remove unrecognized 'platform' key from marketplace.json ([d4c91d4](https://github.com/SienkLogic/plan-build-run/commit/d4c91d436f1460d8fdd5e18642e5d7d83a39e7bc))
276
+ * **quick-014:** add /clear recommendations to derivative plugin completion sections ([1bc81da](https://github.com/SienkLogic/plan-build-run/commit/1bc81da6a7c0f1b130afbf803e9675205437f462))
277
+ * **quick-014:** review pass 2 — XML nesting, KNOWN_AGENTS prefix, completion markers, spot-check sync ([836e47d](https://github.com/SienkLogic/plan-build-run/commit/836e47dcdf649340f15ab72782006c366d832fae))
278
+ * **tools:** add --repo flag to gh pr merge in release workflow ([dffd1ed](https://github.com/SienkLogic/plan-build-run/commit/dffd1ede2abaef29333dcb6e184de5a2ba26ccef))
279
+ * **tools:** add commonjs package.json to scripts for ESM project compat ([b2f59eb](https://github.com/SienkLogic/plan-build-run/commit/b2f59eb2938da8c6ff1300c18134e4f1e9d00614))
280
+ * **tools:** add milestone routing to explore skill completion ([9629c34](https://github.com/SienkLogic/plan-build-run/commit/9629c343d41f4ba61b7129a51ce7f958058e8607))
281
+ * **tools:** add pull_request trigger to CI so branch protection checks pass ([ffbe56b](https://github.com/SienkLogic/plan-build-run/commit/ffbe56b63fd297e72ba09836c5c854a1f2177747))
282
+ * **tools:** add Skill tool to 4 PBR skills that use auto-advance chaining ([e073cb7](https://github.com/SienkLogic/plan-build-run/commit/e073cb752c2e26254512c204cadc2a2765142231))
283
+ * **tools:** auto-route quick skill to plan skill when user selects Full plan ([8b471d8](https://github.com/SienkLogic/plan-build-run/commit/8b471d8d58bbe0f08ef818e2dc2423c8e698beef))
284
+ * **tools:** comprehensive codebase review — 33 improvements across 7 waves ([16d3f34](https://github.com/SienkLogic/plan-build-run/commit/16d3f342c8814517a1ddb98c5af84e39e1f3ef9e))
285
+ * **tools:** dashboard derives phase statuses from STATE.md frontmatter ([f30b48d](https://github.com/SienkLogic/plan-build-run/commit/f30b48dd30c191f90cdabfe2f1cac058ec7d628a))
286
+ * **tools:** dashboard parses H3-style ROADMAP.md phases and flexible bold syntax ([bcf6f8f](https://github.com/SienkLogic/plan-build-run/commit/bcf6f8f430e20411ec0b2831c22a7be963ca895e))
287
+ * **tools:** dashboard service and route improvements ([191eae1](https://github.com/SienkLogic/plan-build-run/commit/191eae10188521632dcf780c874d1f3ba3f40c26))
288
+ * **tools:** enforce quick task directory creation with CRITICAL markers and hook validation ([12a4fcc](https://github.com/SienkLogic/plan-build-run/commit/12a4fcc86722be30dbd7c8d22075b571da03d579))
289
+ * **tools:** exclude plugin files from context budget tracking + skill refinements ([6ed0c43](https://github.com/SienkLogic/plan-build-run/commit/6ed0c43132dbd6574c63b05f5c9e03f16bd9ab39))
290
+ * **tools:** extend executor commit check to quick skill and add .catch() to log-tool-failure ([23f52d7](https://github.com/SienkLogic/plan-build-run/commit/23f52d7b8db4d63f84619fcc1f9e7131828bcf8f))
291
+ * **tools:** fix CI lint errors and macOS symlink test failure ([2b85f6b](https://github.com/SienkLogic/plan-build-run/commit/2b85f6b68d07390452769be23b1751525dafc4ad))
292
+ * **tools:** fix lint errors and bump version to 2.1.0 ([5d88416](https://github.com/SienkLogic/plan-build-run/commit/5d8841632af6934ca704cf7bb201c42a4254db7a))
293
+ * **tools:** fix release workflow auth and CI lint paths ([4774474](https://github.com/SienkLogic/plan-build-run/commit/47744742c04fac89a822ce608bae777f57820fae))
294
+ * **tools:** handle concurrent write corruption in flaky test across platforms ([1b5b129](https://github.com/SienkLogic/plan-build-run/commit/1b5b129eec546323ca13a94b6acfebf6850d1f0a))
295
+ * **tools:** handle empty string race in concurrent .active-skill test on Windows ([fd1628f](https://github.com/SienkLogic/plan-build-run/commit/fd1628ff0528f74f766e593cc0f2353a4d504308))
296
+ * **tools:** improve dashboard markdown rendering and font loading ([59fd4c2](https://github.com/SienkLogic/plan-build-run/commit/59fd4c21482239d0410fc176d1303c28d81200f2))
297
+ * **tools:** lower coverage thresholds to match actual coverage after validate-task.js addition ([df1c396](https://github.com/SienkLogic/plan-build-run/commit/df1c396cd22a1f8246d2dbb58a63f13760f784bc))
298
+ * **tools:** parse simple two-column roadmap table in dashboard ([69f5a6f](https://github.com/SienkLogic/plan-build-run/commit/69f5a6f9e129926b660b34acb0e80012bf90e2dc))
299
+ * **tools:** prefix unused name var with underscore in version sync test ([a534b05](https://github.com/SienkLogic/plan-build-run/commit/a534b059e99c816c8b7053b1f33bf92bad41643a))
300
+ * **tools:** prevent lifetime LLM metrics from plateauing at 200 entries ([a62f5d8](https://github.com/SienkLogic/plan-build-run/commit/a62f5d837efce2b1aa48c5920f809d278ad4e53d))
301
+ * **tools:** remove platform-specific rollup dep from dashboard devDependencies ([009e17c](https://github.com/SienkLogic/plan-build-run/commit/009e17c39734bb3d1655906ec48186bd37360cbe))
302
+ * **tools:** remove unsupported --local flag from Copilot plugin install ([2f7bd2b](https://github.com/SienkLogic/plan-build-run/commit/2f7bd2bcb45d695713638e40539c0ccbf168efe6))
303
+ * **tools:** resolve lint errors in cross-plugin compat tests ([1bb6fd5](https://github.com/SienkLogic/plan-build-run/commit/1bb6fd5066189f27f9dee58d49533e28bb9f9556))
304
+ * **tools:** resolve lint errors in statusline workflow rules ([b801059](https://github.com/SienkLogic/plan-build-run/commit/b801059ce0d3361434a687a318a95b96a97313d6))
305
+ * **tools:** resolve markdownlint errors in planner agent and milestone skill ([178da16](https://github.com/SienkLogic/plan-build-run/commit/178da160313900472dcd3de9efe8ee111039b4d9))
306
+ * **tools:** resolve npm audit vulnerabilities via overrides ([fb7c798](https://github.com/SienkLogic/plan-build-run/commit/fb7c7989a8b2cb7eef0445a98331aa799d262f74))
307
+ * **tools:** revert npm overrides and relax audit level to critical ([b81015b](https://github.com/SienkLogic/plan-build-run/commit/b81015b126683c44fc0ab3abf8f10bb5c7ea9ba0))
308
+ * **tools:** revert release branch CI trigger (using non-strict protection instead) ([23a54c1](https://github.com/SienkLogic/plan-build-run/commit/23a54c11a87080a07fa70342aee1b1a4997e4aee))
309
+ * **tools:** standardize error messages with severity prefix and actionable next-steps ([7ab926c](https://github.com/SienkLogic/plan-build-run/commit/7ab926cdecffa0793b70529a9ed06205e7f0a9b9))
310
+ * **tools:** sync dashboard skill argument-hint to cursor plugin ([a180529](https://github.com/SienkLogic/plan-build-run/commit/a180529ae577c523332f368fa7792038408c91c0))
311
+ * **tools:** sync dashboard skill paths and missing templates across all plugins ([44e61ac](https://github.com/SienkLogic/plan-build-run/commit/44e61ac996db1a4cdf2d475e24f425ad442b3654))
312
+ * **tools:** trigger CI on release-please branch pushes for auto-merge ([f103a27](https://github.com/SienkLogic/plan-build-run/commit/f103a2739bbb5f452a76f2ea6e9771aa4459c04a))
313
+ * **tools:** update AskUserQuestion audit to reflect health skill auto-fix gates ([952a67f](https://github.com/SienkLogic/plan-build-run/commit/952a67ff5287a6e30f23b3f7eddeaf187f862c19))
314
+ * **tools:** update critical agents to use model: sonnet instead of inherit ([d3c77b2](https://github.com/SienkLogic/plan-build-run/commit/d3c77b2d85cd1d4a8c49c92b06d6ab6db5d2ab5a))
315
+ * **tools:** update validation script to handle run-hook.js bootstrap pattern ([080c6eb](https://github.com/SienkLogic/plan-build-run/commit/080c6eb3f3ad59e7a2c516f8e94d719daaacfed4))
316
+ * **tools:** use RELEASE_PAT for release-please to trigger CI on PRs ([5bbd50e](https://github.com/SienkLogic/plan-build-run/commit/5bbd50e7771df0409f35f5f229f855513a30bf8c))
317
+ * **tools:** warn on context budget tracker reset and roadmap sync parse failures ([32ce00f](https://github.com/SienkLogic/plan-build-run/commit/32ce00fafa4906801bbffcbd440658e933833522))
318
+
319
+
320
+ ### Documentation
321
+
322
+ * **08-03:** add agent-contracts.md reference documenting handoff schemas ([33e148e](https://github.com/SienkLogic/plan-build-run/commit/33e148e4761e261d0b1b65a2ab9e783269bae080))
323
+ * **09-01:** add setup scripts and improve installation instructions ([44ad95d](https://github.com/SienkLogic/plan-build-run/commit/44ad95d710d7491b0fb6ff8292c30fe81de20075))
324
+ * **10-01:** wire agent-contracts.md into agents and document abandoned debug resolution ([0d9159e](https://github.com/SienkLogic/plan-build-run/commit/0d9159e44e6e414420b6cbee9eca2dfe32e2acfa))
325
+ * **27-01:** add no-reread anti-pattern to executor agents across all plugins ([99f9805](https://github.com/SienkLogic/plan-build-run/commit/99f98052c39ca88d9f6323acb6adfa27581f5239))
326
+ * **34-01:** mark all LLM-01 through LLM-34 traceability entries as Verified ([182b858](https://github.com/SienkLogic/plan-build-run/commit/182b858478863495be0b7ca7a9150818a961873d))
327
+ * **quick-002:** add .active-skill stale detection to health Check 10 ([0ebf077](https://github.com/SienkLogic/plan-build-run/commit/0ebf0770f7bb84af4e503055e65f377a46d5cd93))
328
+ * **quick-002:** fix NEXT UP banner indentation in milestone SKILL.md ([b24f2af](https://github.com/SienkLogic/plan-build-run/commit/b24f2af7f8d141e3f946cf31dd3acd9373f0455d))
329
+ * **quick-002:** replace arrow-list with bullet style in help SKILL.md ([e268d85](https://github.com/SienkLogic/plan-build-run/commit/e268d85aa8f9904fba90bd0dbaf3002b187810eb))
330
+ * **quick-005:** add Local LLM nav link and mention in feature highlights ([4a905fc](https://github.com/SienkLogic/plan-build-run/commit/4a905fc3d329ecb899117c5adc0f8d01bbce49a9))
331
+ * **quick-005:** add Local LLM Offload section and update stats across README and Getting Started ([6c22b14](https://github.com/SienkLogic/plan-build-run/commit/6c22b1484f550c86a2da02450874e5851f11722d))
332
+ * **tools:** add /pbr:dashboard command to README dashboard section ([e36bdfd](https://github.com/SienkLogic/plan-build-run/commit/e36bdfd1d5b5f71ccdf0593a10a4f29202feebcb))
333
+ * **tools:** add missing 2.3.0 and 2.3.1 changelog entries ([93643be](https://github.com/SienkLogic/plan-build-run/commit/93643beee79322906aef2724cbfaa14f970688a2))
334
+ * **tools:** document minimum Claude Code v2.1.47 requirement for Windows hooks ([b3d5633](https://github.com/SienkLogic/plan-build-run/commit/b3d5633a80665a78b6f56c0bdf4da668af45774d))
335
+ * **tools:** fix banner consistency, add status/continue/do comparison, fix continue description ([1350ef3](https://github.com/SienkLogic/plan-build-run/commit/1350ef34af046b1f176d865ec57c630332e14e4e))
336
+ * **tools:** make platform badges clickable links to install pages ([cf9cf13](https://github.com/SienkLogic/plan-build-run/commit/cf9cf136aec349e411ccde36b36cf758c0b3bb3d))
337
+ * **tools:** resize header logo to 550px width ([e954e40](https://github.com/SienkLogic/plan-build-run/commit/e954e4055bf30f434a7d9dae5b7d71a54743ac29))
338
+ * **tools:** update demo GIF and rebrand demo scripts ([2c22cf1](https://github.com/SienkLogic/plan-build-run/commit/2c22cf1a97578cb81a8e8d07dd73ef0225c29afa))
339
+ * **tools:** update header logo ([f2bfa84](https://github.com/SienkLogic/plan-build-run/commit/f2bfa84ed0ad4bef12f0225ad60f374f59599093))
340
+ * **tools:** update header logo to pbr_banner_logo.png ([134852c](https://github.com/SienkLogic/plan-build-run/commit/134852c9f233727a65923d1e49f6dbccd5bb92ea))
341
+ * **tools:** update README with Copilot CLI support and current stats ([ac81ee6](https://github.com/SienkLogic/plan-build-run/commit/ac81ee6a1825971347e23f878c584ab9b04b44da))
342
+ * **tools:** update README with Cursor plugin section and CHANGELOG for v2.1.0 ([d68ff68](https://github.com/SienkLogic/plan-build-run/commit/d68ff689c974df9e1908b70206bcebe7d96ac09a))
343
+ * update CLAUDE.md coverage thresholds to 70% and test count to ~1666 ([0379115](https://github.com/SienkLogic/plan-build-run/commit/037911513fc9a335721fb3d8c14060c64c0f8e4a))
344
+
345
+ ## [2.36.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.35.1...plan-build-run-v2.36.0) (2026-02-27)
346
+
347
+
348
+ ### Features
349
+
350
+ * **01-01:** add build and plan executor gates to validate-task.js ([eb50498](https://github.com/SienkLogic/plan-build-run/commit/eb5049838fa24fc4e327f3fd63779e94a08225df))
351
+ * **01-01:** extend agent output validation to all 10 PBR agent types ([ec7d1dc](https://github.com/SienkLogic/plan-build-run/commit/ec7d1dc647ce72c3806f70a86576289991c23608))
352
+ * **01-01:** scaffold Cursor plugin directory structure and manifest ([4743cb2](https://github.com/SienkLogic/plan-build-run/commit/4743cb2598dbba1339101cc9c738869017117fe4))
353
+ * **01-02:** add skill-specific workflow rules and CRITICAL enforcement ([5b51b7e](https://github.com/SienkLogic/plan-build-run/commit/5b51b7e28ae935b1d5bfca3584d0fedd0c865c7c))
354
+ * **02-01:** add milestone, explore, import, scan write guards to checkSkillRules ([7c5bb1d](https://github.com/SienkLogic/plan-build-run/commit/7c5bb1daf6aec0db18e39f1be62393c6eb147267))
355
+ * **02-01:** port 10 agent definitions and workflow rules to Cursor format ([126fe76](https://github.com/SienkLogic/plan-build-run/commit/126fe764497186aaff24ac33782036f87b063409))
356
+ * **02-02:** add review planner gate to validate-task.js ([30f9031](https://github.com/SienkLogic/plan-build-run/commit/30f90313c6add9063f15fdff041d8bcb1671e625))
357
+ * **02-02:** strengthen ROADMAP sync warnings to CRITICAL level ([127f506](https://github.com/SienkLogic/plan-build-run/commit/127f5062d6d7006181616d0a3386a153d95f5909))
358
+ * **03-01:** add review verifier, milestone complete, and build dependency gates ([cfcf0d5](https://github.com/SienkLogic/plan-build-run/commit/cfcf0d55510ac52ec27c4ff466b751dd4635570c))
359
+ * **03-01:** port 6 core skills to Cursor format ([6c984a4](https://github.com/SienkLogic/plan-build-run/commit/6c984a4d56dfd1c3dcf40f29cc7e926775744b6c))
360
+ * **04-01:** add post-artifact validation for begin/plan/build and VERIFICATION.md ([353b8be](https://github.com/SienkLogic/plan-build-run/commit/353b8be3687db03843e0996914116231220b82a8))
361
+ * **04-01:** port 15 supporting skills to Cursor format ([ae0a8ae](https://github.com/SienkLogic/plan-build-run/commit/ae0a8aec895036a56d85b38ed7841ec800840a62))
362
+ * **05-01:** adapt hooks.json for Cursor plugin with shared script paths ([eaa1a0c](https://github.com/SienkLogic/plan-build-run/commit/eaa1a0c2d82db06c2c21eb3b680bda766562aa1c))
363
+ * **05-01:** add STATE.md validation, checkpoint manifest check, and active-skill integrity warning ([3f0c7bc](https://github.com/SienkLogic/plan-build-run/commit/3f0c7bc09ae2508ae849972057b88818f0e18eb6))
364
+ * **06-01:** add .active-skill write and cleanup to begin, plan, review, import skills ([8c1132a](https://github.com/SienkLogic/plan-build-run/commit/8c1132ab93115f27f926637c89079a701dec2c43))
365
+ * **06-01:** port templates, references, and shared fragments to Cursor plugin ([43fc161](https://github.com/SienkLogic/plan-build-run/commit/43fc1610997caf0e13523896e97e2fd6ed25d757))
366
+ * **06-02:** add CRITICAL markers to file-creation steps in begin, build, milestone, setup, pause ([5b10576](https://github.com/SienkLogic/plan-build-run/commit/5b10576334f92cbf5464362044564b6eae0977b1))
367
+ * **07-01:** add Cursor plugin validation test suite with 92 tests ([72c328e](https://github.com/SienkLogic/plan-build-run/commit/72c328e2cc939bf08d59e530afb96e3dacc4bc87))
368
+ * **07-01:** add Write tool to verifier/integration-checker and update prose across all plugins ([a9fe348](https://github.com/SienkLogic/plan-build-run/commit/a9fe348654d434ab9c0f68d53bfeb52256354225))
369
+ * **07-01:** register missing skills in check-skill-workflow.js switch statement ([63bac6f](https://github.com/SienkLogic/plan-build-run/commit/63bac6f4338d5f9d22a8ea804a6f1851118f208e))
370
+ * **07-02:** add debugger advisory gate and milestone gaps_found status check ([c5acda2](https://github.com/SienkLogic/plan-build-run/commit/c5acda2f73ea6ce7ddd21bc5e8c52990c0abdacb))
371
+ * **07-02:** add mtime-based recency checks for researcher and synthesizer output ([c3685ad](https://github.com/SienkLogic/plan-build-run/commit/c3685adb2b051fce0f7b002272daa54d770016da))
372
+ * **08-01:** add cross-plugin compatibility test suite ([bad35e7](https://github.com/SienkLogic/plan-build-run/commit/bad35e746d6d9e64e309597e20acf58d1e82363f))
373
+ * **08-01:** add inline fallback formats to 7 template-dependent agents ([f9a1038](https://github.com/SienkLogic/plan-build-run/commit/f9a1038e8145e9c0dc48affd648ec4485a5008d3))
374
+ * **08-02:** add CRITICAL markers and fix agent handoff issues ([800bf5e](https://github.com/SienkLogic/plan-build-run/commit/800bf5e2d231ad36b3f5097ff889b22bd5577544))
375
+ * **09-01:** add gate error fix guidance and discuss deep-dive CRITICAL enforcement ([8f18fb7](https://github.com/SienkLogic/plan-build-run/commit/8f18fb72674061284f11d375b73ff51a25d5c387))
376
+ * **09-01:** add health auto-fix for common corruption patterns ([22f666a](https://github.com/SienkLogic/plan-build-run/commit/22f666a943449ecff5ccb3a24eda5d464055a9b0))
377
+ * **09-01:** add marketplace documentation, logo, and finalize manifest ([6a317af](https://github.com/SienkLogic/plan-build-run/commit/6a317afbd5356065ac984782154ade5c9518e43d))
378
+ * **09-01:** add rollback safety, setup idempotency, and todo archive safety ([914cc9b](https://github.com/SienkLogic/plan-build-run/commit/914cc9bd91a821e18c65e8c9c239976ddf47fb09))
379
+ * **09-02:** rewrite ui-formatting.md with unified double-line box format ([d5d96b4](https://github.com/SienkLogic/plan-build-run/commit/d5d96b45f717e556b3e8c9c0d3a9eb3e521a03fd))
380
+ * **09-02:** update error-reporting fragment with block reason guidance ([a266081](https://github.com/SienkLogic/plan-build-run/commit/a266081a19966e2925c9c05128f3ee97ab0dd38a))
381
+ * **09-03:** replace heavy bar and thin divider banners with double-line box format in all 24 skills ([a602cbb](https://github.com/SienkLogic/plan-build-run/commit/a602cbb03d25c65c89e41422cb0c66c6a831b9ca))
382
+ * **09-03:** sync banner replacements and 09-01/09-02 changes to cursor-pbr and copilot-pbr ([c6473f8](https://github.com/SienkLogic/plan-build-run/commit/c6473f8b6908a1d8252385b49c711fd023c257c7))
383
+ * **09-04:** replace Next Up headings with double-line box format in all PBR skills ([2f30dbe](https://github.com/SienkLogic/plan-build-run/commit/2f30dbe933be1714c87250cc86ffc2047f2705c4))
384
+ * **09-04:** sync Next Up box format to cursor-pbr and copilot-pbr derivatives ([2e3b848](https://github.com/SienkLogic/plan-build-run/commit/2e3b8487840c0f2d0673259817c63041f3ca66f5))
385
+ * **11-01:** create tokens.css with dual-mode design tokens ([efcc30c](https://github.com/SienkLogic/plan-build-run/commit/efcc30c856d7c0c1e888daa2dbb27b5aaeeeaa77))
386
+ * **11-01:** refactor layout.css to use semantic design tokens ([2f13a93](https://github.com/SienkLogic/plan-build-run/commit/2f13a93032d47cd6e52b0b669dd928ed8b0f5ffa))
387
+ * **11-02:** add theme toggle button with localStorage persistence ([f2a2c9b](https://github.com/SienkLogic/plan-build-run/commit/f2a2c9b8fea7c74fa2344593ceedf3d64ecfd6c5))
388
+ * **11-02:** pin Pico.css CDN to v2.0.6 ([54fdd1f](https://github.com/SienkLogic/plan-build-run/commit/54fdd1f5c20d7b411fa0e1ffcb70b76106f48241))
389
+ * **12-01:** add current-phase middleware for sidebar context ([bef4dd8](https://github.com/SienkLogic/plan-build-run/commit/bef4dd897b202acfe61b64b492efaa4acd022b82))
390
+ * **12-01:** implement mobile overlay sidebar with backdrop ([98548db](https://github.com/SienkLogic/plan-build-run/commit/98548db578ad7db06335fdce5b94a2a5b8fbfffa))
391
+ * **12-01:** redesign sidebar with collapsible sections and current phase card ([3d3e05c](https://github.com/SienkLogic/plan-build-run/commit/3d3e05c698bdfd0980ed1c51cdb08d800b3bcc42))
392
+ * **12-02:** add breadcrumb data to routes and include partial in content templates ([ed79edd](https://github.com/SienkLogic/plan-build-run/commit/ed79edd432310162256010e5db891b8c258b2722))
393
+ * **12-02:** create breadcrumbs partial and CSS styles ([232e917](https://github.com/SienkLogic/plan-build-run/commit/232e9173bdaefe92cd5780775e96c76396dcc0b3))
394
+ * **13-01:** add milestone history expandable table with stats and deliverables ([8774c0f](https://github.com/SienkLogic/plan-build-run/commit/8774c0fe9f2ad9dd4955131fbc7a8a240af797e2))
395
+ * **13-01:** add todo filtering by priority, status, and search with bulk complete ([95e9dfd](https://github.com/SienkLogic/plan-build-run/commit/95e9dfd3ca96b25526ff8016e7791dc1d8475a91))
396
+ * **13-02:** add dependency graph route, views, and sidebar link ([f972435](https://github.com/SienkLogic/plan-build-run/commit/f9724351166d360122cb66e4c15110ee3279890e))
397
+ * **13-02:** add Mermaid dependency graph generation to roadmap service ([b194455](https://github.com/SienkLogic/plan-build-run/commit/b194455f298b2ea0660fd26936d333fbb0f1feef))
398
+ * **13-03:** add analytics route, views, and sidebar link ([431dad7](https://github.com/SienkLogic/plan-build-run/commit/431dad79bedcba831a8e7d731803f3987b82a0ac))
399
+ * **13-03:** create analytics service with git-based metrics and TTL cache ([6c8c41a](https://github.com/SienkLogic/plan-build-run/commit/6c8c41a23cdfd736a4d2bceea01502ebe64514e8))
400
+ * **14-01:** add Last-Event-ID state recovery to SSE endpoint ([4b48cf1](https://github.com/SienkLogic/plan-build-run/commit/4b48cf1d03f2b6191dc6eb7c856abaf0a1aacdf6))
401
+ * **14-01:** create custom SSE client with exponential backoff ([5b855ec](https://github.com/SienkLogic/plan-build-run/commit/5b855ec7a19c606a286fbf6b6d4f40e89afce87f))
402
+ * **14-01:** reduce chokidar stability threshold to 500ms ([8a65e43](https://github.com/SienkLogic/plan-build-run/commit/8a65e43720a17d9b37ba63f55bfe5b37e83fb80f))
403
+ * **14-02:** add hx-indicator spinners to todo complete actions ([fc8c325](https://github.com/SienkLogic/plan-build-run/commit/fc8c32583e2a2eaa5b972344777091c4ce5bc67f))
404
+ * **14-02:** add TTL cache utility and integrate into analytics and milestone services ([19bd3ea](https://github.com/SienkLogic/plan-build-run/commit/19bd3eadfa5f13368176991e525c5adbdd3b8309))
405
+ * **15-01:** add error-card styling, loading indicator, and favicon ([f48c40f](https://github.com/SienkLogic/plan-build-run/commit/f48c40fca341d9144e7fa3bf7f2c2e0db9b1d5ab))
406
+ * **15-01:** add skip-to-content link, focus-visible styles, and ARIA labels ([fe2963b](https://github.com/SienkLogic/plan-build-run/commit/fe2963b266eae933a23ea0b74859ae8655964ad5))
407
+ * **15-01:** create reusable empty-state partial and integrate into views ([be8e5f5](https://github.com/SienkLogic/plan-build-run/commit/be8e5f57dc60e4c02d2cc656a156dd450bd45fa4))
408
+ * **15-02:** GREEN - analytics, cache, SSE tests pass against existing code ([1948189](https://github.com/SienkLogic/plan-build-run/commit/1948189fd9a74912017c3901413f3f0da0f1f073))
409
+ * **15-02:** GREEN - dependencies and breadcrumbs tests pass ([9b3f987](https://github.com/SienkLogic/plan-build-run/commit/9b3f9874fb3b5d50288ef36af6cb3edb4ea91260))
410
+ * **16-01:** redesign dashboard home, fix analytics duration, add bar charts, mermaid dark mode ([ba820a1](https://github.com/SienkLogic/plan-build-run/commit/ba820a111afd8f65350ff0caa30e4a7be0c1489e))
411
+ * **17-01:** add notes page, verification viewer, milestone progress bars, dynamic footer version ([51b2092](https://github.com/SienkLogic/plan-build-run/commit/51b2092e0e89d2d31626cc94be8e5f6712b79116))
412
+ * **24-01:** add check-agent-state-write.js module ([c407826](https://github.com/SienkLogic/plan-build-run/commit/c4078264dead22d20998aeb14c35ea545289ccf5))
413
+ * **24-01:** wire agent state write blocker into pre-write-dispatch ([1adf149](https://github.com/SienkLogic/plan-build-run/commit/1adf149bb79de4750b5e7462a656a90a1de42ea6))
414
+ * **24-02:** add .auto-next fallback writes to auto_advance hard stops in build skill ([f96b05d](https://github.com/SienkLogic/plan-build-run/commit/f96b05de1da60032de889b416d2a4e978cd2ec8a))
415
+ * **25-01:** add ROADMAP.md read to continue skill for milestone boundary detection ([85077b1](https://github.com/SienkLogic/plan-build-run/commit/85077b109d17d9ef01348e489c1f2b4cdcb6c57d))
416
+ * **25-01:** GREEN - add validateRoadmap and ROADMAP.md validation to check-plan-format ([e77f0d7](https://github.com/SienkLogic/plan-build-run/commit/e77f0d7f629f8ff35be9c9718b4ec4fc54472550))
417
+ * **25-01:** GREEN - PLAN.md writes trigger ROADMAP Planning status without regression ([97c4d91](https://github.com/SienkLogic/plan-build-run/commit/97c4d91c4d0adda1b5e4caa2c632a2d26cf4a450))
418
+ * **25-02:** GREEN - add checkRoadmapWrite routing to post-write-dispatch ([d40887d](https://github.com/SienkLogic/plan-build-run/commit/d40887d1ee8d69df6f433c9b9e340d5e58dbe263))
419
+ * **25-02:** GREEN - implement isHighRisk with status regression and phase gap detection ([f46f8c9](https://github.com/SienkLogic/plan-build-run/commit/f46f8c909c69873c6a6aaf3b4a5570ab336fac3a))
420
+ * **25-02:** GREEN - implement validatePostMilestone for milestone completion checks ([a46886e](https://github.com/SienkLogic/plan-build-run/commit/a46886eafe65a636ddf9972a3a75e61c8f347d41))
421
+ * **26-02:** GREEN - add 150-line advisory warning to checkStateWrite ([7b0d0a3](https://github.com/SienkLogic/plan-build-run/commit/7b0d0a35b41fe51cc3821cd9e2a95c6bd86c438f))
422
+ * **26-02:** GREEN - add cross-plugin sync advisory hook ([fffe35c](https://github.com/SienkLogic/plan-build-run/commit/fffe35c127c81be72be901ecbc8f81ae36661ab8))
423
+ * **27-01:** add PreToolUse Read hook to block SKILL.md self-reads ([8d4775e](https://github.com/SienkLogic/plan-build-run/commit/8d4775e67d820a7ce136094e994b3d25f5c63b9a))
424
+ * **27-01:** add session length guard to auto-continue with warn at 3, hard-stop at 6 ([3ecd460](https://github.com/SienkLogic/plan-build-run/commit/3ecd4605df1edfaf8589526cbc937e886d87c1dc))
425
+ * **28-01:** add local LLM foundation — client, health, metrics, config schema, hook integrations, tests ([331f337](https://github.com/SienkLogic/plan-build-run/commit/331f337b6623e926da3f1c86491876b0565d9281))
426
+ * **29-01:** integrate local LLM into hooks — artifact classification, task validation, error classification, CLI ([1d42a14](https://github.com/SienkLogic/plan-build-run/commit/1d42a1400227680cab271f1761159de76b091e1f))
427
+ * **30-01:** add metrics display — session summaries, status skill, CLI, dashboard analytics ([4d5d614](https://github.com/SienkLogic/plan-build-run/commit/4d5d614fc246fc3a6f2a3d43fc8ae7611cf0c63f))
428
+ * **30-03:** add local-llm-metrics.service.js with getLlmMetrics and Vitest tests ([37d8e59](https://github.com/SienkLogic/plan-build-run/commit/37d8e5951d8ccea935d0ad71e99e026245a0dc47))
429
+ * **30-03:** wire getLlmMetrics into /analytics route and add Local LLM Offload section to EJS template ([e980348](https://github.com/SienkLogic/plan-build-run/commit/e980348c75a904e49d2262aafc7932a2f59a32a3))
430
+ * **31-01:** add adaptive router — complexity heuristic, confidence gate, 3 routing strategies ([91db4be](https://github.com/SienkLogic/plan-build-run/commit/91db4be5562ba05915905e931a10e47af7246e9e))
431
+ * **32-01:** add agent support — source scoring, error classification, context summarization, prompt injection ([83890f9](https://github.com/SienkLogic/plan-build-run/commit/83890f96117f8fe776248c0f28f560d960c32ce7))
432
+ * **33-01:** add shadow mode, threshold tuner, comprehensive tests, docs, cross-plugin sync ([379ce7f](https://github.com/SienkLogic/plan-build-run/commit/379ce7f6a88ec4ffa5c11dc9bf0c2c28462ec9e8))
433
+ * **34-01:** add config.features.source_scoring feature flag guard to score-source.js ([a7bd37a](https://github.com/SienkLogic/plan-build-run/commit/a7bd37a629e0fafefe4f0484deee965923f0364c))
434
+ * **34-01:** wire runShadow() into router.js post-call path for all 3 routing strategies ([06fcfb5](https://github.com/SienkLogic/plan-build-run/commit/06fcfb501c64a9769501715f0afc99978dbc7398))
435
+ * **35-01:** GREEN - add escapeHtml helper and use it in HTMX error handler path ([f29965e](https://github.com/SienkLogic/plan-build-run/commit/f29965ea450f56e71b7cef132f0fe6d3db9cfe74))
436
+ * **35-01:** GREEN - add sanitize-html post-processing to planning.repository ([440a97a](https://github.com/SienkLogic/plan-build-run/commit/440a97a08378e58eb931c5f62d2e2852561a581a))
437
+ * **35-03:** add Quick Tasks view with /quick and /quick/:id routes ([921b288](https://github.com/SienkLogic/plan-build-run/commit/921b288d327867d8033afb6fc51e3f5dd88f0657))
438
+ * **35-05:** add Audit Reports view with /audits and /audits/:filename routes ([aba41ce](https://github.com/SienkLogic/plan-build-run/commit/aba41ce7eccfcf4fedff7116ee0afb1f20cd796b))
439
+ * **35-05:** GREEN - implement audit.service.js with listAuditReports and getAuditReport ([6025452](https://github.com/SienkLogic/plan-build-run/commit/602545216c12f7472111b54db24489eab88394b0))
440
+ * **36-01:** add .status-badge--sm and .status-badge--lg variants; tokenize base badge sizing ([864afc9](https://github.com/SienkLogic/plan-build-run/commit/864afc9d542390f04dfcf4f9ef47e7ca3ef2894f))
441
+ * **36-01:** expand tokens.css with card, shadow, transition, table, and badge tokens ([62a2469](https://github.com/SienkLogic/plan-build-run/commit/62a2469f1230ef8c36ed0f72b44cd956b9d430d2))
442
+ * **36-02:** create phase-timeline.ejs and activity-feed.ejs partials ([f5ae581](https://github.com/SienkLogic/plan-build-run/commit/f5ae581819ab03e38939064aa4352e4d75f63387))
443
+ * **36-02:** GREEN - add getRecentActivity and deriveQuickActions to dashboard.service.js ([82883ae](https://github.com/SienkLogic/plan-build-run/commit/82883ae7c914a9ac26c16182aa423ea0e4848658))
444
+ * **36-02:** rework dashboard-content.ejs with status cards, timeline, activity feed, and quick actions ([54b138b](https://github.com/SienkLogic/plan-build-run/commit/54b138b38203239e27159a5bad72019fdb994d69))
445
+ * **36-03:** add prev/next phase navigation to phase detail view ([334812d](https://github.com/SienkLogic/plan-build-run/commit/334812d61632d5f0acd1ad06dba1a326bd4e6ab7))
446
+ * **36-04:** enrich getPhaseDetail with planTitle, taskCount, and mustHaves ([44a89ad](https://github.com/SienkLogic/plan-build-run/commit/44a89ad9e521aede77e0593e18843ad2d41e8e2a))
447
+ * **36-04:** overhaul plan cards to use .card component with wave, task count, and status ([1df3a6b](https://github.com/SienkLogic/plan-build-run/commit/1df3a6b17fbe6fe40d1bd38182e1ef5b05c803c9))
448
+ * **36-04:** replace commit history table with visual .commit-timeline in phase-content.ejs ([baece7b](https://github.com/SienkLogic/plan-build-run/commit/baece7b1fe9502a3f947ac67927a4beccf18e03a))
449
+ * **36-05:** add config page CSS to layout.css ([cce9a90](https://github.com/SienkLogic/plan-build-run/commit/cce9a90a20c867f63eb74c3cb66b557ee5a4f18e))
450
+ * **36-05:** add config shell page, hybrid form partial, and config CSS ([e40a82d](https://github.com/SienkLogic/plan-build-run/commit/e40a82d5e6a4ab2f0531ecd703ce37c4b0c44d9a))
451
+ * **36-05:** add config.service with readConfig, writeConfig, validateConfig (TDD) ([4df72f4](https://github.com/SienkLogic/plan-build-run/commit/4df72f400c37a313fe4b60266075203fddc88bba))
452
+ * **36-05:** add GET /config and POST /api/config routes ([150f7e4](https://github.com/SienkLogic/plan-build-run/commit/150f7e49d76315da74206a00c9d0b7d63efc9201))
453
+ * **36-06:** add GET /research and GET /research/:slug routes with HTMX support ([5a79666](https://github.com/SienkLogic/plan-build-run/commit/5a7966658417460606ab49613099acf180e62bf2))
454
+ * **36-06:** add research list and detail EJS templates with card layout and HTMX navigation ([5433ba5](https://github.com/SienkLogic/plan-build-run/commit/5433ba5b086ea5022f20c01e1a8142a9ca4b71f1))
455
+ * **36-06:** GREEN - implement research.service with listResearchDocs, listCodebaseDocs, getResearchDocBySlug ([6e50a75](https://github.com/SienkLogic/plan-build-run/commit/6e50a757c2c9e0bd224a8971f7eb195c40f563fa))
456
+ * **36-07:** add GET /requirements route and EJS templates ([e64a2a5](https://github.com/SienkLogic/plan-build-run/commit/e64a2a553240c6295cd41963ae0c9d36e5b4f065))
457
+ * **36-07:** GREEN - implement getRequirementsData service ([c3e018e](https://github.com/SienkLogic/plan-build-run/commit/c3e018e1ef9889e966975b88df5ff14ea0ca3674))
458
+ * **36-08:** add GET /logs route and GET /logs/stream SSE endpoint ([215e7a5](https://github.com/SienkLogic/plan-build-run/commit/215e7a5ffeb74b37a98b3d71dc16cafe374ffd9d))
459
+ * **36-08:** create logs EJS templates with SSE live-tail and filter controls ([baf6c78](https://github.com/SienkLogic/plan-build-run/commit/baf6c7875c58fcf4986f5c5da4befadce29e8958))
460
+ * **36-08:** GREEN - implement log.service with listLogFiles, readLogPage, tailLogFile ([34bd22e](https://github.com/SienkLogic/plan-build-run/commit/34bd22e7f496e98878f9bbac76a18c3dc7042ce7))
461
+ * **38-01:** rebuild dashboard foundation with Hono + JSX + Open Props ([533f782](https://github.com/SienkLogic/plan-build-run/commit/533f782ea3909dd42e8072e3ebccb1a76dd30309))
462
+ * **39-01:** add Command Center view with live-updating dashboard components ([9d333a2](https://github.com/SienkLogic/plan-build-run/commit/9d333a251de19b52726f9dc3ac466acf8c104a7a))
463
+ * **40-01:** add Explorer view shell with phases tab and Alpine.js tabs ([1746054](https://github.com/SienkLogic/plan-build-run/commit/1746054f37065a598e780a3cfae1ab357c5a00bd))
464
+ * **40-02:** add MilestonesTab component and milestone.service type declarations ([9393bf2](https://github.com/SienkLogic/plan-build-run/commit/9393bf220ba82eb00b707438271da504e9adfe95))
465
+ * **40-02:** add TodosTab component with TodoListFragment and TodoCreateForm ([86c178c](https://github.com/SienkLogic/plan-build-run/commit/86c178ca6fb22eff43aafa10b42323ef72846e68))
466
+ * **40-02:** wire todos and milestones routes into explorer.routes.tsx ([7e0071e](https://github.com/SienkLogic/plan-build-run/commit/7e0071e179647d58375bc5055ae627045091a9fa))
467
+ * **40-03:** add NotesTab, AuditsTab, and QuickTab components ([fa98f5b](https://github.com/SienkLogic/plan-build-run/commit/fa98f5b907c18de4ee328051714cc5947e6e6bb6))
468
+ * **40-03:** add ResearchTab and RequirementsTab components with requirements CSS ([d5cccdc](https://github.com/SienkLogic/plan-build-run/commit/d5cccdc398dee7d113f5abfa6b1119de16ac7814))
469
+ * **40-03:** wire research, requirements, notes, audits, quick routes; add service .d.ts files ([6ee4421](https://github.com/SienkLogic/plan-build-run/commit/6ee4421e734f218d563ca957d659d6a2547a0204))
470
+ * **41-01:** create timeline routes, wire into app, link timeline CSS in Layout ([2daf291](https://github.com/SienkLogic/plan-build-run/commit/2daf291f26b83736b6dc70ea040ed11b563487c8))
471
+ * **41-01:** create timeline.service.js with event aggregation and filtering ([49ea52a](https://github.com/SienkLogic/plan-build-run/commit/49ea52a84878065c0ce5a84f22b22b94f1deae89))
472
+ * **41-01:** create TimelinePage component, EventStreamFragment, and timeline CSS ([380ae24](https://github.com/SienkLogic/plan-build-run/commit/380ae24e73d0aac74f71cc15b5575191399e556d))
473
+ * **41-02:** add analytics and dependency-graph routes; refactor TimelinePage with section tabs ([1444176](https://github.com/SienkLogic/plan-build-run/commit/1444176156ce3c9f8b75dc52c72989f3c1f5fe5b))
474
+ * **41-02:** add analytics/graph CSS sections and Mermaid CDN to Layout ([865d647](https://github.com/SienkLogic/plan-build-run/commit/865d6473b8b5981517814e89ce417304aae167f3))
475
+ * **41-02:** add AnalyticsPanel and DependencyGraph components ([5786e02](https://github.com/SienkLogic/plan-build-run/commit/5786e029069082d01cda51a46a8863ebdda113de))
476
+ * **42-01:** create settings routes, CSS, wire into app, and add config.service.d.ts ([fc24060](https://github.com/SienkLogic/plan-build-run/commit/fc24060ecb165b6468bd377c340877584a5eb09e))
477
+ * **42-01:** create SettingsPage shell and ConfigEditor component (form + raw JSON modes) ([ed2a579](https://github.com/SienkLogic/plan-build-run/commit/ed2a57943c0ef9f5b379607fcfe48f8f2e5d8f98))
478
+ * **42-02:** add log viewer routes (page, entries, SSE tail) and CSS ([3656fef](https://github.com/SienkLogic/plan-build-run/commit/3656fef638bbb6bed8146555a0a5f7922d3acc24))
479
+ * **42-02:** add LogFileList, LogEntryList, and LogViewer components ([98998bb](https://github.com/SienkLogic/plan-build-run/commit/98998bbe84004e91ffba6809ec6ba198e4babc82))
480
+ * **44-01:** add inline SVG icons to sidebar nav and brand area ([4c31c64](https://github.com/SienkLogic/plan-build-run/commit/4c31c641e21997817386f6e806fd738c699fd98c))
481
+ * **44-01:** create StatCardGrid component and stat-card CSS system ([e1921cf](https://github.com/SienkLogic/plan-build-run/commit/e1921cfe939bca0417ee14dda8b4d6c0b883a8df))
482
+ * **44-01:** wire StatCardGrid into command-center route replacing StatusHeader+ProgressRing ([bc264a4](https://github.com/SienkLogic/plan-build-run/commit/bc264a4551929f7c1fb43ebda6e065fdb69e3708))
483
+ * **44-02:** add empty-state CSS component and apply to AttentionPanel and QuickActions ([92dc66e](https://github.com/SienkLogic/plan-build-run/commit/92dc66e95b9937b93b2cf4bed493d280aaa1e1cc))
484
+ * **44-02:** enhance Explorer phases rows and add status/priority filter selects to todos toolbar ([9434b3e](https://github.com/SienkLogic/plan-build-run/commit/9434b3e4ef190bbc4e6b42133e1ecf92161e6dfb))
485
+ * **44-02:** restructure Command Center into 2-column cc-two-col grid layout ([a602139](https://github.com/SienkLogic/plan-build-run/commit/a602139851abda7c7b031ac49d466c63595e768c))
486
+ * **44-03:** consolidate btn system into layout.css, add card hover shadow and cursor:pointer ([ec24c38](https://github.com/SienkLogic/plan-build-run/commit/ec24c3895b66706f7db363aa2ccd82d68fe79354))
487
+ * **44-03:** unify section label typography via --section-label-* tokens ([46b326e](https://github.com/SienkLogic/plan-build-run/commit/46b326e8c634a4f23a2e346283bdbda2a8b55932))
488
+ * **dashboard:** add responsive mobile layout with sidebar hamburger menu ([d95ee38](https://github.com/SienkLogic/plan-build-run/commit/d95ee38f71f471bd22dac818cbb34bda60d408ce))
489
+ * **quick-003:** add data-flow to plan-format reference, verification template, and integration report template ([8f61b02](https://github.com/SienkLogic/plan-build-run/commit/8f61b02a759632556e47f79b14f7c36d39aa57a3))
490
+ * **quick-003:** add data-flow verification to planner, verifier, and integration-checker agents ([eea56bc](https://github.com/SienkLogic/plan-build-run/commit/eea56bc1bba18a5a642ee52d6a9106a151f93aff))
491
+ * **quick-004:** add local LLM token counter to statusline ([52dbd8e](https://github.com/SienkLogic/plan-build-run/commit/52dbd8e960efb70f3de9f2bfbf8e046708d68ce0))
492
+ * **quick-004:** show session + lifetime LLM stats using stdin duration ([4fd0672](https://github.com/SienkLogic/plan-build-run/commit/4fd0672d184593e14f8e48e53ba72c6e4d49955d))
493
+ * **quick-008:** add block mode to checkNonPbrAgent for stronger enforcement ([5bd3614](https://github.com/SienkLogic/plan-build-run/commit/5bd361429a53f984fb1fcea69d76bf0ca1a4705c))
494
+ * **quick-008:** inject PBR workflow directive into SessionStart and PreCompact hooks ([e6fee97](https://github.com/SienkLogic/plan-build-run/commit/e6fee972cae9b551de16175607bd31da98d6f5c0))
495
+ * **quick-011:** add mobile responsive sidebar with hamburger toggle ([c0f4b23](https://github.com/SienkLogic/plan-build-run/commit/c0f4b2306e859a3c033dd63ee0ad61b21a7293a4))
496
+ * **quick-011:** fix status badge data-status attrs and mermaid dark mode ([b73eece](https://github.com/SienkLogic/plan-build-run/commit/b73eece54c5f4d510676b3e8acaa2d1b0ab01eae))
497
+ * **quick-013:** Wave C — completion markers, file read protocol, XML enhancement, context tiers ([1ff6148](https://github.com/SienkLogic/plan-build-run/commit/1ff61487bafac196723b1d368b9e6b418e8bbba9))
498
+ * **quick-014:** Wave D — inline deviation rules, scope boundaries, self-check hardening, spot-checks ([f6c377b](https://github.com/SienkLogic/plan-build-run/commit/f6c377b9120f2a12f5e671c8d48d7b0a56a30214))
499
+ * **quick-014:** Wave E + review fixes — context bridge, files_to_read, B3 completion, XML nesting ([27db68c](https://github.com/SienkLogic/plan-build-run/commit/27db68cc39fab486dbf90f482ab128852905c183))
500
+ * **tools:** add /pbr:audit skill for session compliance and UX review ([8e942bc](https://github.com/SienkLogic/plan-build-run/commit/8e942bcd2836e0fb6f0b425eddb39ebf6c5b7659))
501
+ * **tools:** add /pbr:dashboard skill with auto-launch on session start ([1ca0425](https://github.com/SienkLogic/plan-build-run/commit/1ca042584783bdfbc762fe5661b5c62e31ffcdfc))
502
+ * **tools:** add /pbr:do freeform router and smart skill suggestions in hook ([b19533e](https://github.com/SienkLogic/plan-build-run/commit/b19533ef6f57f890130d128d5816058bac3c63a7))
503
+ * **tools:** add /pbr:statusline command to install PBR status line ([f1266aa](https://github.com/SienkLogic/plan-build-run/commit/f1266aa01ed0dda9eff41da47f10287342b6b0d5))
504
+ * **tools:** add 3 local LLM operations — classify-commit, triage-test-output, classify-file-intent ([55c2558](https://github.com/SienkLogic/plan-build-run/commit/55c255887af3562eef823314f79a4db6baa7b261))
505
+ * **tools:** add D10 test plan coverage dimension to plan-checker agent ([cf36b60](https://github.com/SienkLogic/plan-build-run/commit/cf36b604371c5c6e27aa476e27b2bf782ca175a2))
506
+ * **tools:** add EnterPlanMode interception hook to redirect to PBR commands ([6b7b9f9](https://github.com/SienkLogic/plan-build-run/commit/6b7b9f94b1ebdeda207670083f5f78873964c7aa))
507
+ * **tools:** add freeform text guard hook for /pbr:plan and todo work subcommand ([42c6527](https://github.com/SienkLogic/plan-build-run/commit/42c65270ee72045a718f6111388a839d54c7a7e7))
508
+ * **tools:** add GitHub Copilot CLI plugin port ([64bb081](https://github.com/SienkLogic/plan-build-run/commit/64bb081a1739a9b8fac111f5f7d259f9d04cf39a))
509
+ * **tools:** add help docs, concurrent tests, and discuss requirements surfacing ([ef66bdc](https://github.com/SienkLogic/plan-build-run/commit/ef66bdcff94dd641a8f1a2972efac67d48200e7a))
510
+ * **tools:** add local LLM skill-level fallbacks and platform compatibility docs ([92abfc7](https://github.com/SienkLogic/plan-build-run/commit/92abfc7bc219c85b408593e8c0944db712bf07b9))
511
+ * **tools:** add milestone preview subcommand across all plugins ([a9b65fc](https://github.com/SienkLogic/plan-build-run/commit/a9b65fc142f59a24b0f3a06f303b33d3e25d55cf))
512
+ * **tools:** add milestones page to dashboard with archived milestone support ([de96735](https://github.com/SienkLogic/plan-build-run/commit/de96735af69fb14befdfc9d08f767d9fa5a13f97))
513
+ * **tools:** add post-compaction recovery, pbr-tools CLI reference, and dashboard UI banner ([9cc8f30](https://github.com/SienkLogic/plan-build-run/commit/9cc8f304072cd9f79fd18c94f25cafccf5e00163))
514
+ * **tools:** add PR title validation and improved PR template ([f33c5a7](https://github.com/SienkLogic/plan-build-run/commit/f33c5a79d290c404f177b473caffdc8d7a2afe58))
515
+ * **tools:** add PreToolUse additionalContext soft warnings for risky operations ([adb77ae](https://github.com/SienkLogic/plan-build-run/commit/adb77aee7444a5058f94a6f17bcbedc3f27643e9))
516
+ * **tools:** add review verifier post-check and stale active-skill detection ([37d819a](https://github.com/SienkLogic/plan-build-run/commit/37d819acc59b30e5d86eb2ea672d3f13122b1beb))
517
+ * **tools:** add rollback downstream invalidation, complete help docs, dashboard route tests ([bb4bcb1](https://github.com/SienkLogic/plan-build-run/commit/bb4bcb111b25284764d546f46411b844b8069a4d))
518
+ * **tools:** add run-hook.js wrapper for Windows MSYS path normalization ([20286c3](https://github.com/SienkLogic/plan-build-run/commit/20286c32bd6477eba4b075d11c7ebfdf90d0dd57))
519
+ * **tools:** add scan mapper area validation and stale Building status detection ([110db29](https://github.com/SienkLogic/plan-build-run/commit/110db29f5444c716e9558935c3e4b12cc9ab6fab))
520
+ * **tools:** add stale active-skill session-start warning and copilot hook limitation docs ([8dfcffa](https://github.com/SienkLogic/plan-build-run/commit/8dfcffa5442f0579435d2db1232215335f6167b4))
521
+ * **tools:** add state-sync plans_total fix, anti-pattern rule for Skill-in-Task, and social images ([8a2c784](https://github.com/SienkLogic/plan-build-run/commit/8a2c784469dcccb74388838348c6f31adcc89df1))
522
+ * **tools:** add STATE.md backup step before health skill auto-fix regeneration ([173cde6](https://github.com/SienkLogic/plan-build-run/commit/173cde6d90966f13ab048ba268bd3afb8b59c70e))
523
+ * **tools:** add summary gate hook to enforce SUMMARY before state advance ([55a0bd4](https://github.com/SienkLogic/plan-build-run/commit/55a0bd4578f8f122b0d3618552f51474a62431dd))
524
+ * **tools:** add worktree isolation, ConfigChange hook, and claude agents docs ([8b3d821](https://github.com/SienkLogic/plan-build-run/commit/8b3d82108febfa5a5ec80a37bcbee7a652b3beb5))
525
+ * **tools:** archive milestones into versioned directories with phase migration ([5951613](https://github.com/SienkLogic/plan-build-run/commit/5951613fa8d27b99b9a07523364a9ba7f8ac2fd9))
526
+ * **tools:** auto-close satisfied pending todos after quick task and build completion ([56ead9d](https://github.com/SienkLogic/plan-build-run/commit/56ead9d46ece7b4c6164dd983ca79e6a195db18c))
527
+ * **tools:** completion markers, file-read protocol, spot-checks for secondary skills ([efd9dc9](https://github.com/SienkLogic/plan-build-run/commit/efd9dc908c8ce523794195133beddd33e6fccdaa))
528
+ * **tools:** enable project-scoped memory for planner agent ([fb6da2d](https://github.com/SienkLogic/plan-build-run/commit/fb6da2d3fc70ebe911803ee23c4374fa30612da3))
529
+ * **tools:** integrate milestones into workflow lifecycle ([35bf5b7](https://github.com/SienkLogic/plan-build-run/commit/35bf5b7addfa03914012a9cc6c73eece59f2267e))
530
+ * **tools:** rebrand towline to plan-build-run ([2ce02a7](https://github.com/SienkLogic/plan-build-run/commit/2ce02a7422f7e8a5ccd9098e0cd3e06126ce6e65))
531
+ * **tools:** require user confirmation before debugger agent applies fixes ([604e775](https://github.com/SienkLogic/plan-build-run/commit/604e77592cee630a74dc2f2b71671e6fa3dbd3c5))
532
+ * **tools:** resolve exploration backlog — fix script bugs, add copilot hooks, improve recovery ([ef9e81a](https://github.com/SienkLogic/plan-build-run/commit/ef9e81a662d11402c261e3acb638fc0005045d42))
533
+ * **tools:** use last_assistant_message in Stop/SubagentStop hooks ([7894c5e](https://github.com/SienkLogic/plan-build-run/commit/7894c5ecebba9ee600234ebf665d8fc422a220d6))
534
+ * **tools:** Wave B — compound init commands, bug fixes, and reference upgrades ([78deaa6](https://github.com/SienkLogic/plan-build-run/commit/78deaa6890b6c513ac1826161552beef6719109b))
535
+
536
+
537
+ ### Bug Fixes
538
+
539
+ * **01-01:** add cursor-pbr entry to marketplace manifest (PLUG-03) ([2ac7ca1](https://github.com/SienkLogic/plan-build-run/commit/2ac7ca1ff7c3880f4e610433969e382c4695f19d))
540
+ * **01-01:** hasPlanFile now matches numbered plan files like PLAN-01.md ([c0a4a6d](https://github.com/SienkLogic/plan-build-run/commit/c0a4a6d279497cce6593b9825537fbba8cda6c9e))
541
+ * **01-02:** add plan skill write-guard to check-skill-workflow.js ([9c07bc4](https://github.com/SienkLogic/plan-build-run/commit/9c07bc4e725dc3655fc4a86cbbb6df7a92c3f038))
542
+ * **06-01:** add skill-local templates and prompt-partials missed in initial port ([8279c57](https://github.com/SienkLogic/plan-build-run/commit/8279c576951c37cc461373a3ee4732337a39b51b))
543
+ * **06-03:** fix planner naming convention, executor timestamps, and statusline backup ([55ecd12](https://github.com/SienkLogic/plan-build-run/commit/55ecd12810d01e1c522da7659dde8b0f4627bbf9))
544
+ * **09-01:** use relative path for logo in plugin manifest ([341bacf](https://github.com/SienkLogic/plan-build-run/commit/341bacf776b31a321e1b2ac06678c8072b4addf0))
545
+ * **14-01:** add missing #sse-status element to header ([7a2b7ba](https://github.com/SienkLogic/plan-build-run/commit/7a2b7ba5b451ff87a9435c45feecf4ef76f794f1))
546
+ * **14-02:** clear milestone cache between tests to prevent stale data ([449f15e](https://github.com/SienkLogic/plan-build-run/commit/449f15ec05d8aecea14d4ea5c8a533747f73959d))
547
+ * **18-01:** HTMX navigation consistency, SSE tooltip, error page fix, remove deprecated layout ([79ddc58](https://github.com/SienkLogic/plan-build-run/commit/79ddc588b29329cff878ceea813be9e8d8cef5f8))
548
+ * **23-01:** register /pbr:do command and fix critical audit findings ([d73e8a7](https://github.com/SienkLogic/plan-build-run/commit/d73e8a7acdcb5bf9b9494de66eb73312c2d36204))
549
+ * **23-02:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in cursor-pbr ([e36c614](https://github.com/SienkLogic/plan-build-run/commit/e36c6145da3d27f1a6f0cea1290a1245208bf1f3))
550
+ * **23-03:** replace CLAUDE_PLUGIN_ROOT with PLUGIN_ROOT in copilot-pbr ([27181a4](https://github.com/SienkLogic/plan-build-run/commit/27181a47d056183266bb12bf2131bf1f3cd250d0))
551
+ * **23-04:** replace subagents terminology with agents in cursor-pbr ([f5af300](https://github.com/SienkLogic/plan-build-run/commit/f5af300cabedf3c8f45217b4c46c90f22ef65031))
552
+ * **23-05:** fix subagents terminology in copilot-pbr and sync ROADMAP template ([9b999f0](https://github.com/SienkLogic/plan-build-run/commit/9b999f080711f7515db95d71245a2e0f826d6403))
553
+ * **23-07:** strip hookSpecificOutput wrapper from check-phase-boundary and pre-write-dispatch ([19db6d6](https://github.com/SienkLogic/plan-build-run/commit/19db6d634f023c86bfe1e51d259c815d813aca60))
554
+ * **23-09:** reorder copilot-pbr hooks.json postToolUseFailure before preToolUse to match pbr canonical ordering ([d8003d8](https://github.com/SienkLogic/plan-build-run/commit/d8003d808b614bfc4bab77c524b0931413dc8171))
555
+ * **23-09:** use decision:block in validate-skill-args.js, remove orphaned JSDoc in validate-task.js ([ada9e3d](https://github.com/SienkLogic/plan-build-run/commit/ada9e3d0914e6d47c190792d3f66340ca22e3857))
556
+ * **23-10:** correct dispatch table — move check-doc-sprawl and check-skill-workflow to pre-write-dispatch ([e1709f7](https://github.com/SienkLogic/plan-build-run/commit/e1709f70b8262d1c673ea80895cda7086c6de45b))
557
+ * **23-10:** remove dead body from checkStatuslineRules in check-skill-workflow.js ([8bf0218](https://github.com/SienkLogic/plan-build-run/commit/8bf0218f69aa040bbcfc87e11d8b602f6d9958bb))
558
+ * **23-10:** remove redundant allowed-tools Note from health SKILL.md Auto-Fix section ([93757f2](https://github.com/SienkLogic/plan-build-run/commit/93757f200ee6f77bd173d02d84e7e8e25edac5c1))
559
+ * **23-12:** fix remaining subagents terminology in scan SKILL.md derivatives ([8d49259](https://github.com/SienkLogic/plan-build-run/commit/8d4925943ab8cde0521843636bb1c81b2e388ece))
560
+ * **23-12:** fix test property paths and heredoc extraction to achieve 70% branch coverage ([85f0fa1](https://github.com/SienkLogic/plan-build-run/commit/85f0fa14fb9ea1c904f402ac8a2129ca5e22c56b))
561
+ * **23-12:** remove excess tool grants from synthesizer and plan-checker agents ([3e1284d](https://github.com/SienkLogic/plan-build-run/commit/3e1284d129e9b6ebdc1a53f8e02bbddef63337d8))
562
+ * **24-01:** remove building from ADVANCED_STATUSES gate ([36bd3da](https://github.com/SienkLogic/plan-build-run/commit/36bd3daa43c4463da0f34234ddd1f7816c26b24d))
563
+ * **24-02:** raise consecutive-continue guard threshold from 3 to 6 ([069b385](https://github.com/SienkLogic/plan-build-run/commit/069b385df469712db0abe3eb64424bfbddd2164c))
564
+ * **24-02:** remove .auto-next cleanup from session-cleanup to prevent race with Stop hook ([64b72d2](https://github.com/SienkLogic/plan-build-run/commit/64b72d200d1475f1d2ecb21260c163fdd69d2348))
565
+ * **25-02:** remove unused path import and result variable (lint) ([c63b390](https://github.com/SienkLogic/plan-build-run/commit/c63b3904ec532cf6ba353fb922384876ee7d6364))
566
+ * **26-01:** add CRITICAL dual-update markers to import Step 8b and milestone new Step 8 ([2652908](https://github.com/SienkLogic/plan-build-run/commit/26529088bd2f1e8c998a4f2fc6bd87489d3655d9))
567
+ * **26-01:** add CRITICAL frontmatter update marker to pause skill STATE.md step ([880ec8d](https://github.com/SienkLogic/plan-build-run/commit/880ec8d937d6befca07b7db43525da6cbacabe27))
568
+ * **26-02:** sync cross-plugin-sync hook to cursor-pbr and copilot-pbr hooks.json ([73e0470](https://github.com/SienkLogic/plan-build-run/commit/73e0470f48c97d4635ca801505f55eca4b0933b8))
569
+ * **36-01:** replace hardcoded CSS values with design tokens and expand config.service.js ([284fcf2](https://github.com/SienkLogic/plan-build-run/commit/284fcf270ead0ab7688cb6b1017f31891cd34c3d))
570
+ * **36-02:** add typeof guard for quickActions in dashboard template ([e75c4d1](https://github.com/SienkLogic/plan-build-run/commit/e75c4d129537ab4d4af30b6b66a45285376298f7))
571
+ * **36-08:** improve dashboard UX across 12 pages with 16 visual fixes ([7c51cb8](https://github.com/SienkLogic/plan-build-run/commit/7c51cb874e1868b7d92caf8dde380defe66ad2d5))
572
+ * **37-05:** fix breadcrumb icon, milestone spacing, summary lookup, and config mode dropdown ([d5661fd](https://github.com/SienkLogic/plan-build-run/commit/d5661fd01150adc9d9d889af4a68857c739c79c8))
573
+ * **40-02:** use JSX-compatible hx-on attribute syntax in TodoCreateForm ([d9cd51d](https://github.com/SienkLogic/plan-build-run/commit/d9cd51d9e7cc6c2e2e4df82d608c323d7ca04fdf))
574
+ * **42-02:** move beforeunload cleanup to addEventListener for JSX compatibility ([b93b0e4](https://github.com/SienkLogic/plan-build-run/commit/b93b0e4dcb0dc4db85408fd6db11fe683e5b3270))
575
+ * **43-02:** use tsx runtime with absolute static path for cross-cwd dashboard launch ([605c99d](https://github.com/SienkLogic/plan-build-run/commit/605c99d604c60db06477f87deac2e89bd5b3cc45))
576
+ * **dashboard:** handle todo files with H1 title and high/medium/low priority ([a8dadcf](https://github.com/SienkLogic/plan-build-run/commit/a8dadcfe3b7226c2af8406df3a8dfe627b2c1cf5))
577
+ * **dashboard:** plan count regex and mermaid rendering ([a423a7c](https://github.com/SienkLogic/plan-build-run/commit/a423a7c0c336a1907c6c22b27d94495dfa857018))
578
+ * **dashboard:** show completed milestones on roadmap when all phases archived ([a3469dc](https://github.com/SienkLogic/plan-build-run/commit/a3469dc2f399ff32241a0ad0630f980ee6b1b759))
579
+ * **quick-001:** fix agent prompt issues from audit (items 4-7) ([bf9cde2](https://github.com/SienkLogic/plan-build-run/commit/bf9cde2a9ba2b74ea4b523ab49e6101b6e26bb83))
580
+ * **quick-001:** fix agent prompt issues from audit (items 8-10) ([ca374fc](https://github.com/SienkLogic/plan-build-run/commit/ca374fc002b955893c38e5c8b7ceeaeb7c8398d3))
581
+ * **quick-001:** fix STATE.md body drift, stale status line, and ROADMAP sync gaps ([994977c](https://github.com/SienkLogic/plan-build-run/commit/994977c196c0d4f3f851e5ad6c7049fb1952d858))
582
+ * **quick-003:** pass data.session_id to LLM operations instead of undefined ([6670377](https://github.com/SienkLogic/plan-build-run/commit/6670377a42a5030c11283f7578ad3c882a15b2aa))
583
+ * **quick-004:** render LLM stats on second line with explicit Local LLM label ([89a8dae](https://github.com/SienkLogic/plan-build-run/commit/89a8dae9aa390788e7513149e01d946b038b5918))
584
+ * **quick-006:** bump vitest to ^4.0.18 to match @vitest/coverage-v8 peer dep ([a959641](https://github.com/SienkLogic/plan-build-run/commit/a9596419355803f031c7e71ff649ffd33ca7a3ab))
585
+ * **quick-007:** correct todo test to match title fallback behavior (H1 heading recovery) ([8e5012d](https://github.com/SienkLogic/plan-build-run/commit/8e5012d84843d96dc780888dba200f81e5f85c45))
586
+ * **quick-008:** propagate block exit code from checkNonPbrAgent in validate-task dispatcher ([f02fc19](https://github.com/SienkLogic/plan-build-run/commit/f02fc198e1e7d9eb8be17a85805a413e250be2a0))
587
+ * **quick-009:** fix dashboard UX across milestones, timeline, logs, todos, and layout ([0b09776](https://github.com/SienkLogic/plan-build-run/commit/0b09776c7251c3587587c637e107514462c30c14))
588
+ * **quick-010:** use lockedFileUpdate for atomic writes, fix shell injection, add writeActiveSkill ([c18107d](https://github.com/SienkLogic/plan-build-run/commit/c18107d05a29558b8d7167609128ade4f83c0baf))
589
+ * **quick-011:** move hamburger button outside sidebar for correct fixed positioning ([2034b2d](https://github.com/SienkLogic/plan-build-run/commit/2034b2deb77c2bdf584282879f561a72d90929eb))
590
+ * **quick-012:** remove cursor-pbr from Claude Code marketplace listing ([5baf0be](https://github.com/SienkLogic/plan-build-run/commit/5baf0be27015411e69f7d6f9f148029d1d3502ea))
591
+ * **quick-012:** remove unrecognized 'platform' key from marketplace.json ([d4c91d4](https://github.com/SienkLogic/plan-build-run/commit/d4c91d436f1460d8fdd5e18642e5d7d83a39e7bc))
592
+ * **quick-014:** add /clear recommendations to derivative plugin completion sections ([1bc81da](https://github.com/SienkLogic/plan-build-run/commit/1bc81da6a7c0f1b130afbf803e9675205437f462))
593
+ * **quick-014:** review pass 2 — XML nesting, KNOWN_AGENTS prefix, completion markers, spot-check sync ([836e47d](https://github.com/SienkLogic/plan-build-run/commit/836e47dcdf649340f15ab72782006c366d832fae))
594
+ * **tools:** add --repo flag to gh pr merge in release workflow ([dffd1ed](https://github.com/SienkLogic/plan-build-run/commit/dffd1ede2abaef29333dcb6e184de5a2ba26ccef))
595
+ * **tools:** add commonjs package.json to scripts for ESM project compat ([b2f59eb](https://github.com/SienkLogic/plan-build-run/commit/b2f59eb2938da8c6ff1300c18134e4f1e9d00614))
596
+ * **tools:** add milestone routing to explore skill completion ([9629c34](https://github.com/SienkLogic/plan-build-run/commit/9629c343d41f4ba61b7129a51ce7f958058e8607))
597
+ * **tools:** add pull_request trigger to CI so branch protection checks pass ([ffbe56b](https://github.com/SienkLogic/plan-build-run/commit/ffbe56b63fd297e72ba09836c5c854a1f2177747))
598
+ * **tools:** add Skill tool to 4 PBR skills that use auto-advance chaining ([e073cb7](https://github.com/SienkLogic/plan-build-run/commit/e073cb752c2e26254512c204cadc2a2765142231))
599
+ * **tools:** auto-route quick skill to plan skill when user selects Full plan ([8b471d8](https://github.com/SienkLogic/plan-build-run/commit/8b471d8d58bbe0f08ef818e2dc2423c8e698beef))
600
+ * **tools:** close 31 UI consistency gaps found in audit round 2 ([d4ca358](https://github.com/SienkLogic/plan-build-run/commit/d4ca358cd2a553e05db3e953c65d09e30c0805df))
601
+ * **tools:** comprehensive codebase review — 33 improvements across 7 waves ([16d3f34](https://github.com/SienkLogic/plan-build-run/commit/16d3f342c8814517a1ddb98c5af84e39e1f3ef9e))
602
+ * **tools:** dashboard derives phase statuses from STATE.md frontmatter ([f30b48d](https://github.com/SienkLogic/plan-build-run/commit/f30b48dd30c191f90cdabfe2f1cac058ec7d628a))
603
+ * **tools:** dashboard parses H3-style ROADMAP.md phases and flexible bold syntax ([bcf6f8f](https://github.com/SienkLogic/plan-build-run/commit/bcf6f8f430e20411ec0b2831c22a7be963ca895e))
604
+ * **tools:** dashboard service and route improvements ([191eae1](https://github.com/SienkLogic/plan-build-run/commit/191eae10188521632dcf780c874d1f3ba3f40c26))
605
+ * **tools:** enforce quick task directory creation with CRITICAL markers and hook validation ([12a4fcc](https://github.com/SienkLogic/plan-build-run/commit/12a4fcc86722be30dbd7c8d22075b571da03d579))
606
+ * **tools:** exclude plugin files from context budget tracking + skill refinements ([6ed0c43](https://github.com/SienkLogic/plan-build-run/commit/6ed0c43132dbd6574c63b05f5c9e03f16bd9ab39))
607
+ * **tools:** extend executor commit check to quick skill and add .catch() to log-tool-failure ([23f52d7](https://github.com/SienkLogic/plan-build-run/commit/23f52d7b8db4d63f84619fcc1f9e7131828bcf8f))
608
+ * **tools:** fix CI lint errors and macOS symlink test failure ([2b85f6b](https://github.com/SienkLogic/plan-build-run/commit/2b85f6b68d07390452769be23b1751525dafc4ad))
609
+ * **tools:** fix lint errors and bump version to 2.1.0 ([5d88416](https://github.com/SienkLogic/plan-build-run/commit/5d8841632af6934ca704cf7bb201c42a4254db7a))
610
+ * **tools:** fix release workflow auth and CI lint paths ([4774474](https://github.com/SienkLogic/plan-build-run/commit/47744742c04fac89a822ce608bae777f57820fae))
611
+ * **tools:** handle concurrent write corruption in flaky test across platforms ([1b5b129](https://github.com/SienkLogic/plan-build-run/commit/1b5b129eec546323ca13a94b6acfebf6850d1f0a))
612
+ * **tools:** handle empty string race in concurrent .active-skill test on Windows ([fd1628f](https://github.com/SienkLogic/plan-build-run/commit/fd1628ff0528f74f766e593cc0f2353a4d504308))
613
+ * **tools:** improve dashboard markdown rendering and font loading ([59fd4c2](https://github.com/SienkLogic/plan-build-run/commit/59fd4c21482239d0410fc176d1303c28d81200f2))
614
+ * **tools:** lower coverage thresholds to match actual coverage after validate-task.js addition ([df1c396](https://github.com/SienkLogic/plan-build-run/commit/df1c396cd22a1f8246d2dbb58a63f13760f784bc))
615
+ * **tools:** parse simple two-column roadmap table in dashboard ([69f5a6f](https://github.com/SienkLogic/plan-build-run/commit/69f5a6f9e129926b660b34acb0e80012bf90e2dc))
616
+ * **tools:** prefix unused name var with underscore in version sync test ([a534b05](https://github.com/SienkLogic/plan-build-run/commit/a534b059e99c816c8b7053b1f33bf92bad41643a))
617
+ * **tools:** prevent lifetime LLM metrics from plateauing at 200 entries ([a62f5d8](https://github.com/SienkLogic/plan-build-run/commit/a62f5d837efce2b1aa48c5920f809d278ad4e53d))
618
+ * **tools:** remove platform-specific rollup dep from dashboard devDependencies ([009e17c](https://github.com/SienkLogic/plan-build-run/commit/009e17c39734bb3d1655906ec48186bd37360cbe))
619
+ * **tools:** remove unsupported --local flag from Copilot plugin install ([2f7bd2b](https://github.com/SienkLogic/plan-build-run/commit/2f7bd2bcb45d695713638e40539c0ccbf168efe6))
620
+ * **tools:** resolve lint errors in cross-plugin compat tests ([1bb6fd5](https://github.com/SienkLogic/plan-build-run/commit/1bb6fd5066189f27f9dee58d49533e28bb9f9556))
621
+ * **tools:** resolve lint errors in statusline workflow rules ([b801059](https://github.com/SienkLogic/plan-build-run/commit/b801059ce0d3361434a687a318a95b96a97313d6))
622
+ * **tools:** resolve markdownlint errors in planner agent and milestone skill ([178da16](https://github.com/SienkLogic/plan-build-run/commit/178da160313900472dcd3de9efe8ee111039b4d9))
623
+ * **tools:** resolve npm audit vulnerabilities via overrides ([fb7c798](https://github.com/SienkLogic/plan-build-run/commit/fb7c7989a8b2cb7eef0445a98331aa799d262f74))
624
+ * **tools:** revert npm overrides and relax audit level to critical ([b81015b](https://github.com/SienkLogic/plan-build-run/commit/b81015b126683c44fc0ab3abf8f10bb5c7ea9ba0))
625
+ * **tools:** revert release branch CI trigger (using non-strict protection instead) ([23a54c1](https://github.com/SienkLogic/plan-build-run/commit/23a54c11a87080a07fa70342aee1b1a4997e4aee))
626
+ * **tools:** standardize error messages with severity prefix and actionable next-steps ([7ab926c](https://github.com/SienkLogic/plan-build-run/commit/7ab926cdecffa0793b70529a9ed06205e7f0a9b9))
627
+ * **tools:** sync dashboard skill argument-hint to cursor plugin ([a180529](https://github.com/SienkLogic/plan-build-run/commit/a180529ae577c523332f368fa7792038408c91c0))
628
+ * **tools:** sync dashboard skill paths and missing templates across all plugins ([44e61ac](https://github.com/SienkLogic/plan-build-run/commit/44e61ac996db1a4cdf2d475e24f425ad442b3654))
629
+ * **tools:** trigger CI on release-please branch pushes for auto-merge ([f103a27](https://github.com/SienkLogic/plan-build-run/commit/f103a2739bbb5f452a76f2ea6e9771aa4459c04a))
630
+ * **tools:** update AskUserQuestion audit to reflect health skill auto-fix gates ([952a67f](https://github.com/SienkLogic/plan-build-run/commit/952a67ff5287a6e30f23b3f7eddeaf187f862c19))
631
+ * **tools:** update critical agents to use model: sonnet instead of inherit ([d3c77b2](https://github.com/SienkLogic/plan-build-run/commit/d3c77b2d85cd1d4a8c49c92b06d6ab6db5d2ab5a))
632
+ * **tools:** update validation script to handle run-hook.js bootstrap pattern ([080c6eb](https://github.com/SienkLogic/plan-build-run/commit/080c6eb3f3ad59e7a2c516f8e94d719daaacfed4))
633
+ * **tools:** use RELEASE_PAT for release-please to trigger CI on PRs ([5bbd50e](https://github.com/SienkLogic/plan-build-run/commit/5bbd50e7771df0409f35f5f229f855513a30bf8c))
634
+ * **tools:** warn on context budget tracker reset and roadmap sync parse failures ([32ce00f](https://github.com/SienkLogic/plan-build-run/commit/32ce00fafa4906801bbffcbd440658e933833522))
635
+
636
+
637
+ ### Documentation
638
+
639
+ * **08-03:** add agent-contracts.md reference documenting handoff schemas ([33e148e](https://github.com/SienkLogic/plan-build-run/commit/33e148e4761e261d0b1b65a2ab9e783269bae080))
640
+ * **09-01:** add setup scripts and improve installation instructions ([44ad95d](https://github.com/SienkLogic/plan-build-run/commit/44ad95d710d7491b0fb6ff8292c30fe81de20075))
641
+ * **10-01:** wire agent-contracts.md into agents and document abandoned debug resolution ([0d9159e](https://github.com/SienkLogic/plan-build-run/commit/0d9159e44e6e414420b6cbee9eca2dfe32e2acfa))
642
+ * **27-01:** add no-reread anti-pattern to executor agents across all plugins ([99f9805](https://github.com/SienkLogic/plan-build-run/commit/99f98052c39ca88d9f6323acb6adfa27581f5239))
643
+ * **34-01:** mark all LLM-01 through LLM-34 traceability entries as Verified ([182b858](https://github.com/SienkLogic/plan-build-run/commit/182b858478863495be0b7ca7a9150818a961873d))
644
+ * **quick-002:** add .active-skill stale detection to health Check 10 ([0ebf077](https://github.com/SienkLogic/plan-build-run/commit/0ebf0770f7bb84af4e503055e65f377a46d5cd93))
645
+ * **quick-002:** fix NEXT UP banner indentation in milestone SKILL.md ([b24f2af](https://github.com/SienkLogic/plan-build-run/commit/b24f2af7f8d141e3f946cf31dd3acd9373f0455d))
646
+ * **quick-002:** replace arrow-list with bullet style in help SKILL.md ([e268d85](https://github.com/SienkLogic/plan-build-run/commit/e268d85aa8f9904fba90bd0dbaf3002b187810eb))
647
+ * **quick-005:** add Local LLM nav link and mention in feature highlights ([4a905fc](https://github.com/SienkLogic/plan-build-run/commit/4a905fc3d329ecb899117c5adc0f8d01bbce49a9))
648
+ * **quick-005:** add Local LLM Offload section and update stats across README and Getting Started ([6c22b14](https://github.com/SienkLogic/plan-build-run/commit/6c22b1484f550c86a2da02450874e5851f11722d))
649
+ * **tools:** add /pbr:dashboard command to README dashboard section ([e36bdfd](https://github.com/SienkLogic/plan-build-run/commit/e36bdfd1d5b5f71ccdf0593a10a4f29202feebcb))
650
+ * **tools:** add missing 2.3.0 and 2.3.1 changelog entries ([93643be](https://github.com/SienkLogic/plan-build-run/commit/93643beee79322906aef2724cbfaa14f970688a2))
651
+ * **tools:** document minimum Claude Code v2.1.47 requirement for Windows hooks ([b3d5633](https://github.com/SienkLogic/plan-build-run/commit/b3d5633a80665a78b6f56c0bdf4da668af45774d))
652
+ * **tools:** fix banner consistency, add status/continue/do comparison, fix continue description ([1350ef3](https://github.com/SienkLogic/plan-build-run/commit/1350ef34af046b1f176d865ec57c630332e14e4e))
653
+ * **tools:** make platform badges clickable links to install pages ([cf9cf13](https://github.com/SienkLogic/plan-build-run/commit/cf9cf136aec349e411ccde36b36cf758c0b3bb3d))
654
+ * **tools:** remove internal v2 research doc, update user-facing docs ([6ad84a3](https://github.com/SienkLogic/plan-build-run/commit/6ad84a30ac032ee4a100e8a41f8604a2dc9d09c6))
655
+ * **tools:** resize header logo to 550px width ([e954e40](https://github.com/SienkLogic/plan-build-run/commit/e954e4055bf30f434a7d9dae5b7d71a54743ac29))
656
+ * **tools:** update changelog for 2.0.0 publish, fix test counts, add npm badge ([6058a93](https://github.com/SienkLogic/plan-build-run/commit/6058a930896d99886cf46994a5322d7137942068))
657
+ * **tools:** update demo GIF ([77d5528](https://github.com/SienkLogic/plan-build-run/commit/77d5528e93e5a45acb0681d1823f3f37c3f0dc70))
658
+ * **tools:** update demo GIF and rebrand demo scripts ([2c22cf1](https://github.com/SienkLogic/plan-build-run/commit/2c22cf1a97578cb81a8e8d07dd73ef0225c29afa))
659
+ * **tools:** update header logo ([f2bfa84](https://github.com/SienkLogic/plan-build-run/commit/f2bfa84ed0ad4bef12f0225ad60f374f59599093))
660
+ * **tools:** update header logo to pbr_banner_logo.png ([134852c](https://github.com/SienkLogic/plan-build-run/commit/134852c9f233727a65923d1e49f6dbccd5bb92ea))
661
+ * **tools:** update README with Copilot CLI support and current stats ([ac81ee6](https://github.com/SienkLogic/plan-build-run/commit/ac81ee6a1825971347e23f878c584ab9b04b44da))
662
+ * **tools:** update README with Cursor plugin section and CHANGELOG for v2.1.0 ([d68ff68](https://github.com/SienkLogic/plan-build-run/commit/d68ff689c974df9e1908b70206bcebe7d96ac09a))
663
+ * update CLAUDE.md coverage thresholds to 70% and test count to ~1666 ([0379115](https://github.com/SienkLogic/plan-build-run/commit/037911513fc9a335721fb3d8c14060c64c0f8e4a))
664
+
665
+ ## [2.35.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.35.0...plan-build-run-v2.35.1) (2026-02-25)
666
+
667
+
668
+ ### Bug Fixes
669
+
670
+ * **quick-012:** remove cursor-pbr from Claude Code marketplace listing ([159372d](https://github.com/SienkLogic/plan-build-run/commit/159372ddb4f30bbdfbbac0822be676eb39901185))
671
+
672
+ ## [2.35.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.34.0...plan-build-run-v2.35.0) (2026-02-25)
673
+
674
+
675
+ ### Features
676
+
677
+ * **44-01:** add inline SVG icons to sidebar nav and brand area ([5232e3d](https://github.com/SienkLogic/plan-build-run/commit/5232e3d6ee7770f1dc0cfb4971a5e0ae3b23bd54))
678
+ * **44-01:** create StatCardGrid component and stat-card CSS system ([2797422](https://github.com/SienkLogic/plan-build-run/commit/279742287c3e0f4d41e4814c1c3bed5332cd945f))
679
+ * **44-01:** wire StatCardGrid into command-center route replacing StatusHeader+ProgressRing ([4c13326](https://github.com/SienkLogic/plan-build-run/commit/4c13326b90f36935f9e02815f3def61abcd9e5f3))
680
+ * **44-02:** add empty-state CSS component and apply to AttentionPanel and QuickActions ([a0e27b5](https://github.com/SienkLogic/plan-build-run/commit/a0e27b53ad7a6a9316c2067444fa462520d3c87b))
681
+ * **44-02:** enhance Explorer phases rows and add status/priority filter selects to todos toolbar ([036b356](https://github.com/SienkLogic/plan-build-run/commit/036b356f511ba2e4180f32c5ea418e6ec0a36ca3))
682
+ * **44-02:** restructure Command Center into 2-column cc-two-col grid layout ([2838fc4](https://github.com/SienkLogic/plan-build-run/commit/2838fc4fe9895ef67b9ac3f2c501e70135fe6a78))
683
+ * **44-03:** consolidate btn system into layout.css, add card hover shadow and cursor:pointer ([b525d2c](https://github.com/SienkLogic/plan-build-run/commit/b525d2cd20fd11454fdfb131003d07ae29d54911))
684
+ * **44-03:** unify section label typography via --section-label-* tokens ([8da1997](https://github.com/SienkLogic/plan-build-run/commit/8da1997d1e34ab7b1ebfb590adbf8c6e360cfef9))
685
+
686
+
687
+ ### Bug Fixes
688
+
689
+ * **quick-012:** remove unrecognized 'platform' key from marketplace.json ([ffeaa5e](https://github.com/SienkLogic/plan-build-run/commit/ffeaa5e12e5f45a6e05778e459a2c74f18c680c0))
690
+
8
691
  ## [2.34.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.33.1...plan-build-run-v2.34.0) (2026-02-25)
9
692
 
10
693