소스 정보
- 저장소
- mugsun/curdx-flow
- 최근 소스 활동
- 2026년 5월 18일 00:49
- 감지된 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 help명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | help |
| description | Use when showing curdx-flow slash skills, options, workflow, or troubleshooting. |
| disable-model-invocation | true |
Output contract:
# curdx-flow Help.If the user has not named a specific command, recommend /curdx-flow:start. It routes automatically:
/curdx-flow:triage| Command | Use |
|---|---|
/curdx-flow:start [name] [goal] | Smart route, create, or resume. Prefer this when in doubt. |
/curdx-flow:new <name> [goal] | Explicit create. Use only when you know the spec is new; will prompt to resume/overwrite if it already exists. |
/curdx-flow:prompt-optimize [draft prompt] | Improve a task prompt and route suggestion without executing it |
/curdx-flow:status | Show specs and the recommended next action |
/curdx-flow:triage [epic-name] [goal] | Split oversized work into dependency-aware specs |
/curdx-flow:tasks | Generate value-slice implementation tasks after design |
/curdx-flow:implement [flags] | Execute approved tasks with native /goal driving follow-up turns (see Implement Flags below) |
/curdx-flow:cancel [name] | Confirm-then-delete a spec directory and its state file |
start vs newstart is the smart wrapper: it routes intent, resumes unfinished specs, and creates new ones as needed. new is the explicit creator and does not resume or route. If you are unsure which to type, type start.
All public entrypoints remain available:
/curdx-flow:cancel, /curdx-flow:design, /curdx-flow:feedback, /curdx-flow:help, /curdx-flow:implement, /curdx-flow:index, /curdx-flow:new, /curdx-flow:prompt-optimize, /curdx-flow:refactor, /curdx-flow:requirements, /curdx-flow:research, /curdx-flow:start, /curdx-flow:status, /curdx-flow:switch, /curdx-flow:tasks, /curdx-flow:triage.
/curdx-flow:implement [--max-task-iterations 5] [--max-global-iterations 30] [--goal-turns 30] [--manual] [--quick] [--recovery-mode]
| Flag | Default | Effect |
|---|---|---|
--max-task-iterations | 5 | Per-task retry cap. When hit, the current task is marked failed and the retry loop breaks. |
--max-global-iterations | 30 | Global loop cap. When hit, the coordinator halts. Override with 100 to opt back into legacy behavior. |
--goal-turns | same as --max-global-iterations | Max native /goal turns before reporting an incomplete blocker. |
--manual | off | Do not ask the user to set native /goal; run one coordinator turn and leave a resumable status. |
--quick | off | Non-interactive. Skip branch/worktree/review prompts. Trusts autoPolicy.reviewCadence. |
--recovery-mode | off | On task failure, generate a fix task and retry instead of stopping. Affects execution failures only. |
/curdx-flow:start [name] [goal] [--fresh] [--quick] [--mode auto|fast|deep] [--task-granularity auto|coarse|standard|fine] [--review minimal|standard|strict] [--commit-spec] [--no-commit-spec] [--specs-dir <path>]
--fresh: create a new spec instead of resuming a matching unfinished one.--quick: skip human approval checkpoints when the route still needs a spec.--mode: choose automatic, faster, or deeper policy.--task-granularity: override value-slice task granularity.--review: override review cadence.--commit-spec / --no-commit-spec: control spec artifact commits.The compatibility autoPolicy is stored in .curdx-state.json; behavior routing is driven by smart-route, and implementation follow-up turns are driven by native /goal unless --manual is used.
/curdx-flow:status, then /curdx-flow:switch <name> or /curdx-flow:start <name> <goal>./curdx-flow:switch <name>./curdx-flow:implement --manual, finish the current turn, then resume explicitly.curdx-flow doctor and curdx-flow goal report nativeGoal.readiness; use manual resume until it recommends native-goal./curdx-flow:implement --max-task-iterations <n> or /curdx-flow:implement --max-global-iterations <n> after checking .progress.md./curdx-flow:refactor [spec-name].claude plugin validate ./plugins/curdx-flowcurdx-flow doctorcurdx-flow route --compile --goal "<goal>"curdx-flow dev detect, curdx-flow dev up, curdx-flow dev health, curdx-flow dev verify, curdx-flow dev downnpm run test:claudecctest:claudecc auto-detects a claudecc zsh alias when present and falls back to claude; set CURDX_FLOW_CLAUDE_BIN=claude to force the official CLI binary.