一键导入
plan-mode
Structured planning mode for complex multi-step tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Structured planning mode for complex multi-step tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Multi-agent collaboration mode for complex tasks requiring diverse expertise.
Generate strict JSON mind maps from document evidence with clear hierarchy and concise node labels.
Run a local-first research workflow by planning sub-queries, iterating retrieval, validating sources, and producing traceable evidence-backed conclusions.
Summarize long context into concise bullets and cite evidence from the source.
Evaluate claims, assumptions, and evidence quality before drawing final conclusions from academic text.
Compare two methods, techniques, or approaches across objectives, setup, metrics, and trade-offs.
| name | plan_mode |
| description | Structured planning mode for complex multi-step tasks. |
| keywords | plan, todo, strategy, research, investigation |
Complex task detected. Switch to structured planning mode.
Use write_plan to define your execution strategy.
write_plan(goal="<task goal>", description="<strategy in steps>")
Example:
Use write_todos to track all sub-tasks with dependencies.
write_todos(todos=[
Todo(id="step1", content="Search for LLM framework papers", status="pending"),
Todo(id="step2", content="Extract key features from results", status="pending", depends_on=["step1"]),
Todo(id="step3", content="Compare features in table", status="pending", depends_on=["step2"]),
])
System returns scheduler_hints with ready todo IDs. Execute in order:
ready todosearch_document / search_papers / search_web to gather infocompleted by re-calling write_todos with updated statusUse read_plan to review your strategy at any time.
After all todos completed:
write_plan - Create/update execution planread_plan - Read current planwrite_todos - Manage todo list with dependenciessearch_document - Search bound project documentssearch_papers - Search academic paperssearch_web - Web searchuse_skill - Apply domain skill (summary, critical_reading, etc.)ready todos