소스 정보
- 저장소
- mugsun/curdx-flow
- 최근 소스 활동
- 2026년 5월 14일 10:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/mugsun/curdx-flow --skill spec-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | spec-workflow |
| description | Use when planning, running, or resuming curdx-flow spec-driven workflows. |
| when_to_use | Use when user asks to build, implement, plan, triage, decompose, resume, inspect status, or run any curdx-flow research/requirements/design/tasks/implementation phase. |
| argument-hint | [intent-or-spec] |
| version | 0.2.0 |
| user-invocable | false |
Spec-driven development transforms feature requests into structured specs through sequential phases, then executes them task-by-task.
This skill is the canonical workflow guidance. curdx-flow is now skills-only at the plugin surface: every /curdx-flow:* entry point is a namespaced skill under skills/<name>/SKILL.md.
/curdx-flow:start, /curdx-flow:tasks, /curdx-flow:implement, etc.).curdx-core and interview-framework.references/ or plugin-global ${CLAUDE_PLUGIN_ROOT}/references/ files instead of bloating frontmatter descriptions.references/entrypoints.md for the skills-only entry point policy.references/skill-quality-patterns.md before adding or changing curdx-flow skills.| Situation | Slash Skill |
|---|---|
| New feature, want guidance | /curdx-flow:start <name> <goal> |
| New feature, skip interviews | /curdx-flow:start <name> <goal> --quick |
| Large feature needing decomposition | /curdx-flow:triage <goal> |
| Resume existing spec | /curdx-flow:start (auto-detects) |
| Jump to specific phase | /curdx-flow:<phase> |
start/new -> research -> requirements -> design -> tasks -> implement
Each phase produces a markdown artifact in ./specs/<name>/. Normal mode pauses for approval between phases. Quick mode runs all phases then auto-starts execution.
| Slash Skill | Agent | Output | Purpose |
|---|---|---|---|
/curdx-flow:research | research-analyst | research.md | Explore feasibility, patterns, context |
/curdx-flow:requirements | product-manager | requirements.md | User stories, acceptance criteria |
/curdx-flow:design | architect-reviewer | design.md | Architecture, components, interfaces |
/curdx-flow:tasks | task-planner | tasks.md | POC-first task breakdown |
/curdx-flow:implement | spec-executor | commits | Autonomous task-by-task execution |
For features too large for a single spec, use epic triage to decompose into dependency-aware specs.
triage -> [spec-1, spec-2, spec-3...] -> implement each in order
Entry points:
/curdx-flow:triage <goal> -- create or resume an epic/curdx-flow:start -- detects active epics, suggests next unblocked specFile structure:
specs/
_epics/<epic-name>/
epic.md # Triage output (vision, specs, dependency graph)
research.md # Exploration + validation research
.epic-state.json # Progress tracking across specs
.progress.md # Learnings and decisions
| Slash Skill | Purpose |
|---|---|
/curdx-flow:status | Show all specs and progress |
/curdx-flow:switch <name> | Change active spec |
/curdx-flow:cancel | Cancel active execution |
/curdx-flow:refactor | Update spec files after execution |
/curdx-flow:start my-feature "Build X" --quick
# Runs all phases automatically, starts execution
/curdx-flow:start my-feature "Build X"
# Interactive interviews at each phase
# Review and approve each artifact
/curdx-flow:implement
/curdx-flow:triage "Build entire auth system"
# Decomposes into: auth-core, auth-oauth, auth-rbac
/curdx-flow:start # Picks next unblocked spec
references/phase-transitions.md -- Detailed phase flow, state transitions, quick mode behavior, phase skippingreferences/entrypoints.md -- Skills-only public entry point policy