plan-mode
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePlan Mode Skill
Plan Mode 技能
Enter and exit structured planning mode.
进入和退出结构化规划模式。
Enter Plan Mode
进入Plan Mode
bash
curl -s -X POST http://localhost:23001/api/plan-mode/enterResponse:
{"active": true, "since": "2026-01-01T00:00:00.000Z", "message": "Plan mode activated."}bash
curl -s -X POST http://localhost:23001/api/plan-mode/enter响应:
{"active": true, "since": "2026-01-01T00:00:00.000Z", "message": "Plan mode activated."}Exit Plan Mode
退出Plan Mode
bash
curl -s -X POST http://localhost:23001/api/plan-mode/exitResponse:
{"active": false, "since": null, "message": "Plan mode exited."}bash
curl -s -X POST http://localhost:23001/api/plan-mode/exit响应:
{"active": false, "since": null, "message": "Plan mode exited."}Check Status
查看状态
bash
curl -s http://localhost:23001/api/plan-modebash
curl -s http://localhost:23001/api/plan-modeWhen to Use
使用场景
- Before outlining a complex multi-step solution
- When the user asks you to "plan" or "think through" an approach
- Exit after the plan is finalized and you're ready to execute
- 在规划复杂的多步骤解决方案之前
- 当用户要求你“规划”或“仔细思考”某个方案时
- 当计划确定完毕、准备执行时退出