@hegemonart/get-design-done 1.13.3 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +52 -7
- package/README.md +135 -40
- package/agents/design-component-generator.md +221 -0
- package/agents/design-context-builder.md +80 -3
- package/agents/design-paper-writer.md +131 -0
- package/agents/design-pencil-writer.md +99 -0
- package/agents/design-research-synthesizer.md +13 -1
- package/agents/design-verifier.md +51 -0
- package/connections/21st-dev.md +98 -0
- package/connections/connections.md +41 -11
- package/connections/magic-patterns.md +105 -0
- package/connections/paper-design.md +137 -0
- package/connections/pencil-dev.md +88 -0
- package/hooks/budget-enforcer.js +13 -2
- package/hooks/gdd-read-injection-scanner.js +4 -9
- package/hooks/update-check.sh +13 -0
- package/package.json +1 -1
- package/reference/ai-native-tool-interface.md +102 -0
- package/scripts/aggregate-agent-metrics.js +20 -0
- package/scripts/build-intel.cjs +13 -5
- package/scripts/injection-patterns.cjs +17 -0
- package/scripts/run-injection-scanner-ci.cjs +1 -10
- package/scripts/tests/test-authority-watcher-diff.sh +5 -1
- package/skills/check-update/SKILL.md +2 -0
- package/skills/explore/SKILL.md +53 -1
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
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). Ships with a full CI/CD pipeline (Node 22/24 × Linux/macOS/Windows) and release automation (auto-tag + GitHub Release + release-time smoke test).",
|
|
8
|
-
"version": "1.
|
|
8
|
+
"version": "1.14.1"
|
|
9
9
|
},
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "get-design-done",
|
|
13
13
|
"source": "./",
|
|
14
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.",
|
|
15
|
-
"version": "1.
|
|
15
|
+
"version": "1.14.1",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "hegemonart"
|
|
18
18
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "get-design-done",
|
|
3
3
|
"short_name": "gdd",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.14.1",
|
|
5
5
|
"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), 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.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "hegemonart",
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,51 @@ All notable changes to get-design-done are documented here. Versions follow [sem
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [1.14.1] — 2026-04-19
|
|
8
|
+
|
|
9
|
+
### Fixed — Security hardening (full codebase review)
|
|
10
|
+
|
|
11
|
+
- **CR-01** `scripts/build-intel.cjs` — replaced `execSync` template literal with `spawnSync` argv array; eliminates command injection via crafted filenames in the project tree. Added 5 s timeout to all git calls.
|
|
12
|
+
- **CR-02** `hooks/update-check.sh` — validate `LATEST_TAG` against a semver pattern before writing to cache; strip double-quotes from `BODY_EXCERPT` to prevent injection via adversarial release body.
|
|
13
|
+
- **CR-03** `.github/workflows/ci.yml` — pin `ludeeus/action-shellcheck` from `@master` (mutable) to `@2.0.0` (supply-chain hardening).
|
|
14
|
+
- **WR-01** `scripts/injection-patterns.cjs` — new shared source of truth for prompt-injection patterns; both the runtime hook and CI scanner now require from it, eliminating silent pattern drift.
|
|
15
|
+
- **WR-02** `hooks/budget-enforcer.js` — phase spend now read from the lightweight `phase-totals.json` written by the aggregator instead of replaying the full `costs.jsonl` on every agent spawn (O(1) vs O(n)).
|
|
16
|
+
- **WR-04** `hooks/update-check.sh` — allowlist-gate `C_DELTA` after cache read (`major|minor|patch|off-cadence|none`) before it reaches any shell context.
|
|
17
|
+
- **WR-05** `scripts/tests/test-authority-watcher-diff.sh` — replace `find | wc -l` with null-delimited loop; handles filenames with newlines.
|
|
18
|
+
- **WR-06** `tests/regression-baseline.test.cjs` — replace `execSync` template literal with `spawnSync` in git helpers.
|
|
19
|
+
- **WR-07** `tests/optimization-layer.test.cjs` — fix budget schema test to match the actual `loadBudget()` format (`per_task_cap_usd`, `per_phase_cap_usd`, `enforcement_mode`, …); previous test validated a dead schema shape.
|
|
20
|
+
- **IN-02** `hooks/budget-enforcer.js` — detached aggregator child now inherits only `PATH`, not full `process.env`.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## [1.14.0] — 2026-04-19
|
|
25
|
+
|
|
26
|
+
### Added — Phase 14: AI-Native Design Tool Connections
|
|
27
|
+
|
|
28
|
+
- `connections/paper-design.md` — paper.design MCP integration (canvas read/write, budget tracking, 100 calls/week free tier)
|
|
29
|
+
- `connections/pencil-dev.md` — pencil.dev .pen file integration (git-tracked design specs, pre-merge spec-vs-impl diff)
|
|
30
|
+
- `connections/21st-dev.md` — 21st.dev Magic MCP (prior-art gate, component scaffolding, SVGL brand logo lookup)
|
|
31
|
+
- `connections/magic-patterns.md` — Magic Patterns component generator (Claude connector + API key fallback, DS-aware, preview_url)
|
|
32
|
+
- `agents/design-paper-writer.md` — annotate / tokenize / roundtrip modes for paper.design canvas; proposal→confirm, dry-run, budget-aware
|
|
33
|
+
- `agents/design-pencil-writer.md` — annotate / roundtrip modes for .pen files with atomic git commits
|
|
34
|
+
- `agents/design-component-generator.md` — shared component generator (21st.dev + Magic Patterns impl sections); proposal→confirm, DS-aware
|
|
35
|
+
- `reference/ai-native-tool-interface.md` — capability-based contract for canvas + component-generator sub-categories; extension guide for future tools
|
|
36
|
+
- Explore stage: 21st.dev prior-art gate — marketplace search before any greenfield component build; ≥80% fit → adopt recommendation
|
|
37
|
+
- Explore stage: design-system auto-detection (shadcn / tailwind / mantine / chakra) written to STATE.md for generator targeting
|
|
38
|
+
- Verify stage: paper.design component screenshots via `get_screenshot` for `? VISUAL` checks (Phase 4C)
|
|
39
|
+
- Verify stage: pencil.dev spec-vs-implementation diff — compares .pen design-token declarations against actual code values
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
- `connections/connections.md` — added `canvas` and `generator` columns to capability matrix; 4 new rows; backlog of 8 candidate future tools
|
|
44
|
+
- `agents/design-context-builder.md` — Step 0A (paper.design canvas read), Step 0B (pencil.dev .pen discovery), Step 0C (DS detection)
|
|
45
|
+
- `agents/design-verifier.md` — Phase 4C (paper.design screenshots), pencil.dev spec-vs-impl diff block
|
|
46
|
+
- `agents/design-research-synthesizer.md` — .pen file merge into synthesis output
|
|
47
|
+
- `skills/explore/SKILL.md` — probes C/D/E/F (21st.dev, Magic Patterns, paper.design, pencil.dev) + Step 1.5 prior-art gate
|
|
48
|
+
- Version bump to 1.14.0 (milestone.phase.patch scheme: 1.MM.P)
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
7
52
|
## [1.13.3] — 2026-04-19
|
|
8
53
|
|
|
9
54
|
### Added — Phase 13.3: Plugin Update Checker
|
|
@@ -35,7 +80,7 @@ All notable changes to get-design-done are documented here. Versions follow [sem
|
|
|
35
80
|
|
|
36
81
|
---
|
|
37
82
|
|
|
38
|
-
## [1.
|
|
83
|
+
## [1.13.2] — 2026-04-19
|
|
39
84
|
|
|
40
85
|
### Added — Phase 13.2: External Authority Watcher
|
|
41
86
|
|
|
@@ -56,11 +101,11 @@ All notable changes to get-design-done are documented here. Versions follow [sem
|
|
|
56
101
|
- `tests/agent-size-budget.test.cjs` — added `M: 300` tier to `TIER_LIMITS` for Worker-tier agents (between `S: 150` and `LARGE: 350`); accommodates CONTEXT D-05's "body ≈ 200–300 lines" target with modest headroom.
|
|
57
102
|
- `test-fixture/baselines/phase-6/agent-list.txt` — appended `design-authority-watcher.md` in sorted position.
|
|
58
103
|
- `test-fixture/baselines/phase-6/skill-list.txt` — appended `watch-authorities` in sorted position.
|
|
59
|
-
- Plugin version: 1.0.7 → 1.
|
|
104
|
+
- Plugin version: 1.0.7 → 1.13.2 (decimal sub-phase = PATCH bump per new versioning scheme: MAJOR=milestone, MINOR=phase, PATCH=sub-phase). Does not shift the Phase 14 → v1.14.0 cadence.
|
|
60
105
|
|
|
61
106
|
---
|
|
62
107
|
|
|
63
|
-
## [1.
|
|
108
|
+
## [1.13.1] — 2026-04-19
|
|
64
109
|
|
|
65
110
|
### Changed — Phase 13.1: Figma MCP Consolidation
|
|
66
111
|
- Collapsed the dual Figma MCP setup (local `figma-desktop` for reads + remote `figma` for writes) into the single remote `figma` MCP, which exposes full read parity (`get_metadata`, `get_design_context`, `get_variable_defs`, `get_screenshot`) alongside `use_figma` for writes.
|
|
@@ -81,8 +126,8 @@ All notable changes to get-design-done are documented here. Versions follow [sem
|
|
|
81
126
|
```
|
|
82
127
|
- No command or flag renames. The `design-figma-writer` agent keeps its name and proposal→confirm UX unchanged.
|
|
83
128
|
|
|
84
|
-
###
|
|
85
|
-
-
|
|
129
|
+
### Version note
|
|
130
|
+
- Shipped as **v1.13.1** per the new versioning scheme (MAJOR=milestone, MINOR=phase, PATCH=sub-phase). Phase 13.1 is a PATCH bump from v1.13.0. Phase 14 ships as v1.14.0.
|
|
86
131
|
|
|
87
132
|
---
|
|
88
133
|
|
|
@@ -164,9 +209,9 @@ All notable changes to get-design-done are documented here. Versions follow [sem
|
|
|
164
209
|
- `agents/design-discussant.md` logs answer quality after each Q&A exchange
|
|
165
210
|
- Plugin version: 1.0.4.1 → 1.0.5
|
|
166
211
|
|
|
167
|
-
## [1.
|
|
212
|
+
## [1.10.1] — 2026-04-18
|
|
168
213
|
|
|
169
|
-
**Phase 10.1: Optimization Layer + Cost Governance.**
|
|
214
|
+
**Phase 10.1: Optimization Layer + Cost Governance.** Decimal sub-phase = PATCH bump per versioning scheme (MAJOR=milestone, MINOR=phase, PATCH=sub-phase). v1.10.1 follows v1.10.0 (Phase 10) and precedes v1.11.0 (Phase 11).
|
|
170
215
|
|
|
171
216
|
### Added
|
|
172
217
|
- `gdd-router` skill — intent → `{path: fast|quick|full, model_tier_overrides, estimated_cost_usd, cache_hits}`. First step of every `/gdd:*` command.
|
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
# GET DESIGN DONE
|
|
4
4
|
|
|
5
|
-
**Agent-orchestrated design pipeline for Claude Code. Five stages, thirty specialized agents,
|
|
5
|
+
**Agent-orchestrated design pipeline for Claude Code. Five stages, thirty-three specialized agents, twelve tool connections — from brief to verified shipping work.**
|
|
6
6
|
|
|
7
7
|
**Solves the "Claude made it look fine but nothing ties together" problem: no design system extraction, no reference grounding, no verification against the brief.**
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@hegemonart/get-design-done)
|
|
10
10
|
[](https://github.com/hegemonart/get-design-done/actions/workflows/ci.yml)
|
|
11
11
|
[](https://nodejs.org/)
|
|
12
|
-
[](https://github.com/hegemonart/get-design-done/releases/tag/v1.14.0)
|
|
13
13
|
[](LICENSE)
|
|
14
14
|
|
|
15
15
|
<br>
|
|
@@ -27,7 +27,7 @@ claude plugin install get-design-done@get-design-done
|
|
|
27
27
|
|
|
28
28
|
<br>
|
|
29
29
|
|
|
30
|
-
[Why I Built This](#why-i-built-this) · [How It Works](#how-it-works) · [Commands](#commands) · [Connections](#connections) · [Why It Works](#why-it-works)
|
|
30
|
+
[Why I Built This](#why-i-built-this) · [How It Works](#how-it-works) · [Canvas Tools](#ai-native-canvas-tools) · [Component Generators](#component-generators) · [Commands](#commands) · [Connections](#connections) · [Why It Works](#why-it-works)
|
|
31
31
|
|
|
32
32
|
</div>
|
|
33
33
|
|
|
@@ -52,7 +52,7 @@ I'm a designer who ships with Claude Code. The code-side workflow (GSD, Speckit,
|
|
|
52
52
|
|
|
53
53
|
What I kept running into: Claude happily generates UI, but the output is *disconnected*. Tokens don't match the existing system. Contrast ratios silently drift below WCAG. Hierarchy gets reinvented per screen. Anti-patterns from old stacks leak into new ones. And none of it is caught until the PR review, because nothing verified the output against the original design brief.
|
|
54
54
|
|
|
55
|
-
So I built Get Design Done. Same philosophy as GSD — **the complexity is in the system, not in your workflow**. Behind the scenes: thirty specialized agents, a queryable intel store, tier-aware model routing,
|
|
55
|
+
So I built Get Design Done. Same philosophy as GSD — **the complexity is in the system, not in your workflow**. Behind the scenes: thirty-three specialized agents, a queryable intel store, tier-aware model routing, twelve tool connections, and a self-improvement loop that tunes itself from measured telemetry. What you see: a few commands that just work.
|
|
56
56
|
|
|
57
57
|
The pipeline does the work *and* verifies it. I trust the workflow. It gets design done.
|
|
58
58
|
|
|
@@ -74,11 +74,11 @@ You don't need to be a designer. The pipeline carries the design expertise so yo
|
|
|
74
74
|
|
|
75
75
|
Built-in quality gates catch real problems: Handoff Faithfulness scoring on Claude Design bundles, contrast audits across the full palette × surface matrix, anti-pattern detection from the NNG catalog, dark-mode architecture verification, and motion-system consistency checks.
|
|
76
76
|
|
|
77
|
-
### v1.0
|
|
77
|
+
### v1.14.0 Highlights
|
|
78
78
|
|
|
79
|
-
- **
|
|
80
|
-
- **
|
|
81
|
-
- **
|
|
79
|
+
- **AI-native canvas tools** — paper.design (MCP canvas read/write, screenshot verification) and pencil.dev (git-tracked `.pen` spec files, no MCP required) complete a full canvas→code→verify→canvas round-trip.
|
|
80
|
+
- **Component generators** — 21st.dev Magic MCP adds a prior-art gate before any greenfield build; Magic Patterns generates DS-aware components with a `preview_url` for visual verification. Both feed into a shared `design-component-generator` agent.
|
|
81
|
+
- **Twelve tool connections** — Four new connections (paper.design, pencil.dev, 21st.dev, Magic Patterns) join the original eight. All are optional; the pipeline degrades gracefully to fallbacks when any connection is unavailable.
|
|
82
82
|
|
|
83
83
|
---
|
|
84
84
|
|
|
@@ -145,7 +145,7 @@ You approve the brief. Now the rest of the pipeline has something to verify agai
|
|
|
145
145
|
|
|
146
146
|
**Unified inventory + interview.** (The old `scan` and `discover` commands are deprecated aliases that route here.)
|
|
147
147
|
|
|
148
|
-
The skill probes connection
|
|
148
|
+
The skill probes all twelve connection slots (Figma, Refero, Pinterest, Preview, Storybook, Chromatic, Graphify, Claude Design, paper.design, pencil.dev, 21st.dev, Magic Patterns), then:
|
|
149
149
|
|
|
150
150
|
1. **Inventory scan** — If `.design/map/` exists and is fresher than `src/`, consumes the structured map output. Otherwise runs a grep-based inventory pass
|
|
151
151
|
2. **Design interview** — Spawns `design-discussant`, which runs an adaptive interview grounded in the brief and what it found in the code
|
|
@@ -204,7 +204,7 @@ Walk away, come back to completed work with a clean commit history.
|
|
|
204
204
|
|
|
205
205
|
The skill spawns four agents in sequence, each with cheap-gate precursors:
|
|
206
206
|
|
|
207
|
-
1. **`design-verifier`** — Scores output against brief + context + plan. Runs
|
|
207
|
+
1. **`design-verifier`** — Scores output against brief + context + plan. Runs visual verification via Preview (Playwright screenshots) when available, plus Chromatic delta narration on the visual regression diff
|
|
208
208
|
2. **`design-auditor`** — Runs the NNG heuristic sweep, WCAG contrast pass across the full palette × surface matrix, typography system audit, motion framework audit, and anti-pattern detector
|
|
209
209
|
3. **`design-integration-checker`** — Cross-file consistency: token naming, component taxonomy, visual hierarchy, a11y labels
|
|
210
210
|
4. **`design-fixer`** — Proposes fixes for each gap, scoped and prioritized
|
|
@@ -238,7 +238,7 @@ Loop **brief → explore → plan → design → verify → ship** per cycle. Ea
|
|
|
238
238
|
### Standalone commands (no pipeline init required)
|
|
239
239
|
|
|
240
240
|
```
|
|
241
|
-
/gdd:handoff <bundle.html> # Skip
|
|
241
|
+
/gdd:handoff <bundle.html> # Skip explore/plan, route direct to verify
|
|
242
242
|
/gdd:style Button # Generate component handoff doc
|
|
243
243
|
/gdd:darkmode # Audit dark mode architecture + contrast
|
|
244
244
|
/gdd:compare # Delta between baseline and verification
|
|
@@ -271,7 +271,7 @@ Claude Code does great design work *if* you give it the context it needs. Most w
|
|
|
271
271
|
|
|
272
272
|
Size budgets are tiered per agent (XXL: 700, XL: 500, Large: 300, Default: 200 lines). Stay under, get consistent output. The `agent-size-budget` CI job blocks violations.
|
|
273
273
|
|
|
274
|
-
###
|
|
274
|
+
### 33 Specialized Agents
|
|
275
275
|
|
|
276
276
|
Every stage uses the same pattern: a thin orchestrator skill spawns specialized agents, collects results, routes to the next step.
|
|
277
277
|
|
|
@@ -287,7 +287,7 @@ Every stage uses the same pattern: a thin orchestrator skill spawns specialized
|
|
|
287
287
|
|
|
288
288
|
All agents carry `default-tier: haiku|sonnet|opus` + `tier-rationale` in frontmatter. Every agent opens with `@reference/shared-preamble.md` so the first agent in a session pays full cost and the rest ride Anthropic's 5-minute prompt cache.
|
|
289
289
|
|
|
290
|
-
###
|
|
290
|
+
### 12 Tool Connections
|
|
291
291
|
|
|
292
292
|
Every connection is optional. The pipeline degrades gracefully — a grep-based fallback exists for every missing tool.
|
|
293
293
|
|
|
@@ -301,6 +301,10 @@ Every connection is optional. The pipeline degrades gracefully — a grep-based
|
|
|
301
301
|
| Chromatic | CLI (`npx chromatic`) | Visual regression delta narration and change-risk scoping |
|
|
302
302
|
| Graphify | CLI (`graphify`) | Knowledge graph: component↔token↔decision relationships |
|
|
303
303
|
| Claude Design | Bundle adapter | Parse HTML export → D-XX decisions, Handoff Faithfulness scoring |
|
|
304
|
+
| paper.design | MCP (`mcp__paper-design__*`) | Canvas read/write, component tree + computed styles, screenshot verification |
|
|
305
|
+
| pencil.dev | File (`.pen` YAML) | Git-tracked design specs; no MCP — pipeline reads and writes `.pen` files directly |
|
|
306
|
+
| 21st.dev Magic MCP | MCP + CLI | Prior-art gate before greenfield builds; component search + generation; SVGL brand logos |
|
|
307
|
+
| Magic Patterns | MCP / API key | DS-aware component generation; `preview_url` feeds visual verification |
|
|
304
308
|
|
|
305
309
|
See [`connections/connections.md`](connections/connections.md) for the full index and capability matrix.
|
|
306
310
|
|
|
@@ -365,7 +369,7 @@ See [`reference/authority-feeds.md`](reference/authority-feeds.md). 26 curated f
|
|
|
365
369
|
|
|
366
370
|
### What is explicitly rejected
|
|
367
371
|
|
|
368
|
-
No Dribbble. No Behance. No LinkedIn. No generic "trending" aggregators. See `reference/authority-feeds.md` §"Rejected kinds" —
|
|
372
|
+
No Dribbble. No Behance. No LinkedIn. No generic "trending" aggregators. See `reference/authority-feeds.md` §"Rejected kinds" — the exclusions are CI-enforced, not just documented.
|
|
369
373
|
|
|
370
374
|
### How the report feeds reflection
|
|
371
375
|
|
|
@@ -373,6 +377,82 @@ The watcher writes `.design/authority-report.md` — new entries classified into
|
|
|
373
377
|
|
|
374
378
|
---
|
|
375
379
|
|
|
380
|
+
## AI-Native Canvas Tools
|
|
381
|
+
|
|
382
|
+
get-design-done integrates with canvas tools that treat the design canvas as both source AND destination — enabling a full canvas→code→verify→canvas round-trip.
|
|
383
|
+
|
|
384
|
+
### paper.design
|
|
385
|
+
|
|
386
|
+
Read component trees, computed styles, and screenshots from the paper.design canvas. Write design decisions back via annotate / tokenize / roundtrip modes.
|
|
387
|
+
|
|
388
|
+
**Setup:**
|
|
389
|
+
```bash
|
|
390
|
+
claude mcp add paper-design --transport http https://mcp.paper.design/sse
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
**Capabilities:**
|
|
394
|
+
- `explore` — reads canvas selection, JSX tree, computed styles into DESIGN-CONTEXT.md
|
|
395
|
+
- `design` — `design-paper-writer` agent writes annotations, token bindings, and status back to canvas
|
|
396
|
+
- `verify` — `get_screenshot` captures component snapshots for `? VISUAL` checks (Phase 4C)
|
|
397
|
+
|
|
398
|
+
See [`connections/paper-design.md`](connections/paper-design.md) for full setup and probe pattern.
|
|
399
|
+
|
|
400
|
+
### pencil.dev
|
|
401
|
+
|
|
402
|
+
Git-tracked `.pen` YAML files are canonical design specs. No MCP required — the pipeline reads and writes `.pen` files directly.
|
|
403
|
+
|
|
404
|
+
**Setup:** Install the pencil.dev VS Code / Cursor extension. Add `.pen` files to your project.
|
|
405
|
+
|
|
406
|
+
**Capabilities:**
|
|
407
|
+
- `explore` — discovers `.pen` files; synthesizer merges token declarations with code
|
|
408
|
+
- `design` — `design-pencil-writer` agent writes DESIGN-DEBT findings and status back as `.pen` comments / spec updates (atomic git commits)
|
|
409
|
+
- `verify` — spec-vs-implementation diff: declared token values vs. actual CSS values
|
|
410
|
+
|
|
411
|
+
See [`connections/pencil-dev.md`](connections/pencil-dev.md) for `.pen` file format and pipeline integration.
|
|
412
|
+
|
|
413
|
+
---
|
|
414
|
+
|
|
415
|
+
## Component Generators
|
|
416
|
+
|
|
417
|
+
Component generators produce UI component code from natural-language descriptions, targeting your project's design system.
|
|
418
|
+
|
|
419
|
+
### 21st.dev Magic MCP
|
|
420
|
+
|
|
421
|
+
Marketplace search + AI component generation. Built-in prior-art gate: the explore stage searches 21st.dev before any greenfield component build. If an existing component fits ≥80%, adoption is recommended over custom build.
|
|
422
|
+
|
|
423
|
+
**Setup:**
|
|
424
|
+
```bash
|
|
425
|
+
npx @21st-dev/magic@latest init
|
|
426
|
+
# Set TWENTY_FIRST_API_KEY environment variable
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
**Capabilities:**
|
|
430
|
+
- `explore` — prior-art gate: `21st_magic_component_search` before greenfield builds
|
|
431
|
+
- `design` — `design-component-generator` (21st.dev impl): search → generate → adopt
|
|
432
|
+
- `explore/design` — `svgl_get_brand_logo` for brand logo/icon SVGs
|
|
433
|
+
|
|
434
|
+
See [`connections/21st-dev.md`](connections/21st-dev.md) for setup and prior-art gate logic.
|
|
435
|
+
|
|
436
|
+
### Magic Patterns
|
|
437
|
+
|
|
438
|
+
DS-aware component generation via the Magic Patterns Claude connector (no manual setup when enabled) or API key fallback. Returns a `preview_url` for visual verification.
|
|
439
|
+
|
|
440
|
+
**Setup (Claude connector):** Enable Magic Patterns in your Claude environment — no additional steps.
|
|
441
|
+
|
|
442
|
+
**Setup (API key):**
|
|
443
|
+
```bash
|
|
444
|
+
claude mcp add magic-patterns --transport http https://mcp.magicpatterns.com/sse \
|
|
445
|
+
-e MAGIC_PATTERNS_API_KEY=$MAGIC_PATTERNS_API_KEY
|
|
446
|
+
```
|
|
447
|
+
|
|
448
|
+
**Capabilities:**
|
|
449
|
+
- `design` — `design-component-generator` (magic-patterns impl): generate → annotate → regenerate
|
|
450
|
+
- `verify` — `preview_url` from generation feeds `? VISUAL` check in Phase 8 Preview
|
|
451
|
+
|
|
452
|
+
See [`connections/magic-patterns.md`](connections/magic-patterns.md) for probe pattern and DS detection.
|
|
453
|
+
|
|
454
|
+
---
|
|
455
|
+
|
|
376
456
|
## Commands
|
|
377
457
|
|
|
378
458
|
All commands use the `/gdd:` namespace.
|
|
@@ -386,7 +466,7 @@ All commands use the `/gdd:` namespace.
|
|
|
386
466
|
| `/gdd:plan` | Stage 3 — research + decompose into atomic tasks + verify plan |
|
|
387
467
|
| `/gdd:design` | Stage 4 — execute tasks with fresh context per task |
|
|
388
468
|
| `/gdd:verify [--post-handoff]` | Stage 5 — verifier + auditor + integration checker + fixer |
|
|
389
|
-
| `/gdd:handoff <bundle>` | Skip
|
|
469
|
+
| `/gdd:handoff <bundle>` | Skip explore/plan, route direct to verify from Claude Design bundle |
|
|
390
470
|
| `/gdd:next` | Auto-detect pipeline state and run next step |
|
|
391
471
|
| `/gdd:map` | Parallel codebase mapping — 5 specialist mappers |
|
|
392
472
|
|
|
@@ -487,7 +567,7 @@ All connections are optional — the pipeline degrades gracefully when any conne
|
|
|
487
567
|
|
|
488
568
|
### Figma MCP (reads + writes)
|
|
489
569
|
|
|
490
|
-
One remote MCP covers both reads and writes
|
|
570
|
+
One remote MCP covers both reads and writes. When active, `explore` reads Figma variables and pre-populates design decisions from your file, and `design-figma-writer` writes decisions back via `use_figma` — annotates frames, tokenizes local styles, registers Code Connect mappings. Proposal → confirm discipline with `--dry-run` and `--confirm-shared` guards. Falls back to code-only analysis when the MCP is not configured. One install command unlocks both:
|
|
491
571
|
|
|
492
572
|
```
|
|
493
573
|
claude mcp add figma --transport http https://mcp.figma.com/v1/sse
|
|
@@ -535,7 +615,31 @@ When Graphify CLI is available, `plan` and `design-integration-checker` consult
|
|
|
535
615
|
|
|
536
616
|
### Claude Design
|
|
537
617
|
|
|
538
|
-
Drop a Claude Design bundle (HTML export from [claude.ai/design](https://claude.ai/design)) into your project root and run `/gdd:handoff <path>`. The pipeline skips
|
|
618
|
+
Drop a Claude Design bundle (HTML export from [claude.ai/design](https://claude.ai/design)) into your project root and run `/gdd:handoff <path>`. The pipeline skips Explore → Plan, parses the bundle CSS custom properties into D-XX design decisions, runs `verify --post-handoff` for Handoff Faithfulness scoring, and optionally writes implementation status back to Figma. Full format: [`connections/claude-design.md`](connections/claude-design.md).
|
|
619
|
+
|
|
620
|
+
### paper.design
|
|
621
|
+
|
|
622
|
+
When the paper.design MCP is active, `explore` reads the canvas selection (JSX tree, computed styles) into `DESIGN-CONTEXT.md`, `design` writes annotations and token bindings back to the canvas, and `verify` captures component screenshots for visual checks. Setup: [`connections/paper-design.md`](connections/paper-design.md).
|
|
623
|
+
|
|
624
|
+
```bash
|
|
625
|
+
claude mcp add paper-design --transport http https://mcp.paper.design/sse
|
|
626
|
+
```
|
|
627
|
+
|
|
628
|
+
### pencil.dev
|
|
629
|
+
|
|
630
|
+
No MCP required. Add `.pen` YAML files to your project and install the pencil.dev VS Code / Cursor extension. `explore` discovers and merges `.pen` token declarations; `design` writes DESIGN-DEBT findings back as spec updates; `verify` diffs declared token values against actual CSS. Setup: [`connections/pencil-dev.md`](connections/pencil-dev.md).
|
|
631
|
+
|
|
632
|
+
### 21st.dev Magic MCP
|
|
633
|
+
|
|
634
|
+
When active, `explore` runs a prior-art gate (`21st_magic_component_search`) before any greenfield component build — if an existing component fits ≥80%, adoption is recommended. `design` generates components via search → generate → adopt. Also provides `svgl_get_brand_logo` for brand SVGs. Setup: [`connections/21st-dev.md`](connections/21st-dev.md).
|
|
635
|
+
|
|
636
|
+
```bash
|
|
637
|
+
npx @21st-dev/magic@latest init
|
|
638
|
+
```
|
|
639
|
+
|
|
640
|
+
### Magic Patterns
|
|
641
|
+
|
|
642
|
+
When the Magic Patterns connector is active (via Claude environment or API key), `design` generates DS-aware components and feeds the `preview_url` into visual verification. Setup: [`connections/magic-patterns.md`](connections/magic-patterns.md).
|
|
539
643
|
|
|
540
644
|
---
|
|
541
645
|
|
|
@@ -625,16 +729,14 @@ Incremental updates fire automatically via the `gdd-intel-updater` agent after f
|
|
|
625
729
|
|
|
626
730
|
## Optimization Layer
|
|
627
731
|
|
|
628
|
-
Every `/gdd:*` command and agent spawn passes through a cross-cutting optimization layer
|
|
732
|
+
Every `/gdd:*` command and agent spawn passes through a cross-cutting optimization layer designed to reduce token cost without regressing on design quality.
|
|
629
733
|
|
|
630
|
-
- **`gdd-router` skill** — First-step intent router. Returns
|
|
631
|
-
- **`gdd-cache-manager` skill + `/gdd:warm-cache`** —
|
|
632
|
-
- **`budget-enforcer` PreToolUse hook** — Intercepts every `Agent` spawn. Hard-blocks on cap breach
|
|
633
|
-
- **Lazy checker gates**
|
|
634
|
-
- **Streaming synthesizer**
|
|
635
|
-
- **Cost telemetry** — `.design/telemetry/costs.jsonl`
|
|
636
|
-
|
|
637
|
-
CI diffs against a locked cost baseline on every push to catch regressions.
|
|
734
|
+
- **`gdd-router` skill** — First-step intent router. Returns the right execution path (`fast|quick|full`) with model-tier overrides and a cache-hit check before any downstream spawn.
|
|
735
|
+
- **`gdd-cache-manager` skill + `/gdd:warm-cache`** — Pre-warms common agent system prompts so Anthropic's 5-minute prompt cache fires on the shared preamble across a session.
|
|
736
|
+
- **`budget-enforcer` PreToolUse hook** — Intercepts every `Agent` spawn. Hard-blocks on cap breach, auto-downgrades at the soft threshold, short-circuits on cache hit.
|
|
737
|
+
- **Lazy checker gates** — Cheap Haiku heuristic decides whether to spawn the expensive full checker for each verification stage.
|
|
738
|
+
- **Streaming synthesizer** — Parallel-mapper outputs collapse through a single Haiku call before returning to main context, keeping the orchestrator cache-aligned.
|
|
739
|
+
- **Cost telemetry** — `.design/telemetry/costs.jsonl` records every spawn decision. Aggregated to `.design/agent-metrics.json` and consumed by `/gdd:optimize` and `design-reflector`.
|
|
638
740
|
|
|
639
741
|
---
|
|
640
742
|
|
|
@@ -656,22 +758,15 @@ Zero third-party test dependencies — the runner is Node's built-in `node:test`
|
|
|
656
758
|
lint → validate → test (matrix) → security + size-budget
|
|
657
759
|
```
|
|
658
760
|
|
|
659
|
-
- **Lint** —
|
|
660
|
-
- **Validate** — JSON schema validation
|
|
761
|
+
- **Lint** — markdownlint + blocking link checker
|
|
762
|
+
- **Validate** — JSON schema validation, agent frontmatter validator, stale-ref detector, `claude plugin validate .`
|
|
661
763
|
- **Test** — Node 22/24 × Linux/macOS/Windows, fail-fast disabled
|
|
662
|
-
- **Security** —
|
|
663
|
-
- **Size-budget** — Blocking tier enforcement (XXL: 700, XL: 500, Large: 300, Default: 200 lines)
|
|
664
|
-
|
|
665
|
-
### What's covered
|
|
666
|
-
|
|
667
|
-
- **Agent hygiene** — frontmatter completeness, line-count tier budgets, required-reading path validity, `/gdd:` namespace consistency
|
|
668
|
-
- **System contracts** — config schema, command↔skill parity, hooks integrity, atomic writes to `.design/STATE.md`, frontmatter parser edge cases, model-profile resolution, `/gdd:health` output shape, worktree safety, semver bump sequence, STATE-TEMPLATE drift
|
|
669
|
-
- **Pipeline + data** — end-to-end smoke on `test-fixture/`, mapper JSON-schema validation (tokens, components, a11y, motion, hierarchy), parallelism-engine decision table, `Touches:` field parsing, cycle lifecycle, `.design/intel/` incremental-update correctness, regression-baseline drift detector
|
|
670
|
-
- **Feature correctness** — `/gdd:sketch` variant determinism, 8-connection probe contracts with mocked MCPs, `design-figma-writer` dry-run discipline, `design-reflector` proposal-only shape, deprecated-name redirects, NNG heuristic coverage, injection-scanner hook behavior, optimization-layer schema enforcement
|
|
764
|
+
- **Security** — shellcheck on `scripts/`, secrets scan, injection scanner over all shipped skills/agents
|
|
765
|
+
- **Size-budget** — Blocking tier enforcement (XXL: 700, XL: 500, Large: 300, Default: 200 lines)
|
|
671
766
|
|
|
672
767
|
### Release automation
|
|
673
768
|
|
|
674
|
-
`.github/workflows/release.yml` auto-tags and publishes a GitHub Release when `.claude-plugin/plugin.json` version changes. Release body is extracted from the matching `CHANGELOG.md` section.
|
|
769
|
+
`.github/workflows/release.yml` auto-tags and publishes a GitHub Release when `.claude-plugin/plugin.json` version changes. Release body is extracted from the matching `CHANGELOG.md` section.
|
|
675
770
|
|
|
676
771
|
Every PR must pass `npm test` before merging to `main`. See [`CONTRIBUTING.md`](CONTRIBUTING.md) for the re-lock procedure when baselines change.
|
|
677
772
|
|
|
@@ -682,8 +777,8 @@ Every PR must pass `npm test` before merging to `main`. See [`CONTRIBUTING.md`](
|
|
|
682
777
|
- `.claude-plugin/plugin.json`, `.claude-plugin/marketplace.json` — manifest
|
|
683
778
|
- `SKILL.md` — root pipeline router
|
|
684
779
|
- `skills/` — 55 stage + standalone skills
|
|
685
|
-
- `agents/` —
|
|
686
|
-
- `connections/` —
|
|
780
|
+
- `agents/` — 33 specialized agent specs
|
|
781
|
+
- `connections/` — 12 connection specs
|
|
687
782
|
- `reference/` — curated design reference (shared preamble, model tiers, model prices, schemas, DEPRECATIONS, config schema)
|
|
688
783
|
- `hooks/`, `scripts/bootstrap.sh`
|
|
689
784
|
|