用 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.