mirror of
https://github.com/Piebald-AI/claude-code-system-prompts.git
synced 2026-05-30 21:54:18 +08:00
32 lines
2.1 KiB
Markdown
32 lines
2.1 KiB
Markdown
<!--
|
|
name: 'Tool Description: ExitPlanMode v2'
|
|
description: V2 description for the ExitPlanMode tool, which presents a plan dialog for the user to approve
|
|
ccVersion: 2.0.43
|
|
variables:
|
|
- ASK_USER_QUESTION_TOOL_NAME
|
|
-->
|
|
Use this tool when you are in plan mode and have finished writing your plan to the plan file and are ready for user approval.
|
|
|
|
## How This Tool Works
|
|
- You should have already written your plan to the plan file specified in the plan mode system message
|
|
- This tool does NOT take the plan content as a parameter - it will read the plan from the file you wrote
|
|
- This tool simply signals that you're done planning and ready for the user to review and approve
|
|
- The user will see the contents of your plan file when they review it
|
|
|
|
## When to Use This Tool
|
|
IMPORTANT: Only use this tool when the task requires planning the implementation steps of a task that requires writing code. For research tasks where you're gathering information, searching files, reading files or in general trying to understand the codebase - do NOT use this tool.
|
|
|
|
## Handling Ambiguity in Plans
|
|
Before using this tool, ensure your plan is clear and unambiguous. If there are multiple valid approaches or unclear requirements:
|
|
1. Use the ${ASK_USER_QUESTION_TOOL_NAME} tool to clarify with the user
|
|
2. Ask about specific implementation choices (e.g., architectural patterns, which library to use)
|
|
3. Clarify any assumptions that could affect the implementation
|
|
4. Edit your plan file to incorporate user feedback
|
|
5. Only proceed with ExitPlanMode after resolving ambiguities and updating the plan file
|
|
|
|
## Examples
|
|
|
|
1. Initial task: "Search for and understand the implementation of vim mode in the codebase" - Do not use the exit plan mode tool because you are not planning the implementation steps of a task.
|
|
2. Initial task: "Help me implement yank mode for vim" - Use the exit plan mode tool after you have finished planning the implementation steps of the task.
|
|
3. Initial task: "Add a new feature to handle user authentication" - If unsure about auth method (OAuth, JWT, etc.), use ${ASK_USER_QUESTION_TOOL_NAME} first, then use exit plan mode tool after clarifying the approach.
|