Planning With Files
FreeClaude Code skill implementing Manus-style persistent markdown planning — the workflow pattern behind the $2B acquisition.
About Planning With Files
Planning with Files is a persistent file-based planning skill for AI coding agents. It keeps three markdown files (task_plan.md, findings.md, progress.md) on disk and re-injects them every turn, so the plan survives context loss, /clear commands, crashes, and compaction. It implements a Manus-style working memory with an optional completion gate. The skill supports over 60 agents including Claude Code, Codex, Cursor, Kiro, OpenCode, and many others through the Agent Skills standard. In benchmark tests, fresh sessions with the files on disk resumed in 5.0 turns on average versus 13.3 turns for a raw agent (internal v1, author-run).
Key Features
Pros & Cons
- Eliminates loss of context after /clear or crashes
- Works with a wide range of AI coding agents (60+)
- Uses simple markdown files for transparency and debuggability
- Lightweight open-source implementation (MIT license)
- Improves task completion rate (96.7% pass rate with skill in internal tests)
- Requires initial setup and configuration for each agent
- Relies on file system access, which may not suit all environments
- The benchmark data is internally run by the author; external validation may vary