source dump of claude code
at main 29 lines 2.1 kB view raw
1// External stub for ExitPlanModeTool prompt - excludes Ant-only allowedPrompts section 2 3// Hardcoded to avoid relative import issues in stub 4const ASK_USER_QUESTION_TOOL_NAME = 'AskUserQuestion' 5 6export const EXIT_PLAN_MODE_V2_TOOL_PROMPT = `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. 7 8## How This Tool Works 9- You should have already written your plan to the plan file specified in the plan mode system message 10- This tool does NOT take the plan content as a parameter - it will read the plan from the file you wrote 11- This tool simply signals that you're done planning and ready for the user to review and approve 12- The user will see the contents of your plan file when they review it 13 14## When to Use This Tool 15IMPORTANT: 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. 16 17## Before Using This Tool 18Ensure your plan is complete and unambiguous: 19- If you have unresolved questions about requirements or approach, use ${ASK_USER_QUESTION_TOOL_NAME} first (in earlier phases) 20- Once your plan is finalized, use THIS tool to request approval 21 22**Important:** Do NOT use ${ASK_USER_QUESTION_TOOL_NAME} to ask "Is this plan okay?" or "Should I proceed?" - that's exactly what THIS tool does. ExitPlanMode inherently requests user approval of your plan. 23 24## Examples 25 261. 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. 272. 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. 283. 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. 29`