ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.