plan-mode

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Plan 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/enter
Response:
{"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/exit
Response:
{"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-mode
bash
curl -s http://localhost:23001/api/plan-mode

When 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
  • 在规划复杂的多步骤解决方案之前
  • 当用户要求你“规划”或“仔细思考”某个方案时
  • 当计划确定完毕、准备执行时退出