What problem does it solve?
Complex, multi-step tasks and research workflows lose context in chat-based interactions and exceed model context windows, making it hard to track progress, errors, and decisions across many iterative steps. This Skill provides a filesystem-backed pattern to keep goals, status, and findings durable and instantly retrievable so the agent never "forgets" the plan or hidden state.
Core Features & Use Cases
- Persistent Plan File: Maintain a task_plan.md that records goals, phases, status, decisions, and error traces and is re-read before major decisions to refresh agent attention.
- Three-File Pattern: Use a small set of files (task_plan.md, notes.md, deliverable) to separate planning, gathering, and final output for reproducible workflows.
- Error Recovery & Observability: Append failure traces and recovery actions to the plan to surface issues and enable robust troubleshooting.
- Use Cases: Research summaries, multi-phase feature development, complex bug fixes, and any task where iterative progress tracking and external memory are required.
Quick Start
Create a task_plan.md and notes.md, ask the assistant to follow the plan, read task_plan.md before each decision, and update it as you make progress.