@hegemonart/get-design-done 1.35.5 → 1.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +47 -0
- package/README.md +8 -0
- package/agents/design-auditor.md +15 -0
- package/agents/design-context-builder.md +30 -0
- package/agents/design-verifier.md +6 -0
- package/agents/motion-verifier.md +88 -0
- package/connections/connections.md +5 -1
- package/connections/lottie.md +126 -0
- package/connections/rive.md +122 -0
- package/package.json +1 -1
- package/reference/domains/civic-patterns.md +101 -0
- package/reference/domains/finance-patterns.md +123 -0
- package/reference/domains/gaming-patterns.md +111 -0
- package/reference/domains/healthcare-patterns.md +103 -0
- package/reference/registry.json +28 -0
- package/scripts/lib/motion/validate-motion.cjs +92 -0
- package/skills/connections/SKILL.md +4 -4
- package/skills/connections/connections-onboarding.md +24 -4
|
@@ -9,7 +9,7 @@ last_updated: 2026-05-18
|
|
|
9
9
|
|
|
10
10
|
Source: extracted from `skills/connections/SKILL.md` (Phase 28.5 rework — D-10 extract-then-link).
|
|
11
11
|
The skill's load-bearing routing + invocation-mode dispatch stays in `../skills/connections/SKILL.md`;
|
|
12
|
-
this file holds the
|
|
12
|
+
this file holds the 21 probe scripts, bucket categorization, per-connection setup screen,
|
|
13
13
|
auto-run eligibility matrix, value-prop one-liners, and STATE.md / config.json write contracts.
|
|
14
14
|
|
|
15
15
|
# Connections Onboarding Procedure
|
|
@@ -27,7 +27,7 @@ this file does NOT duplicate them; it points at them by name.
|
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
30
|
-
## Step 1 — Probe all
|
|
30
|
+
## Step 1 — Probe all 21 connections
|
|
31
31
|
|
|
32
32
|
Run every probe below in order. MCP probes call `ToolSearch` first (deferred tools fail silently without it). Write every result to `STATE.md <connections>` when done.
|
|
33
33
|
|
|
@@ -180,7 +180,23 @@ Bash: ls .design/handoff/ 2>/dev/null || find . -maxdepth 3 \
|
|
|
180
180
|
→ Non-empty → claude_design: available
|
|
181
181
|
```
|
|
182
182
|
|
|
183
|
-
|
|
183
|
+
**lottie** (file probe — Lottie JSON motion export):
|
|
184
|
+
```
|
|
185
|
+
Bash: find . -name "*.json" -not -path "*/node_modules/*" 2>/dev/null | head (confirm the Lottie signature: top-level v / fr / layers)
|
|
186
|
+
grep -lE '"lottie-web"|@lottiefiles|lottie-react' package.json 2>/dev/null
|
|
187
|
+
→ Lottie exports or a lottie dep found → lottie: available
|
|
188
|
+
→ none → lottie: not_configured
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
**rive** (file probe — Rive .riv motion export):
|
|
192
|
+
```
|
|
193
|
+
Bash: find . -name "*.riv" -not -path "*/node_modules/*" 2>/dev/null | head
|
|
194
|
+
grep -E '@rive-app|rive-react' package.json 2>/dev/null
|
|
195
|
+
→ .riv files or a @rive-app dep found → rive: available
|
|
196
|
+
→ none → rive: not_configured
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
After all 21 probes complete, merge results into `STATE.md <connections>`. Preserve the three-value schema verbatim (`available | unavailable | not_configured`). Do not add new values.
|
|
184
200
|
|
|
185
201
|
---
|
|
186
202
|
|
|
@@ -268,6 +284,8 @@ One-line value props (use verbatim):
|
|
|
268
284
|
| linear | ticket-sync — link a cycle to a Linear issue; read comments + transition on completion |
|
|
269
285
|
| jira | ticket-sync — parity with Linear via the Atlassian MCP |
|
|
270
286
|
| notion | export — `/gdd:export --format notion` writes a stakeholder page (degrade-to-HTML) |
|
|
287
|
+
| lottie | verify — Lottie JSON motion check (frame-rate / duration / bloat / perf-budget), WARN-never-block |
|
|
288
|
+
| rive | verify — Rive `.riv` motion check (size + state-machine reachability via the opt-in runtime), WARN-never-block |
|
|
271
289
|
|
|
272
290
|
---
|
|
273
291
|
|
|
@@ -295,7 +313,7 @@ options:
|
|
|
295
313
|
- "Exit" → emit ## CONNECTIONS COMPLETE, exit
|
|
296
314
|
```
|
|
297
315
|
|
|
298
|
-
If recommended bucket is empty, swap that option for "Show all
|
|
316
|
+
If recommended bucket is empty, swap that option for "Show all 21 and pick."
|
|
299
317
|
|
|
300
318
|
---
|
|
301
319
|
|
|
@@ -359,6 +377,8 @@ options:
|
|
|
359
377
|
| linear | `claude mcp add linear ...` (Linear MCP) | ✓ yes | Reversible MCP add; OAuth on first call, no credential filesystem-write |
|
|
360
378
|
| jira | `claude mcp add atlassian ...` (Atlassian MCP) | ✓ yes | Reversible MCP add; OAuth on first call |
|
|
361
379
|
| notion | `claude mcp add notion ...` (Notion MCP) | ✓ yes | Reversible MCP add; OAuth on first call |
|
|
380
|
+
| lottie | (file-based — no install; drop a Lottie `.json` export in the repo) | n/a | Detected from Lottie exports / a `lottie-web` dep; live player opt-in |
|
|
381
|
+
| rive | (file-based — no install; add a `.riv` export / `@rive-app` dep) | n/a | Detected from `.riv` files / a `@rive-app` dep; Rive runtime opt-in |
|
|
362
382
|
|
|
363
383
|
For non-auto-run connections, hide the "Run install command now" option entirely in 5.3.
|
|
364
384
|
|