一键导入
write-plan-consult
Create an implementation plan by brainstorming with Gemini and Codex, synthesizing the best ideas, then getting their review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create an implementation plan by brainstorming with Gemini and Codex, synthesizing the best ideas, then getting their review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
Claude brainstorms with an opponent LLM (Gemini or Codex) in alternating turns, building on each other's ideas. Synthesizes the best ideas into a plan.
Commit the staged changes. If there are no staged changes, stage all changes first.
Consult Gemini and Codex for high-level planning, synthesize into a detailed plan, implement, then get final review. No user interaction.
| name | write-plan-consult |
| description | Create an implementation plan by brainstorming with Gemini and Codex, synthesizing the best ideas, then getting their review. |
Create an implementation plan by consulting external LLMs throughout the process.
User request: $ARGUMENTS
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 possibleOnce you understand the task, consult Gemini and Codex in parallel for approaches and ideas.
Spawn TWO parallel subagents (Agent tool, subagent_type: "general-purpose",
model: "sonnet"). Each subagent makes the MCP call and returns the full
response.
Gemini subagent:
Call mcp__consult-llm__consult_llm with:
model: "gemini"prompt: The brainstorm prompt belowfiles: Array of relevant source files for contextCodex subagent:
Call mcp__consult-llm__consult_llm with:
model: "openai"prompt: The brainstorm prompt belowfiles: Array of relevant source files for contextBrainstorm prompt:
I'm planning the following task:
[Task description with full context]
Relevant files and their roles:
[List the key files and what they do]
Propose 2-3 approaches for implementing this. For each approach:
- Describe the strategy and trade-offs
- List the files to create/modify with exact paths
- Include concrete code examples showing the key parts (not pseudocode)
- Note any edge cases or gotchas
Be specific and opinionated. Recommend your preferred approach and explain why.
Review both LLM responses. Pick the best ideas from each and combine them with your own analysis into a single implementation plan.
# [Feature Name] Implementation Plan
**Goal:** [One sentence describing what this builds]
**Approach:** [2-3 sentences about the chosen approach and why]
**Sources:** [Brief note on which ideas came from Gemini vs Codex vs your own analysis]
---
### 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)Get Gemini and Codex to review the synthesized plan, again in parallel.
Spawn TWO parallel subagents (Agent tool, subagent_type: "general-purpose",
model: "sonnet"). Each subagent makes the MCP call and returns the full
response.
Gemini subagent:
Call mcp__consult-llm__consult_llm with:
model: "gemini"prompt: The review prompt belowfiles: Array including the plan file and relevant source filesCodex subagent:
Call mcp__consult-llm__consult_llm with:
model: "openai"prompt: The review prompt belowfiles: Array including the plan file and relevant source filesReview 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.