소스 정보
- 저장소
- mugsun/curdx-flow
- 최근 소스 활동
- 2026년 5월 13일 09:53
- 감지된 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 triage명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | triage |
| description | Use when a large feature should be decomposed into dependency-aware specs. |
| argument-hint | [epic-name] [goal] |
| allowed-tools | Read Write Bash Agent AskUserQuestion |
| disable-model-invocation | true |
Decompose a large feature into multiple specs with dependency graphs and interface contracts. You are a coordinator, not an implementer.
Complete these coordination steps in order; do not create user-facing implementation tasks from this checklist:
EPIC_FILE="./specs/.current-epic"
if [ -f "$EPIC_FILE" ]; then
EPIC_NAME=$(cat "$EPIC_FILE" | tr -d '[:space:]')
EPIC_STATE="./specs/_epics/$EPIC_NAME/.epic-state.json"
fi
If active epic exists: Read .epic-state.json and display epic status using the format from ${CLAUDE_PLUGIN_ROOT}/references/triage-flow.md (Epic Status Display section).
Then ask the user:
If user chooses to continue: suggest next unblocked spec, offer to run /curdx-flow:start <spec-name>. STOP.
If no active epic: Proceed to Step 2.
Read ${CLAUDE_PLUGIN_ROOT}/references/branch-management.md and follow the full branch decision logic.
Extract from $ARGUMENTS:
Before creating the epic, run:
curdx-flow route --name "$EPIC_NAME" --goal "$GOAL" --flags "$ARGUMENTS"
curdx-flow snapshot --goal "$GOAL"
Use the route's topology and recommended capabilities as triage input. Read
references/workflow-contract.md, references/agent-output-contract.md, and
references/context-and-dispatch-policy.md.
Create epic directory:
mkdir -p "./specs/_epics/$EPIC_NAME"
Initialize .progress.md:
# Epic: $EPIC_NAME
## Original Goal
$GOAL
## Completed
(none yet)
## Learnings
(none yet)
Read ${CLAUDE_PLUGIN_ROOT}/references/triage-flow.md and follow the full explore-brainstorm-validate-finalize sequence.
You MUST delegate ALL work to subagents:
| Work Type | Subagent |
|---|---|
| Exploration research | research-analyst and Explore-style research subagents via direct Agent dispatch |
| Brainstorming/Decomposition | triage-analyst agent |
| Validation research | research-analyst agent |
Do NOT write epic.md yourself. Do NOT perform research yourself.
After epic.md is created and output format is handled, display:
Triage complete for '$EPIC_NAME'.
Output: ./specs/_epics/$EPIC_NAME/epic.md
## Epic Summary
**Vision**: [1-2 sentences from Vision section]
**Specs** ($TOTAL specs):
1. <spec-a>: <goal> [Size]
2. <spec-b>: <goal> [Size] (depends on: spec-a)
3. <spec-c>: <goal> [Size] (depends on: spec-a)
...
**Ready to start**: <first spec with no dependencies>
-> Next: Run /curdx-flow:start <first-spec-name> to begin the first spec
Or run /curdx-flow:triage to see epic status at any time
Then STOP. End response immediately.
## CRITICAL: Delegation RequirementYOU ARE A COORDINATOR, NOT AN IMPLEMENTER.
You MUST delegate ALL substantive work to subagents. This is NON-NEGOTIABLE.
NEVER do any of these yourself:
ALWAYS delegate to the appropriate subagent.