ワンクリックで
planner
File-based planning system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
File-based planning system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Coding assistant capabilities including file investigation, reading, searching, editing, and command execution.
Agent delegation and orchestration capabilities to split tasks and run them in parallel.
Git version control operations for repositories.
Office document reading capabilities using the markitdown library.
Operating System file manipulation capabilities (list, bulk create, bulk move, regex move).
System administration tools for local OS info and remote SSH connection management.
| name | planner |
| description | File-based planning system. |
| allowed-tools | ["init_planning","resume_last_run","read_plan","update_plan_status","mark_step_complete","add_finding","erase_plans"] |
This skill implements a persistent planning pattern using markdown files.
task_plan.md: Tracks phases, progress, and high-level goal.findings.md: Records research, technical decisions, and resources.progress.md: Detailed session log of actions and thoughts.Initialize the planning files in the current working directory. For coding task, you do not have to provide rigorous testing.
task_description: What needs to be done.phases: List of high-level phases.phase_steps: REQUIRED. List of lists of strings. Each inner list provides the detailed checklist steps for the corresponding phase.
[["Research the official API documentation for authentication methods", "Read the developer guides on rate limiting strategies"], ["Set up the initial project structure using Python Poetry and git", "Implement the core logic for the connection manager class"]]Reads existing planning files to allow the agent to resume an interrupted task.
Returns the content of task_plan.md and the recent log from progress.md.
Read the current status from the planning files.
Update the status of a phase in task_plan.md and log a note in progress.md.
phase_name: Name of the phase.status: New status (pending, in_progress, completed).notes: Optional note to append to progress log.Mark a specific step in task_plan.md as complete ([x]).
phase_name: The name of the phase containing the step.step_keyword: A unique substring to identify the step line.Record a finding, decision, or resource in findings.md.
category: Target section ("Requirements", "Research", "Technical Decisions", "Resources").content: The text to add. For technical decisions, you can use markdown table row format | Decision | Rationale |.Quickly erase existing plans in artifacts/cache by deleting the three planning files.
init_planning. Break down phases into granular, actionable steps in phase_steps rather than broad goals.mark_step_complete IMMEDIATELY. This acts as a "save point" and keeps your reasoning grounded.add_finding to record important URLs, file paths, or architectural decisions.update_plan_status to mark it as completed and the next one as in_progress.resume_last_run over starting from scratch.