ワンクリックで
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