소스 정보
- 저장소
- hegemonart/get-design-done
- 최근 소스 활동
- 2026년 6월 4일 20:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hegemonart/get-design-done --skill gdd-help명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Master design pipeline for Claude Code. 5-stage workflow: Brief → Explore → Plan → Design → Verify. Run 'brief' first in any new project to capture the design problem, then 'explore' to inventory the codebase and interview for context. Invoke without arguments for status and auto-routing.
Run the pipeline with optional agents skipped for speed. Skips: phase-researcher, design-assumptions-analyzer, design-integration-checker. Keeps: planner, executor, verifier, auditor. Activates for requests involving a lightweight design pass, a fast iteration, or a quick low-ceremony change.
Routes a /gdd command to fast|quick|full path + S|M|L|XL complexity_class and returns {path, complexity_class, model_tier_overrides, resolved_models, estimated_cost_usd, cache_hits}. A SKILL.md prompt the model executes to emit a routing-decision JSON from rule tables (no separate agent spawn). Optional/advisory - invoked only by the skills that opt into routing; the budget-enforcer hook tolerates its absence. Read by hooks/budget-enforcer.ts.
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 {{command_prefix}} 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 {{command_prefix}}<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 {{command_prefix}}<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 {{command_prefix}} convention: show the bare name in the table (it is already understood to be a {{command_prefix}} command), and use the full {{command_prefix}}<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.