用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hegemonart/get-design-done --skill gdd-help命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | gdd-help |
| description | Lists all available get-design-done commands with one-line descriptions |
| tools | Read |
| disable-model-invocation | true |
Role: Print a complete, formatted reference of every /gdd: command with a one-line description. The list is built from the skill manifest at runtime so it can never drift from the installed skills.
Read the manifest. Open scripts/lib/manifest/skills.json. Its skills array is the source of truth: one object per skill, each with a name (the command, used as /gdd:<name>) and a description. Some records also carry user_invocable, disable_model_invocation, composes_with, next_skills, and registered_in_phase - use those only to refine grouping, never to drop a skill.
Cover every skill. The output must include every object in skills exactly once. Do not hardcode a command list and do not print a fixed count - the only authority is the manifest you just read. If a skill is in the manifest, it appears in the help; if it is removed from the manifest, it disappears from the help automatically.
One-line each. For every skill, emit /gdd:<name> followed by a single condensed line drawn from its description. Trim each description to its first sentence (cut at the first sentence-ending period) so the table stays scannable. Strip any leading "Stage N of 5" boilerplate into a short Stage N tag where it helps. Never invent a description - if a record has only a terse description, use it verbatim (condensed).
Group sensibly. The manifest has no explicit category field, so derive groups from what each skill does and lead with the ones users reach for first. A good order:
brief, explore, plan, design, verify - the five-stage spine, in that sequence.style, darkmode, compare, audit, start).next, help, progress, health, stats, quick, fast.discuss, list-assumptions, sketch, sketch-wrap-up, spike, spike-wrap-up, map, bootstrap-ds.new-project, new-cycle, complete-cycle, pause, resume, continue, do, ship, pr-branch, undo.name you have not already printed and place it here.Grouping is a presentation aid, not a filter. If you are ever unsure where a skill belongs, fall back to a single alphabetical list of all manifest skills - completeness beats tidy buckets.
Render. Use this header and shape (a fenced reference block):
=== Get Design Done - Command Reference ===
Pipeline stages (run in order):
brief <first sentence of brief.description>
explore <first sentence of explore.description>
...
Standalone analysis:
...
(continue for every group, ending with the alphabetical catch-all)
Pad command names to a consistent column so descriptions align. Keep the /gdd: convention: show the bare name in the table (it is already understood to be a /gdd: command), and use the full /gdd:<name> form in any surrounding prose.
After the command reference, emit the plugin-update banner if one is present:
[ -f .design/update-available.md ] && cat .design/update-available.md
Written by hooks/update-check.sh; suppressed mid-pipeline and when the latest release is dismissed.