@hegemonart/get-design-done 1.57.1 → 1.57.3

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 (237) hide show
  1. package/.claude-plugin/marketplace.json +26 -41
  2. package/.claude-plugin/plugin.json +23 -48
  3. package/CHANGELOG.md +139 -0
  4. package/README.md +166 -511
  5. package/SKILL.md +4 -6
  6. package/agents/README.md +33 -36
  7. package/agents/a11y-mapper.md +3 -3
  8. package/agents/component-benchmark-harvester.md +6 -6
  9. package/agents/component-benchmark-synthesizer.md +3 -3
  10. package/agents/compose-executor.md +3 -3
  11. package/agents/cost-forecaster.md +2 -2
  12. package/agents/design-auditor.md +7 -7
  13. package/agents/design-authority-watcher.md +15 -15
  14. package/agents/design-context-builder.md +4 -4
  15. package/agents/design-context-checker-gate.md +1 -1
  16. package/agents/design-discussant.md +2 -2
  17. package/agents/design-doc-writer.md +1 -1
  18. package/agents/design-executor.md +2 -2
  19. package/agents/design-figma-writer.md +2 -2
  20. package/agents/design-fixer.md +7 -7
  21. package/agents/design-integration-checker-gate.md +1 -1
  22. package/agents/design-integration-checker.md +1 -1
  23. package/agents/design-paper-writer.md +3 -3
  24. package/agents/design-pencil-writer.md +1 -1
  25. package/agents/design-planner.md +21 -0
  26. package/agents/design-reflector.md +39 -39
  27. package/agents/design-research-synthesizer.md +1 -0
  28. package/agents/design-start-writer.md +1 -1
  29. package/agents/design-update-checker.md +5 -5
  30. package/agents/design-verifier-gate.md +1 -1
  31. package/agents/design-verifier.md +52 -48
  32. package/agents/ds-generator.md +2 -2
  33. package/agents/ds-migration-planner.md +4 -4
  34. package/agents/email-executor.md +9 -9
  35. package/agents/experiment-result-ingester.md +3 -3
  36. package/agents/flutter-executor.md +5 -5
  37. package/agents/gdd-graph-refresh.md +3 -3
  38. package/agents/gdd-intel-updater.md +2 -2
  39. package/agents/motion-mapper.md +2 -2
  40. package/agents/motion-verifier.md +4 -4
  41. package/agents/pdf-executor.md +8 -8
  42. package/agents/perf-analyzer.md +17 -17
  43. package/agents/pr-commenter.md +9 -9
  44. package/agents/prototype-gate.md +2 -2
  45. package/agents/quality-gate-runner.md +1 -1
  46. package/agents/rollout-coordinator.md +3 -3
  47. package/agents/swift-executor.md +4 -4
  48. package/agents/ticket-sync-agent.md +6 -6
  49. package/agents/user-research-synthesizer.md +2 -2
  50. package/connections/connections.md +44 -45
  51. package/connections/cursor.md +72 -0
  52. package/connections/preview.md +3 -3
  53. package/hooks/first-run-nudge.cjs +171 -0
  54. package/hooks/gdd-intel-trigger.js +243 -0
  55. package/hooks/gdd-mcp-circuit-breaker.js +62 -7
  56. package/hooks/gdd-precompact-snapshot.js +50 -29
  57. package/hooks/gdd-protected-paths.js +150 -18
  58. package/hooks/gdd-risk-gate.js +93 -1
  59. package/hooks/gdd-sessionstart-recap.js +59 -24
  60. package/hooks/hooks.json +13 -4
  61. package/hooks/inject-using-gdd.cjs +188 -0
  62. package/hooks/update-check.cjs +511 -0
  63. package/package.json +9 -3
  64. package/reference/STATE-TEMPLATE.md +10 -13
  65. package/reference/audit-scoring.md +1 -1
  66. package/reference/cache-tier-doctrine.md +46 -0
  67. package/reference/config-schema.md +9 -9
  68. package/reference/i18n.md +1 -1
  69. package/reference/intel-schema.md +37 -2
  70. package/reference/meta-rules.md +4 -4
  71. package/reference/model-tiers.md +2 -2
  72. package/reference/registry.json +101 -94
  73. package/reference/runtime-models.md +11 -1
  74. package/reference/shared-preamble.md +13 -14
  75. package/reference/skill-graph.md +22 -3
  76. package/scripts/bootstrap.cjs +373 -0
  77. package/scripts/injection-patterns.cjs +58 -0
  78. package/scripts/lib/apply-reflections/incubator-proposals.cjs +57 -26
  79. package/scripts/lib/install/converters/codex-plugin.cjs +5 -2
  80. package/scripts/lib/install/converters/cursor.cjs +20 -0
  81. package/scripts/lib/issue-reporter/report-flow.cjs +1 -1
  82. package/scripts/lib/manifest/skills.json +75 -28
  83. package/scripts/lib/state/query-surface.cjs +67 -9
  84. package/scripts/lib/state/state-store.cjs +68 -26
  85. package/scripts/lib/worktree-resolve.cjs +4 -16
  86. package/sdk/cli/commands/stage.ts +17 -0
  87. package/sdk/cli/index.js +14 -0
  88. package/skills/README.md +46 -0
  89. package/skills/bootstrap-ds/SKILL.md +1 -1
  90. package/skills/cache-manager/SKILL.md +3 -3
  91. package/skills/cache-manager/cache-policy.md +1 -1
  92. package/skills/compare/SKILL.md +1 -1
  93. package/skills/design/SKILL.md +19 -0
  94. package/skills/explore/SKILL.md +11 -0
  95. package/skills/figma-write/SKILL.md +13 -2
  96. package/skills/new-cycle/SKILL.md +1 -1
  97. package/skills/paper-write/SKILL.md +54 -0
  98. package/skills/peer-cli-customize/SKILL.md +0 -1
  99. package/skills/peers/SKILL.md +1 -1
  100. package/skills/pencil-write/SKILL.md +54 -0
  101. package/skills/reflect/procedures/capability-gap-scan.md +0 -1
  102. package/skills/report-issue/SKILL.md +2 -2
  103. package/skills/report-issue/report-issue-procedure.md +0 -1
  104. package/skills/router/SKILL.md +2 -2
  105. package/skills/synthesize/SKILL.md +1 -1
  106. package/skills/turn-closeout/SKILL.md +1 -1
  107. package/skills/verify/verify-procedure.md +10 -11
  108. package/skills/warm-cache/SKILL.md +1 -1
  109. package/dist/claude-code/.claude/skills/add-backlog/SKILL.md +0 -48
  110. package/dist/claude-code/.claude/skills/analyze-dependencies/SKILL.md +0 -95
  111. package/dist/claude-code/.claude/skills/apply-reflections/SKILL.md +0 -109
  112. package/dist/claude-code/.claude/skills/apply-reflections/apply-reflections-procedure.md +0 -170
  113. package/dist/claude-code/.claude/skills/audit/SKILL.md +0 -79
  114. package/dist/claude-code/.claude/skills/bandit-status/SKILL.md +0 -94
  115. package/dist/claude-code/.claude/skills/benchmark/SKILL.md +0 -65
  116. package/dist/claude-code/.claude/skills/bootstrap-ds/SKILL.md +0 -43
  117. package/dist/claude-code/.claude/skills/brief/SKILL.md +0 -145
  118. package/dist/claude-code/.claude/skills/budget/SKILL.md +0 -45
  119. package/dist/claude-code/.claude/skills/cache-manager/SKILL.md +0 -66
  120. package/dist/claude-code/.claude/skills/cache-manager/cache-policy.md +0 -126
  121. package/dist/claude-code/.claude/skills/check-update/SKILL.md +0 -98
  122. package/dist/claude-code/.claude/skills/compare/SKILL.md +0 -82
  123. package/dist/claude-code/.claude/skills/compare/compare-rubric.md +0 -171
  124. package/dist/claude-code/.claude/skills/complete-cycle/SKILL.md +0 -81
  125. package/dist/claude-code/.claude/skills/connections/SKILL.md +0 -71
  126. package/dist/claude-code/.claude/skills/connections/connections-onboarding.md +0 -608
  127. package/dist/claude-code/.claude/skills/context/SKILL.md +0 -137
  128. package/dist/claude-code/.claude/skills/continue/SKILL.md +0 -24
  129. package/dist/claude-code/.claude/skills/darkmode/SKILL.md +0 -76
  130. package/dist/claude-code/.claude/skills/darkmode/darkmode-audit-procedure.md +0 -258
  131. package/dist/claude-code/.claude/skills/debug/SKILL.md +0 -41
  132. package/dist/claude-code/.claude/skills/debug/debug-feedback-loops.md +0 -119
  133. package/dist/claude-code/.claude/skills/design/SKILL.md +0 -99
  134. package/dist/claude-code/.claude/skills/design/design-procedure.md +0 -304
  135. package/dist/claude-code/.claude/skills/discover/SKILL.md +0 -78
  136. package/dist/claude-code/.claude/skills/discover/discover-procedure.md +0 -222
  137. package/dist/claude-code/.claude/skills/discuss/SKILL.md +0 -96
  138. package/dist/claude-code/.claude/skills/do/SKILL.md +0 -45
  139. package/dist/claude-code/.claude/skills/explore/SKILL.md +0 -107
  140. package/dist/claude-code/.claude/skills/explore/explore-procedure.md +0 -267
  141. package/dist/claude-code/.claude/skills/export/SKILL.md +0 -30
  142. package/dist/claude-code/.claude/skills/extract-learnings/SKILL.md +0 -114
  143. package/dist/claude-code/.claude/skills/fast/SKILL.md +0 -91
  144. package/dist/claude-code/.claude/skills/figma-extract/SKILL.md +0 -64
  145. package/dist/claude-code/.claude/skills/figma-write/SKILL.md +0 -39
  146. package/dist/claude-code/.claude/skills/graphify/SKILL.md +0 -49
  147. package/dist/claude-code/.claude/skills/health/SKILL.md +0 -99
  148. package/dist/claude-code/.claude/skills/health/health-mcp-detection.md +0 -44
  149. package/dist/claude-code/.claude/skills/health/health-skill-length-report.md +0 -69
  150. package/dist/claude-code/.claude/skills/help/SKILL.md +0 -87
  151. package/dist/claude-code/.claude/skills/instinct/SKILL.md +0 -111
  152. package/dist/claude-code/.claude/skills/list-assumptions/SKILL.md +0 -61
  153. package/dist/claude-code/.claude/skills/list-pins/SKILL.md +0 -27
  154. package/dist/claude-code/.claude/skills/live/SKILL.md +0 -98
  155. package/dist/claude-code/.claude/skills/locale/SKILL.md +0 -51
  156. package/dist/claude-code/.claude/skills/map/SKILL.md +0 -89
  157. package/dist/claude-code/.claude/skills/migrate/SKILL.md +0 -70
  158. package/dist/claude-code/.claude/skills/migrate-context/SKILL.md +0 -123
  159. package/dist/claude-code/.claude/skills/new-addendum/SKILL.md +0 -81
  160. package/dist/claude-code/.claude/skills/new-cycle/SKILL.md +0 -37
  161. package/dist/claude-code/.claude/skills/new-cycle/milestone-completeness-rubric.md +0 -87
  162. package/dist/claude-code/.claude/skills/new-project/SKILL.md +0 -53
  163. package/dist/claude-code/.claude/skills/new-skill/SKILL.md +0 -90
  164. package/dist/claude-code/.claude/skills/next/SKILL.md +0 -68
  165. package/dist/claude-code/.claude/skills/note/SKILL.md +0 -48
  166. package/dist/claude-code/.claude/skills/openrouter-status/SKILL.md +0 -86
  167. package/dist/claude-code/.claude/skills/optimize/SKILL.md +0 -97
  168. package/dist/claude-code/.claude/skills/override/SKILL.md +0 -86
  169. package/dist/claude-code/.claude/skills/pause/SKILL.md +0 -77
  170. package/dist/claude-code/.claude/skills/peer-cli-add/SKILL.md +0 -88
  171. package/dist/claude-code/.claude/skills/peer-cli-add/peer-cli-protocol.md +0 -161
  172. package/dist/claude-code/.claude/skills/peer-cli-customize/SKILL.md +0 -90
  173. package/dist/claude-code/.claude/skills/peers/SKILL.md +0 -96
  174. package/dist/claude-code/.claude/skills/pin/SKILL.md +0 -37
  175. package/dist/claude-code/.claude/skills/plan/SKILL.md +0 -105
  176. package/dist/claude-code/.claude/skills/plan/plan-procedure.md +0 -278
  177. package/dist/claude-code/.claude/skills/plant-seed/SKILL.md +0 -48
  178. package/dist/claude-code/.claude/skills/pr-branch/SKILL.md +0 -32
  179. package/dist/claude-code/.claude/skills/progress/SKILL.md +0 -107
  180. package/dist/claude-code/.claude/skills/quality-gate/SKILL.md +0 -90
  181. package/dist/claude-code/.claude/skills/quality-gate/threat-modeling.md +0 -101
  182. package/dist/claude-code/.claude/skills/quick/SKILL.md +0 -44
  183. package/dist/claude-code/.claude/skills/reapply-patches/SKILL.md +0 -32
  184. package/dist/claude-code/.claude/skills/recall/SKILL.md +0 -75
  185. package/dist/claude-code/.claude/skills/reflect/SKILL.md +0 -85
  186. package/dist/claude-code/.claude/skills/reflect/procedures/capability-gap-scan.md +0 -120
  187. package/dist/claude-code/.claude/skills/report-issue/SKILL.md +0 -53
  188. package/dist/claude-code/.claude/skills/report-issue/report-issue-procedure.md +0 -120
  189. package/dist/claude-code/.claude/skills/resume/SKILL.md +0 -93
  190. package/dist/claude-code/.claude/skills/review-backlog/SKILL.md +0 -46
  191. package/dist/claude-code/.claude/skills/review-decisions/SKILL.md +0 -42
  192. package/dist/claude-code/.claude/skills/roi/SKILL.md +0 -54
  193. package/dist/claude-code/.claude/skills/rollout-status/SKILL.md +0 -35
  194. package/dist/claude-code/.claude/skills/router/SKILL.md +0 -89
  195. package/dist/claude-code/.claude/skills/router/capability-gap-emitter.md +0 -65
  196. package/dist/claude-code/.claude/skills/router/router-pick-emitter.md +0 -78
  197. package/dist/claude-code/.claude/skills/router/router-rules.md +0 -84
  198. package/dist/claude-code/.claude/skills/scan/SKILL.md +0 -92
  199. package/dist/claude-code/.claude/skills/scan/scan-procedure.md +0 -732
  200. package/dist/claude-code/.claude/skills/settings/SKILL.md +0 -87
  201. package/dist/claude-code/.claude/skills/ship/SKILL.md +0 -48
  202. package/dist/claude-code/.claude/skills/sketch/SKILL.md +0 -78
  203. package/dist/claude-code/.claude/skills/sketch-wrap-up/SKILL.md +0 -92
  204. package/dist/claude-code/.claude/skills/skill-manifest/SKILL.md +0 -79
  205. package/dist/claude-code/.claude/skills/spike/SKILL.md +0 -67
  206. package/dist/claude-code/.claude/skills/spike-wrap-up/SKILL.md +0 -86
  207. package/dist/claude-code/.claude/skills/start/SKILL.md +0 -67
  208. package/dist/claude-code/.claude/skills/start/start-procedure.md +0 -115
  209. package/dist/claude-code/.claude/skills/state/SKILL.md +0 -106
  210. package/dist/claude-code/.claude/skills/stats/SKILL.md +0 -51
  211. package/dist/claude-code/.claude/skills/style/SKILL.md +0 -71
  212. package/dist/claude-code/.claude/skills/style/style-doc-procedure.md +0 -150
  213. package/dist/claude-code/.claude/skills/synthesize/SKILL.md +0 -94
  214. package/dist/claude-code/.claude/skills/timeline/SKILL.md +0 -66
  215. package/dist/claude-code/.claude/skills/todo/SKILL.md +0 -64
  216. package/dist/claude-code/.claude/skills/turn-closeout/SKILL.md +0 -95
  217. package/dist/claude-code/.claude/skills/undo/SKILL.md +0 -31
  218. package/dist/claude-code/.claude/skills/unlock-decision/SKILL.md +0 -54
  219. package/dist/claude-code/.claude/skills/unpin/SKILL.md +0 -31
  220. package/dist/claude-code/.claude/skills/update/SKILL.md +0 -56
  221. package/dist/claude-code/.claude/skills/using-gdd/SKILL.md +0 -78
  222. package/dist/claude-code/.claude/skills/verify/SKILL.md +0 -113
  223. package/dist/claude-code/.claude/skills/verify/verify-procedure.md +0 -512
  224. package/dist/claude-code/.claude/skills/warm-cache/SKILL.md +0 -81
  225. package/dist/claude-code/.claude/skills/watch-authorities/SKILL.md +0 -82
  226. package/dist/claude-code/.claude/skills/zoom-out/SKILL.md +0 -26
  227. package/hooks/first-run-nudge.sh +0 -82
  228. package/hooks/inject-using-gdd.sh +0 -72
  229. package/hooks/run-hook.cmd +0 -35
  230. package/hooks/update-check.sh +0 -251
  231. package/scripts/lib/audit-aggregator/index.cjs +0 -219
  232. package/scripts/lib/hedge-ensemble.cjs +0 -217
  233. package/skills/discover/SKILL.md +0 -78
  234. package/skills/discover/discover-procedure.md +0 -222
  235. package/skills/new-cycle/milestone-completeness-rubric.md +0 -87
  236. package/skills/scan/SKILL.md +0 -92
  237. package/skills/scan/scan-procedure.md +0 -732
@@ -4,15 +4,15 @@
4
4
  "name": "hegemonart"
5
5
  },
6
6
  "metadata": {
7
- "description": "Get Design Done — 5-stage agent-orchestrated design pipeline with 9 connections, handoff-first workflow, bidirectional Figma write-back, 22+ specialized agents, queryable knowledge layer (intel store, dependency analysis, learnings extraction), and a self-improvement loop (reflector, frontmatter + budget feedback, global-skills layer). v1.20.0 ships the SDK foundation: gdd-state MCP server (11 typed tools), lockfile-safe STATE.md mutations, event stream, and resilience primitives (jittered-backoff, rate-guard, error-classifier, iteration-budget) for rate-limit + 429 + context-overflow recovery. Full CI/CD pipeline (Node 22/24 × Linux/macOS/Windows) and release automation (auto-tag + GitHub Release + release-time smoke test).",
8
- "version": "1.57.1"
7
+ "description": "Get Design Done — 5-stage agent-orchestrated design pipeline (Brief Explore Plan Design Verify) for AI coding agents. 61 agents, 94 skills, 42 connection integrations, two MCP servers, opt-in SQLite state backbone, bidirectional Figma write-back, and a reflector-driven self-improvement loop. Cross-runtime install for Claude Code, Codex, Cursor, OpenCode, Gemini, and more.",
8
+ "version": "1.57.3"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "get-design-done",
13
13
  "source": "./",
14
- "description": "Agent-orchestrated 5-stage design pipeline: Brief → Explore → Plan → Design → Verify. 22+ specialized agents, 9 connections (Figma, Refero, Preview, Storybook, Chromatic, Figma Writer, Graphify, Pinterest, Claude Design), Claude Design handoff, bidirectional Figma write-back, and a queryable intel store (.design/intel/) for dependency and learnings queries. Standalone commands: style, darkmode, compare, figma-write, graphify, handoff, analyze-dependencies, skill-manifest, extract-learnings. Embeds NNG heuristics, WCAG thresholds, typographic systems, motion framework, and anti-pattern catalog. Ships with a full CI/CD pipeline (Node 22/24 × Linux/macOS/Windows) and release automation. Optimization layer (v1.0.4.1, retroactive): gdd-router + gdd-cache-manager skills, PreToolUse budget-enforcer hook, tier-aware agent frontmatter, lazy checker gates, streaming synthesizer, /gdd:warm-cache + /gdd:optimize commands, and cost telemetry at .design/telemetry/costs.jsonl — targeting 50-70% per-task token-cost reduction with no quality-floor regression. v1.20.0 SDK foundation: gdd-state MCP server (11 typed tools), lockfile-safe STATE.md mutations, event stream at .design/telemetry/events.jsonl, resilience primitives (jittered-backoff, rate-guard, error-classifier, iteration-budget) with rate-limit + 429 + context-overflow recovery, and TypeScript toolchain.",
15
- "version": "1.57.1",
14
+ "description": "Agent-orchestrated 5-stage design pipeline (Brief → Explore → Plan → Design → Verify) for AI coding agents. 61 specialized agents, 94 skills, 42 connection integrations (Figma, Refero, Preview, Storybook, Chromatic, Graphify, Linear, Jira, Notion, ), bidirectional Figma write-back, queryable intel store, opt-in SQLite state backbone, and a reflector-driven self-improvement loop. Two MCP servers (gdd-state for typed STATE mutators, gdd-mcp for 13 read-only project-priming tools), tier-aware routing with cost telemetry, and defense-in-depth hooks (protected paths, MCP circuit breaker, injection scanner, budget enforcer). Cross-runtime install for Claude Code, Codex, Cursor, OpenCode, Gemini, Copilot, and more.",
15
+ "version": "1.57.3",
16
16
  "author": {
17
17
  "name": "hegemonart"
18
18
  },
@@ -21,63 +21,48 @@
21
21
  "license": "MIT",
22
22
  "category": "design",
23
23
  "keywords": [
24
+ "claude",
25
+ "claude-code",
26
+ "claude-code-plugin",
27
+ "plugin",
28
+ "mcp",
29
+ "mcp-server",
30
+ "agent-sdk",
31
+ "parallel-agents",
24
32
  "design",
33
+ "design-system",
34
+ "design-system-sync",
25
35
  "ui",
26
36
  "ux",
27
37
  "frontend",
28
38
  "pipeline",
29
39
  "orchestration",
30
- "skill",
31
- "design-system",
40
+ "figma",
41
+ "figma-write",
32
42
  "accessibility",
33
43
  "wcag",
34
- "nng",
35
44
  "typography",
36
45
  "motion",
37
46
  "anti-patterns",
38
47
  "audit",
39
- "visual-regression",
40
48
  "storybook",
41
49
  "graphify",
42
- "playwright",
43
- "figma-write",
44
- "handoff",
45
- "claude-design",
46
- "pinterest",
47
- "bidirectional",
48
50
  "knowledge-graph",
49
51
  "intel-store",
50
- "tested",
51
- "ci",
52
- "cicd",
53
- "release-automation",
54
- "gitleaks",
55
- "shellcheck",
56
- "safety-hardening",
57
- "protected-paths",
58
- "decision-injector",
59
- "reference-registry",
60
- "mcp-circuit-breaker",
61
- "schema-validation",
62
- "cost-optimization",
63
- "cache-aware",
64
- "budget",
52
+ "self-improvement",
53
+ "reflection",
54
+ "anti-slop",
55
+ "confidence-gate",
56
+ "skill-composition",
57
+ "skill-graph",
58
+ "worktree-safe",
65
59
  "headless",
66
60
  "cli",
67
61
  "codex",
62
+ "cursor",
68
63
  "gemini",
69
- "mcp",
70
- "parallel-agents",
71
- "agent-sdk",
72
- "figma",
73
- "extractor",
74
- "design-system-sync",
75
- "swift",
76
- "compose",
77
- "flutter",
78
- "email",
79
- "print",
80
- "pdf"
64
+ "tested",
65
+ "ci"
81
66
  ]
82
67
  }
83
68
  ]
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "get-design-done",
3
3
  "short_name": "gdd",
4
- "version": "1.57.1",
5
- "description": "Agent-orchestrated 5-stage design pipeline: Brief → Explore → Plan → Design → Verify. 59 specialized agents, 88 skills, 41 connection integrations (Figma, Refero, Preview, Storybook, Chromatic, Graphify, Slack, Linear, Jira, Notion, and more), handoff-first workflow via Claude Design bundles, bidirectional Figma write-back (annotations, Code Connect), queryable intel store (`.design/intel/`) for O(1) design surface lookups, and self-improvement loop (reflector agent, frontmatter + budget feedback, global-skills layer at `~/.claude/gdd/global-skills/`). Standalone commands: style, darkmode, compare, figma-write, graphify, handoff, analyze-dependencies, skill-manifest, extract-learnings, reflect, apply-reflections. Embeds NNG heuristics, WCAG thresholds, typographic systems, motion framework, and anti-pattern catalog. Ships with a full CI/CD pipeline (Node 22/24 × Linux/macOS/Windows, lint + schema + frontmatter + stale-ref + shellcheck + gitleaks + injection-scan + blocking size-budget) and release automation (auto-tag + GitHub Release + release-time smoke test). Optimization layer (v1.0.4.1, retroactive): gdd-router + gdd-cache-manager skills, PreToolUse budget-enforcer hook, tier-aware agent frontmatter, lazy checker gates, streaming synthesizer, /gdd:warm-cache + /gdd:optimize commands, and cost telemetry at .design/telemetry/costs.jsonl — targeting 50-70% per-task token-cost reduction with no quality-floor regression. v1.20.0 SDK foundation: gdd-state MCP server (11 typed tools), lockfile-safe STATE.md mutations, event stream at .design/telemetry/events.jsonl, resilience primitives (jittered-backoff, rate-guard, error-classifier, iteration-budget) with rate-limit + 429 + context-overflow recovery, and TypeScript toolchain. v1.27.7 ships gdd-mcp (Phase 27.7): 12 read-only MCP tools for sub-3s priming. v1.28.0 (Phase 28): Foundational References Tier 2 — 5 new reference files (color-theory, composition, proportion-systems, i18n, contrast-advanced), 2 verifier i18n probes + 1 explore i18n-readiness probe, 12 additive cross-link insertions across 10 existing references, 2 orthogonal audit-scoring lens-tags (composition_alignment + i18n_readiness).",
4
+ "version": "1.57.3",
5
+ "description": "Agent-orchestrated 5-stage design pipeline (Brief → Explore → Plan → Design → Verify) for AI coding agents. 61 specialized agents, 94 skills, 42 connection integrations (Figma, Refero, Preview, Storybook, Chromatic, Graphify, Linear, Jira, Notion, ), bidirectional Figma write-back, queryable intel store for O(1) design-surface lookups, opt-in SQLite state backbone, and a reflector-driven self-improvement loop. Two MCP servers (`gdd-state` for typed STATE mutators, `gdd-mcp` for 13 read-only project-priming tools), tier-aware agent routing with cost telemetry, defense-in-depth hooks (protected paths, MCP circuit breaker, injection scanner, budget enforcer), and a cross-runtime install layer for Claude Code, Codex, Cursor, OpenCode, Gemini, Copilot, and more.",
6
6
  "author": {
7
7
  "name": "hegemonart",
8
8
  "url": "https://github.com/hegemonart"
@@ -11,73 +11,48 @@
11
11
  "repository": "https://github.com/hegemonart/get-design-done",
12
12
  "license": "MIT",
13
13
  "keywords": [
14
+ "claude",
15
+ "claude-code",
16
+ "claude-code-plugin",
17
+ "plugin",
18
+ "mcp",
19
+ "mcp-server",
20
+ "agent-sdk",
21
+ "parallel-agents",
14
22
  "design",
23
+ "design-system",
24
+ "design-system-sync",
15
25
  "ui",
16
26
  "ux",
17
27
  "frontend",
18
28
  "pipeline",
19
- "skill",
20
- "design-system",
29
+ "orchestration",
30
+ "figma",
31
+ "figma-write",
21
32
  "accessibility",
22
33
  "wcag",
23
- "nng",
24
34
  "typography",
25
35
  "motion",
26
36
  "anti-patterns",
27
37
  "audit",
28
- "visual-regression",
29
38
  "storybook",
30
39
  "graphify",
31
- "playwright",
32
- "figma-write",
33
- "handoff",
34
- "claude-design",
35
- "pinterest",
36
- "bidirectional",
37
40
  "knowledge-graph",
38
41
  "intel-store",
39
42
  "self-improvement",
40
43
  "reflection",
41
- "safety-hardening",
42
- "protected-paths",
43
- "decision-injector",
44
- "reference-registry",
45
- "mcp-circuit-breaker",
46
- "tested",
47
- "ci",
48
- "cicd",
49
- "release-automation",
50
- "gitleaks",
51
- "shellcheck",
52
- "schema-validation",
53
- "cost-optimization",
54
- "cache-aware",
55
- "budget",
44
+ "anti-slop",
45
+ "confidence-gate",
46
+ "skill-composition",
47
+ "skill-graph",
48
+ "worktree-safe",
56
49
  "headless",
57
50
  "cli",
58
51
  "codex",
52
+ "cursor",
59
53
  "gemini",
60
- "mcp",
61
- "parallel-agents",
62
- "agent-sdk",
63
- "mcp-server",
64
- "context-loading",
65
- "cross-session",
66
- "figma",
67
- "extractor",
68
- "design-system-sync",
69
- "swift",
70
- "compose",
71
- "flutter",
72
- "email",
73
- "print",
74
- "pdf",
75
- "worktree-safe",
76
- "anti-slop",
77
- "confidence-gate",
78
- "anti-slop-rubric",
79
- "skill-composition",
80
- "skill-graph"
54
+ "tested",
55
+ "ci"
81
56
  ],
82
57
  "skills": [
83
58
  "./skills/"
package/CHANGELOG.md CHANGED
@@ -4,6 +4,137 @@ All notable changes to get-design-done are documented here. Versions follow [sem
4
4
 
5
5
  ---
6
6
 
7
+ ## [1.57.3] - 2026-06-04
8
+
9
+ ### Polish residuals - closes remaining POLISH-PLAN items + dist/ deduplication
10
+
11
+ Continuation of the v1.57.2 grooming wave. Closes the open POLISH-PLAN items that v1.57.2 deferred, plus a structural cleanup the user noticed during PR review. Additive only; no breaking changes. 5,007/5,007 tests pass.
12
+
13
+ ### Removed
14
+
15
+ - **`agents/prototype-gate.md`** - orphan agent (no skill dispatched it, no hook fired it). Functionality is absorbed by `sketch-wrap-up` and `spike-wrap-up`.
16
+ - **`skills/scan/` + `skills/discover/`** + their `source/skills/` mirrors. Deprecated aliases of `/gdd:explore` for several releases; the root SKILL.md command table no longer carries them. Counts drop 96 -> 94 skills.
17
+ - **`hooks/run-hook.cmd`** - obsolete after the v1.57.2 `.sh` -> `.cjs` SessionStart hook port (all 4 SessionStart hooks now run via `node`, no Windows-bash wrapper needed).
18
+ - **`scripts/lib/worktree-resolve.cjs#resolvePlanningRoot`** - unused export per the audit. Zero production callers across `scripts/ sdk/ hooks/ agents/ skills/`.
19
+ - **`skills/new-cycle/milestone-completeness-rubric.md`** - plugin-internal release-process rubric that was shipping to users via `skills/`. Moved to `docs/MAINTAINER-NOTES.md` so it stops landing in user `~/.claude/skills/` installs.
20
+ - **6 stale `docs/i18n/README.*.md` translations** (de / fr / it / ja / ko / zh-CN). Frozen at v1.24.0 per the v1.57.2 audit. The English README will be rewritten separately. Removed the multilingual nav line from the main README.
21
+ - **`dist/claude-code/` from `package.json#files` + git tracking** - the directory was a byte-identical duplicate of `skills/` (120 files; Claude Code reads `./skills/` directly via `package.json#skills`). `dist/` now fully gitignored; the on-disk dir is a deterministic build artifact rebuilt by `npm run build:skills` on demand. Saves ~120 duplicate-file entries from every npm tarball (tarball-manifest baseline shrank 1001 -> 879 lines).
22
+ - **`.DS_Store` macOS cruft** swept from `skills/`, `test/`, `dist/` + added `**/.DS_Store` to `.gitignore`.
23
+
24
+ ### Added
25
+
26
+ - **`scripts/check-codex-plugin-drift.cjs`** + `npm run validate:codex-plugin` + `test/suite/codex-plugin-drift.test.cjs` - new CI gate that asserts the committed `.codex-plugin/plugin.json` and `.cursor-plugin/plugin.json` byte-match the generator output from `scripts/build-distribution-bundles.cjs`. Mirrors the baseline-ratchet pattern of `check-feature-counts.cjs`; supports `--rebaseline` for legitimate generator changes. Closes the "committed vs generated SoT" open question from POLISH-PLAN.md by making the generator authoritative and the committed snapshot a verified mirror.
27
+ - **`source/skills/README.md`** + **`skills/README.md`** - documents `source/skills/` as the canonical home for skill BODY content. `scripts/lib/manifest/skills.json` remains the SoT for universal frontmatter fields (`name`, `description`, `argument-hint`, `tools`, `user-invocable`, `disable-model-invocation`). `skills/` is a byte-stable build artifact (npm distribution path); `dist/<harness>/` is a build-time output for non-Claude harness channels.
28
+ - **`docs/MAINTAINER-NOTES.md`** - relocated home for `milestone-completeness-rubric.md` (moved from `skills/new-cycle/`).
29
+ - **Phase 58 entry in `.planning/ROADMAP.md`** - Composition-Graph Mandatory Rollout. Goal: backfill `composes_with` on the remaining 74 of 96 skills (this release added 13 more, bringing the total from 9 to 22 wired skills). Scope: 6 plans across 3 waves (audit + allowlist; backfill + contract bump + scaffolder; closeout). Target v1.58.0.
30
+ - **`composes_with` edges on 13 additional high-traffic skills** (`scripts/lib/manifest/skills.json`): apply-reflections, brief, compare, complete-cycle, darkmode, debug, discuss, explore, figma-extract, figma-write, live, map, new-cycle, new-project, progress. `reference/skill-graph.md` regenerated (96 -> 94 nodes after scan/discover removal, 34 edges, 0 cycles).
31
+ - **`connections/cursor.md`** got a documented sibling-drop fix (followup from v1.57.2's H6 documentation).
32
+
33
+ ### Changed
34
+
35
+ - **`source/skills/style/SKILL.md`** - removed user-facing `.planning/STATE.md` reference (was "a pre-roadmap decision recorded in `.planning/STATE.md`" -> now neutral "deliberate namespace decision"). Built artifacts in `skills/` and `dist/claude-code/` propagated.
36
+ - **`reference/model-tiers.md`** - softened the agent-name prefix convention (`gdd-*` = housekeeping; `design-*` = pipeline) into a soft naming hint rather than enforced rule. Added explicit "prefix is not a tier signal" clarifier above the Per-Agent Tier Map. Fixed gdd-intel-updater rationale that mentioned `.planning/intel/` (the agent actually writes `.design/intel/`).
37
+ - **`agents/README.md` Naming Convention** - replaced the implicit "all agents use `design-` prefix" claim with neutral language acknowledging the mix of `design-*` / `gdd-*` / bare prefixes. No enforcement; no expected pattern.
38
+ - **`reference/runtime-models.md`** - the 10 unverified entries (kilo, copilot, cursor, windsurf, antigravity, augment, trae, codebuddy, cline, opencode) reformatted: dropped the `<TODO: confirm at ...>` URL wrapper, kept the plain URL, added explicit `"verified": false` field on provenance. The 4 verified entries (claude, codex, gemini, qwen) get `"verified": true`. Schema (`reference/schemas/runtime-models.schema.json`) gained the optional `verified` boolean field.
39
+ - **`scripts/lib/manifest/skills.json` + `reference/skill-graph.md`** - graph regenerated (now 94 skills, 34 composition edges, 0 cycles).
40
+ - **`.github/workflows/release.yml`** - added `cursor-marketplace` channel to the distribution-bundles build step (was missing from the release CI; the converter existed but wasn't wired into the release run).
41
+ - **Skill count claims** synchronized to filesystem truth across all 5 surfaces (plugin.json + marketplace.json + README.md): 96 -> 94 skills.
42
+ - **`scripts/build-skills.cjs` `--check` mode** - dropped the `dist/claude-code/` drift assertion (the dir is no longer committed; only `skills/` is the canonical built artifact under git).
43
+ - **`test/suite/phase-42-build.test.cjs` 42-build-06** - repurposed from "dist/claude-code/ mirrors skills/" to "dist/claude-code/ is NOT committed" (preserves the gate against accidental re-introduction).
44
+
45
+ ### Test infrastructure
46
+
47
+ - Forward-propagated `manifests-version.txt` baselines from `1.57.2` -> `1.57.3` across 37 phase fixture dirs.
48
+ - `semver-compare.test.cjs` registers `OFF_CADENCE_VERSIONS.add('1.57.3')` with multi-line rationale comment matching the v1.57.2 pattern.
49
+ - Tarball manifest baseline regenerated via `npm pack --dry-run --json` (1001 -> 879 lines after dist/claude-code/ removal + scan/discover/prototype-gate/milestone-rubric deletes).
50
+ - Skill frontmatter regenerated via `npm run generate:skill-frontmatter` (3 drifted entries on bootstrap-ds, compare, synthesize).
51
+ - 23 test failures from the deletes (count drift, baseline drift, em-dash lint, codex-plugin-drift) all resolved.
52
+
53
+ ---
54
+
55
+ ## [1.57.2] - 2026-06-04
56
+
57
+ ### Polish wave - 24 commits closing the v1.57 audit + 5 new CI gates
58
+
59
+ A single grooming wave: closes ~80% of the gap between what the plugin claims and what it does, plus structural CI gates that prevent the same drift from coming back. 5,007/5,007 tests pass; all 16 CI checks green. No breaking changes - additive only.
60
+
61
+ ### Fixed (8 ship-blockers)
62
+
63
+ - **`scripts/injection-patterns.cjs` was excluded from the npm tarball** via `.npmignore`. `hooks/gdd-read-injection-scanner.ts` calls `createRequire()` to load it at runtime, so the scanner was a silent no-op for every shipped install (PostToolUse:Read security check disabled). Now in `package.json#files`; verified via `npm pack --dry-run`.
64
+ - **`gdd-sdk stage audit` errored without hinting at the real top-level subcommand.** The error now suggests "did you mean `gdd-sdk audit`?" - `audit` is a top-level subcommand, not a pipeline stage.
65
+ - **Codex Plugin Generator shipped `longDescription: "<div align=\"center\">"`** (the README's HTML wrapper). The README-first-paragraph scan now skips HTML wrappers, GitHub callouts, nav rows, and badge clusters.
66
+ - **2 hooks (`gdd-sessionstart-recap.js`, `gdd-precompact-snapshot.js`) resolved paths at module load** via `process.cwd()` instead of `payload.cwd` - broken in worktrees. Now thread `payload.cwd` through a `computePaths()` factory.
67
+ - **`hooks/gdd-mcp-circuit-breaker.js` substring-matched `'timeout'` / `'failed'` against the entire stringified MCP response.** False-positives on legitimate successful Figma payloads (e.g. a node literally named "TimeoutBanner" or a summary line "2 of 5 nodes failed to update"). Now uses the structured `isError` / `is_error` envelope as the primary signal and only inspects dedicated error-message fields for timeout-vs-error classification. +4 regression tests.
68
+ - **Windows SessionStart hooks (4 `.sh` scripts) failed without Git Bash on PATH.** Ported `scripts/bootstrap.sh`, `hooks/update-check.sh`, `hooks/first-run-nudge.sh`, `hooks/inject-using-gdd.sh` to Node `.cjs` modules. `hooks/hooks.json` rewired to `node …cjs`. One source of truth, no drift surface.
69
+ - **`hooks/gdd-protected-paths.js` had 4 bypass vectors** in `extractBashTargets()`: chained commands (`rm safe.txt && rm reference/protected.md` extracted only `safe.txt`), multi-arg destructive verbs, `$(…)` subshell substitution, `` `…` `` backtick substitution. Rewrote as a 3-pass walker that recurses into subshells, splits on `&&`/`||`/`;`/`|`, and collects ALL non-flag args per segment. +12 regression tests.
70
+ - **`skills/figma-write/SKILL.md` used invented `<agent>design-figma-writer</agent>` dispatch syntax** that Claude Code does not parse. The entire Figma write-back skill was a silent no-op since it was first authored. Replaced with the canonical `Task("design-figma-writer", "...")` block. Added `test/suite/skill-dispatch-syntax.test.cjs` regression gate that sweeps every SKILL.md.
71
+
72
+ ### Added (5 new CI gates - structural drift prevention)
73
+
74
+ - **`npm run validate:feature-counts`** (`scripts/check-feature-counts.cjs`): walks the filesystem and asserts every shipped surface's count claims (`plugin.json` / `marketplace.json` / `README.md` / `SKILL.md`) match reality (61 agents / 96 skills / 42 connections / 13 MCP tools).
75
+ - **`npm run validate:registry-tiers`** (`scripts/validate-registry-tiers.cjs`): asserts every `registry.json` entry's `tier` field is one of `L0|L1|L2|L3`. Detects model-tier paste-errors (haiku/sonnet/opus accidentally placed in the cache-tier slot).
76
+ - **`npm run validate:no-internal-refs`** (`scripts/validate-no-internal-refs.cjs`): ratcheted baseline at 1,749 hits across 286 files. Fails when any file regresses beyond its baseline count of Phase NN / Plan NN-MM / .planning/ / D-NN references. `--rebaseline` ratchets after legitimate cleanup.
77
+ - **`npm run validate:cache-tiers`** (`scripts/check-cache-tiers.cjs`): SHA-256 of `reference/meta-rules.md` + `reference/shared-preamble.md` (the L0 cache prefix imported by 58 of 62 agents). Drift fails the build. See `reference/cache-tier-doctrine.md`.
78
+ - **`npm run validate:skill-surface`** (`test/suite/skill-surface-sync.test.cjs`): asserts every `skills/` dir on disk is documented in at least one of SKILL.md's three surfaces (argument-hint / Command Reference table / Jump Mode).
79
+
80
+ ### Added (Batch D wirings - 8 aspirational features made real)
81
+
82
+ - **`skills/paper-write/`** (new): paper.design canvas write-back (modes: annotate / tokenize / roundtrip). Modeled on `skills/figma-write/`.
83
+ - **`skills/pencil-write/`** (new): pencil.dev `.pen` file write-back (modes: annotate / roundtrip). File-based - no MCP.
84
+ - **`hooks/gdd-intel-trigger.js`** (new): PostToolUse hook that fires `scripts/build-intel.cjs --incremental` in the background when Edit/Write touches `(skills|agents|reference|source/skills)/.*\.(md|json)`. 5-minute lock dedups rapid sequential edits. Opt-out via `GDD_DISABLE_INTEL_TRIGGER=1`.
85
+ - **`design-component-generator` dispatch** wired into `skills/design/SKILL.md`. Fires opt-in when STATE.md `<connections>` shows a generator connection available (21st-dev / magic-patterns / plasmic / builder-io / v0-dev) and the plan has a `task_type: component` task without matching `src/components/*.tsx`.
86
+ - **`design-context-reviewer` + gate** wired into `skills/explore/` Step 2.6. Cheap Haiku gate runs first; full 9-check graph review fires only when gate says "review needed".
87
+ - **`design-research-synthesizer` opts into peer-CLI delegation** (`delegate_to: gemini-research`) - first agent in the 61-agent fleet. Bandit posterior now collects real arm data on `(design-research-synthesizer, *, gemini)` tuples.
88
+ - **`touches-pattern-miner` wired into `apply-reflections`**: archived task-file `Touches:` signatures now surface as auto-crystallization proposals via `discoverTouchesPatternProposals()`.
89
+ - **`design-planner` + `design-verifier` emit JSON output contracts** per `reference/output-contracts/{planner,verifier}-decision.schema.json` (fenced ```json block before the prose body). Typed envelope consumption by `scripts/lib/parse-contract.cjs#parsePlannerDecision` / `parseVerifierDecision`. DESIGN-PLAN.md and DESIGN-VERIFICATION.md continue to include both formats.
90
+
91
+ ### Added (Batch H - Phase 57 wire-ups)
92
+
93
+ - **Phase 56 calibration loop wired end-to-end.** `hooks/gdd-risk-gate.js` now calls `updateCalibration` after every scored decision (allow/block/review/require_confirmation → accepted true/false). `detectDrift` now fires from production traffic, not synthetic data. +9 regression tests.
94
+ - **`scripts/lib/state/query-surface.cjs` backup-guard hardening**: `_safeBackup(srcPath, bakPath)` returns true only when the backup file exists AND is non-empty after `copyFileSync`. `backupCycle()`, `demigrate()`, `recover()` now gate `fs.unlinkSync` behind it. +7 regression tests covering happy path / missing source / zero-byte copy / mocked failing copy.
95
+ - **`scripts/lib/state/state-store.cjs` `migrate()` async + JSDoc.** The underlying `migrateToSqlite` was already async; the wrapper now awaits it. Comprehensive JSDoc covers degraded paths, error semantics, idempotency, opt-in via `force`, dual-channel result shapes. +4 sqlite-path regression tests.
96
+
97
+ ### Removed
98
+
99
+ - **`scripts/lib/audit-aggregator/index.cjs`** (219 LOC + 15 unit tests). Shipped in Plan 23-04; zero production callers across `scripts/ sdk/ hooks/ agents/ skills/`. With Phase 56 risk-gate owning post-action consolidation and design-verifier owning audit aggregation natively, the module was dead-on-arrival.
100
+ - **`scripts/lib/hedge-ensemble.cjs`** (AdaNormalHedge implementation). Shipped in Plan 23.5-02; never wired into `adaptive_mode='hedge'` or any production path. `isHedgeEnabled()` now always returns false.
101
+
102
+ ### Changed (manifests + docs)
103
+
104
+ - **Manifest count claims synchronized across all 11 surfaces** to filesystem truth: 61 agents / 96 skills / 42 connections / 13 MCP tools. plugin.json + marketplace.json descriptions trimmed from 2000+ chars to ~700 (dropped sprawling per-version history - see CHANGELOG for that).
105
+ - **README rewritten from 968 lines to 623 lines.** Removed 30 per-version "Highlights" chronicle sections (all verified present in CHANGELOG before deletion). Product surface kept verbatim; release chronicle moves to CHANGELOG.
106
+ - **agents/README.md authoring contract cleaned**: 13 Phase NN refs + 11 Plan NN-MM refs + 3 dangling `.planning/phases/` cross-refs + 4 CONTEXT D-NN shorthand refs removed.
107
+ - **L0 cache prefix sanitized**: `reference/shared-preamble.md` "GSD Agent" → "GDD Agent" identity (every agent's first byte block). `reference/meta-rules.md` Phase NN refs stripped from the commit-scope guidance that propagates into every user repo.
108
+ - **`reference/STATE-TEMPLATE.md` HTML comments scrubbed** - three `<!-- Phase 25 -->` comments inside the `==== BEGIN/END TEMPLATE ====` block were being copied verbatim into every user's `.design/STATE.md` at scan entry.
109
+ - **`reference/registry.json` description-field sweep**: ~90 "Phase NN" prefixes stripped from description fields that load into router prompts.
110
+ - **7 schema files cleaned of Phase / .planning refs** in description fields (they ship via `generated.d.ts` to user IDE autocomplete).
111
+ - **9 skill `description:` frontmatter fields cleaned** (router LLM-signal surface): bandit-status, openrouter-status, state, override, peers, debug, report-issue, scan, discover.
112
+ - **`agents/design-verifier.md` H2 headings renamed** `## Phase 1..5` → `## Stage 1..5` (those headings bleed into user `.design/DESIGN-VERIFICATION.md` output and collided with internal GDD-roadmap nomenclature).
113
+ - **`gsd-health` references** in `skills/report-issue/SKILL.md`, `source/skills/report-issue/SKILL.md`, `scripts/lib/issue-reporter/report-flow.cjs` → `/gdd:health` (the actual command).
114
+ - **`benchmark` agents output paths** moved from `.planning/benchmarks/` to `.design/benchmarks/` (`.planning/` is the plugin's own development workspace and must never appear in a user repo's writes).
115
+ - **`connections/connections.md` matrix stage columns** `scan|discover` → `brief|explore` (the actual current 5-stage pipeline).
116
+ - **`runtime-models.md` added "Verification status" banner** flagging 10 of 14 entries as unverified placeholder fills (BYOK / multi-provider; Anthropic-default mapping).
117
+ - **`reference/cache-tier-doctrine.md`** (new): codifies the L0/L1/L2/L3 cache-tier contract that the new gates enforce.
118
+ - **`reference/intel-schema.md`** documented the `agent-tiers.json` slice and softened the misleading "kept current" claim.
119
+ - **`agents/design-research-synthesizer.md`** + **`agents/design-planner.md`** + **`agents/design-verifier.md`** gained delegate_to / Output Contract sections (see "Added" above).
120
+ - **42nd connection added**: `connections/cursor.md` documents the cursor install path + the documented sibling-drop limitation (Cursor `installMultiArtifact` doesn't enumerate `<skill>/<sibling>.md` files; the fix requires extending the StagedArtifact contract and is deferred with explicit doc trail).
121
+ - **`hooks/budget-enforcer.js` → `.ts` references updated** across 11 docs files (Plan 20-13 conversion landed; docs lagged).
122
+ - **Pipeline phrasing corrected**: `brief → plan → implement → verify` (4 surfaces) → `brief → explore → plan → design → verify` (the actual 5-stage pipeline).
123
+ - **2 stale "Executor B pending" / "Executor A hasn't run" strings** updated to present tense (the SQLite migration shipped in v1.57.0).
124
+ - **Composition graph edges added** for 5 high-traffic skills (compare, complete-cycle, darkmode, new-cycle, new-project) via `scripts/lib/manifest/skills.json`. `reference/skill-graph.md` regenerated.
125
+
126
+ ### Test infrastructure
127
+
128
+ - **`startsWith('design-')` filter widened to all agents** in 5 test files. Coverage jumped from 30 design-* agents to 61 (all). `agent-frontmatter` alone went from 60 tests to 122.
129
+ - **7 Phase 28.8 baseline skips closed.** Disambiguated "runtime" (14 Tier-1 install targets) vs "registry entry" (16 entries with 2 Tier-2 channels codex-plugin + cursor-marketplace).
130
+ - **`insight-line.schema tier:"haiku"` paste-error fixed** to L2 + new CI gate prevents recurrence.
131
+
132
+ ### Security
133
+
134
+ - 3 CodeQL alerts closed: `scripts/bootstrap.cjs` git arg-injection (added `--` separator + leading-`-` validation), `scripts/build-distribution-bundles.cjs` multi-character HTML strip (loop iteration + `/s` flag).
135
+
136
+ ---
137
+
7
138
  ## [1.57.1] - 2026-06-03
8
139
 
9
140
  ### Fixed
@@ -28,6 +159,14 @@ degrade real users who have the module). No new dependency; the markdown floor i
28
159
  no `event_id`, extra fields); `hooks/gdd-risk-gate.js` now emits the schema-correct shape, and an Ajv validation test
29
160
  guards it. The **dashboard risk column** read the wrong fields and case-mismatched the action vocabulary, so it was
30
161
  permanently blank; it is now wired and case-correct.
162
+ - **The Phase 56 calibration loop was unwired.** `scripts/lib/risk/calibration.cjs` was a complete library - rolling-50
163
+ window, `updateCalibration`, `detectDrift`, `recordRiskOutcome` - but no caller invoked it outside its own tests, so
164
+ drift detection could only fire from synthetic data. `hooks/gdd-risk-gate.js` now calls `updateCalibration` on every
165
+ scored call when the writer agent is known (`payload.agent` or `GDD_AGENT`): `block` records `accepted:false`; `allow`,
166
+ `review`, and `require_confirmation` record `accepted:true`. The store accrues from real traffic, so `detectDrift` flags
167
+ `under_scoring` / `over_scoring` from production behaviour. Best-effort (a calibration write never breaks a tool call);
168
+ no-op when the agent is unknown so an "unknown" bucket cannot pool the signal. `user_undo` / `post_apply_correct` are
169
+ left unresolved at the PreToolUse boundary by design; a later PostToolUse pass can resolve them.
31
170
  - **`budget-enforcer` PreToolUse blocks** used `message` instead of `stopReason`, so the block reason was invisible to
32
171
  the user; they now use `stopReason`. The **read-injection scanner** loads its pattern file fail-open (a missing file
33
172
  no longer crashes the hook). Three package-root walk-ups now match the scoped package name.