用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/raine/skills --skill write-plan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | write-plan |
| description | Create an implementation plan for a multi-step task. Optionally review with external LLMs. |
| disable-model-invocation | true |
Create an implementation plan for a multi-step task.
User request: $ARGUMENTS
Check arguments for optional review flags:
--review → review with both Gemini and Codex (parallel)--gemini → review with Gemini only--codex → review with Codex only--claude → review with a Claude subagentStrip flags from arguments to get the task description.
Start by understanding what exists and what the user wants.
AskUserQuestion to ask clarifying questions one at a timeRules for questions:
AskUserQuestion with 2-4 options whenever possibleCreate a plan document with bite-sized tasks. Each task should be a small, focused unit of work.
# [Feature Name] Implementation Plan
**Goal:** [One sentence describing what this builds]
**Approach:** [2-3 sentences about the approach]
---
### Task 1: [Short description]
**Files:**
- Create: `exact/path/to/file.py`
- Modify: `exact/path/to/existing.py` (lines 123-145)
**Steps:**
1. [Specific action]
2. [Specific action]
**Code:**
```language
// Include actual code, not placeholders like "add validation"
```
---
### Task 2: [Short description]
...
Save the plan:
history/<date>-plan-<feature-name>.md (e.g. history/2026-02-15-plan-user-auth.md)Skip this phase if no review flag was provided.
Based on the flag, get external feedback on the plan:
--gemini: Gemini onlyCall mcp__consult-llm__consult_llm with:
model: "gemini"prompt: Review prompt belowfiles: Array including the plan file and relevant source files--codex: Codex onlyCall mcp__consult-llm__consult_llm with:
model: "openai"prompt: Review prompt belowfiles: Array including the plan file and relevant source files--claude: Claude subagentUse the Task tool with subagent_type: "general-purpose" and a prompt like:
Review this implementation plan. The plan is in: [plan file path]
Consider:
- Are the tasks correctly ordered and sized?
- Are there any missing steps or edge cases?
- Are the file paths and code snippets accurate?
- Any architectural concerns or better approaches?
Read the plan file and relevant source files, then provide specific, actionable feedback. Be concise.
--review: Both Gemini and Codex in parallelSpawn BOTH as parallel subagents (Agent tool, subagent_type: "general-purpose", model: "sonnet"). NEVER run subagents in the background — always run them in the foreground so you can process their results immediately. Each subagent prompt must include the full review prompt and file list so it can make the MCP call independently.
Gemini subagent — prompt must include:
mcp__consult-llm__consult_llm with model: "gemini", prompt: the review prompt, files: [array including the plan file and relevant source files]Codex subagent — prompt must include:
mcp__consult-llm__consult_llm with model: "openai", prompt: the review prompt, files: [array including the plan file and relevant source files]Review prompt:
Review this implementation plan. Consider:
- Are the tasks correctly ordered and sized?
- Are there any missing steps or edge cases?
- Are the file paths and code snippets accurate?
- Any architectural concerns or better approaches?
Provide specific, actionable feedback. Be concise.
After receiving feedback, present it to the user and ask if they want to revise the plan.