원클릭으로
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