@hegemonart/get-design-done 1.59.5 → 1.59.7
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 +4 -4
- package/.claude-plugin/plugin.json +2 -2
- package/CHANGELOG.md +54 -0
- package/README.md +219 -441
- package/SKILL.md +2 -2
- package/docs/i18n/README.de.md +212 -527
- package/docs/i18n/README.fr.md +203 -518
- package/docs/i18n/README.it.md +211 -526
- package/docs/i18n/README.ja.md +209 -524
- package/docs/i18n/README.ko.md +210 -525
- package/docs/i18n/README.zh-CN.md +215 -551
- package/package.json +1 -1
- package/reference/skill-graph.md +4 -1
- package/scripts/lib/install/doctor-codex-plugin.cjs +1 -1
- package/scripts/lib/install/doctor-cursor-marketplace.cjs +2 -2
- package/scripts/lib/manifest/skills.json +13 -0
- package/scripts/skill-templates/handoff/SKILL.md +99 -0
- package/skills/handoff/SKILL.md +99 -0
package/SKILL.md
CHANGED
|
@@ -27,7 +27,7 @@ Each stage produces artifacts in `.design/` inside the current project.
|
|
|
27
27
|
| `plan` | `get-design-done:plan` | Stage 3 of 5 - decompose into tasks → DESIGN-PLAN.md |
|
|
28
28
|
| `design` | `get-design-done:design` | Stage 4 of 5 - execute tasks → DESIGN-SUMMARY.md |
|
|
29
29
|
| `verify` | `get-design-done:verify` | Stage 5 of 5 - score + audit → DESIGN-VERIFICATION.md |
|
|
30
|
-
| `handoff <path>` |
|
|
30
|
+
| `handoff <path>` | `get-design-done:gdd-handoff` | Skip scan/discover/plan; initialize from Claude Design bundle; route to verify |
|
|
31
31
|
| `map` | `get-design-done:gdd-map` | Parallel codebase mapping - spawns 5 mappers → `.design/map/*.md` + `.design/DESIGN-MAP.md` |
|
|
32
32
|
| `next` | `get-design-done:gdd-next` | Route to the next pipeline stage based on STATE.md |
|
|
33
33
|
| `help` | `get-design-done:gdd-help` | List all commands with one-line descriptions |
|
|
@@ -207,7 +207,7 @@ If `$ARGUMENTS` is a stage or command name - invoke it directly, no state check:
|
|
|
207
207
|
/gdd:plan → Skill("get-design-done:plan") # stage 3-of-5
|
|
208
208
|
/gdd:design → Skill("get-design-done:design") # stage 4-of-5
|
|
209
209
|
/gdd:verify → Skill("get-design-done:verify") # stage 5-of-5
|
|
210
|
-
/gdd:handoff →
|
|
210
|
+
/gdd:handoff → Skill("get-design-done:gdd-handoff")
|
|
211
211
|
/gdd:map → Skill("get-design-done:gdd-map") # parallel codebase mapping
|
|
212
212
|
/gdd:next → Skill("get-design-done:gdd-next")
|
|
213
213
|
/gdd:help → Skill("get-design-done:gdd-help")
|