用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FerroxLabs/ferrox-factory --skill ferrox-plan-phase命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Something was built and you want tests covering what it promised to do
A step involves building an AI system and you want its design and evals pinned down first
You want issues found, classified, fixed, tested and committed without steering each one
基于 SOC 职业分类
正在显示 SKILL.md
| name | ferrox-plan-phase |
| description | Ready to work out the next step in detail before building it. Produces a plan to execute |
| argument-hint | [phase] [--auto] [--research] [--skip-research] [--research-phase <N>] [--view] [--gaps] [--skip-verify] [--prd <file>] [--ingest <path-or-glob>] [--ingest-format <auto|nygard|madr|narrative>] [--reviews] [--text] [--tdd] [--mvp] |
| effort | max |
| allowed-tools | ["Read","Write","Bash","Glob","Grep","Agent","AskUserQuestion","WebFetch","mcp__context7__*"] |
Default flow: Research (if needed) → Plan → Verify → Done
Research-only mode (--research-phase <N>): Spawn ferrox-phase-researcher for phase N, write RESEARCH.md, then exit before the planner runs. Useful for cross-phase research, doc review before committing to a planning approach, and correction-without-replanning loops where iterating on research alone is dramatically cheaper than re-spawning the planner. Replaces the deleted research-phase command (#3042).
Research-only modifiers:
RESEARCH.md already exists, auto-uses it: emits a one-line notice and exits cleanly, no prompt.--research — force-refresh: re-spawn the researcher unconditionally, no prompt. Bypasses the existing-RESEARCH.md auto-use path.--view — view-only: print existing RESEARCH.md to stdout. Does not spawn the researcher. Cheapest mode for the correction-without-replanning loop. If no RESEARCH.md exists yet, errors with a hint to drop --view.Orchestrator role: Parse arguments, validate phase, research domain (unless skipped), spawn ferrox-planner, verify with ferrox-plan-checker, iterate until pass or max iterations, present results.
Planning ends with a parallelism recommendation. Once the plans exist the shape of the phase is knowable, so step 13f runs scripts/parallelism-verdict.cjs and reports which execution mode fits, recommendation first, with the measures that back it. It reports and never acts: /ferrox-execute-phase owns the backend decision, its availability check and its refusal.
<execution_context>
@/.claude/ferrox-core/workflows/plan-phase.md
@/.claude/ferrox-core/references/ui-brand.md
</execution_context>
<runtime_note>
Copilot (VS Code): Use vscode_askquestions wherever this workflow calls AskUserQuestion. They are equivalent — vscode_askquestions is the VS Code Copilot implementation of the same interactive question API. Do not skip questioning steps because AskUserQuestion appears unavailable; use vscode_askquestions instead.
</runtime_note>
Flags:
--research — Force re-research even if RESEARCH.md exists--skip-research — Skip research, go straight to planning--gaps — Gap closure mode (reads VERIFICATION.md, skips research)--skip-verify — Skip verification loop--prd <file> — Use a PRD/acceptance criteria file instead of discuss-phase. Parses requirements into CONTEXT.md automatically. Skips discuss-phase entirely.--ingest <path-or-glob> — Use one or more ADR files instead of discuss-phase. Parses locked decisions + scope fences into CONTEXT.md automatically. Skips discuss-phase entirely.--ingest-format <auto|nygard|madr|narrative> — Optional ADR parser format override (auto default).--reviews — Replan incorporating cross-AI review feedback from REVIEWS.md (produced by /ferrox-review)--text — Use plain-text numbered lists instead of TUI menus (required for /rc remote sessions)--mvp — Vertical MVP mode. Planner organizes tasks as feature slices (UI→API→DB) instead of horizontal layers. On Phase 1 of a new project, also emits SKELETON.md (Walking Skeleton). Can be persisted on a phase via **Mode:** mvp in ROADMAP.md.Normalize phase input in step 2 before any directory lookups.
Execute end-to-end. Preserve all workflow gates (validation, research, planning, verification loop, routing).