← ClaudeAtlas

planning-with-fileslisted

Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls. Now with automatic session recovery after /clear.
SEPTMOON/planning-with-files · ★ 2 · AI & Automation · score 81
Install: claude install-skill SEPTMOON/planning-with-files
# Planning with Files Work like Manus: Use persistent markdown files as your "working memory on disk." ## FIRST: Check for Previous Session (v2.2.0) **Before starting work**, check for unsynced context from a previous session: ```bash python3 ${CLAUDE_PLUGIN_ROOT}/scripts/session-catchup.py "$(pwd)" ``` If catchup report shows unsynced context: 1. Run `git diff --stat` to see actual code changes 2. Read current planning files 3. Update planning files based on catchup + git diff 4. Then proceed with task ## Important: Where Files Go - **Templates** are in `${CLAUDE_PLUGIN_ROOT}/templates/` - **Your planning files** go in **your project directory** | Location | What Goes There | |----------|-----------------| | Skill directory (`${CLAUDE_PLUGIN_ROOT}/`) | Templates, scripts, reference docs | | Your project directory | `task_plan.md`, `findings.md`, `progress.md` | ## Quick Start Before ANY complex task: 1. **Create `task_plan.md`** — Use [templates/task_plan.md](templates/task_plan.md) as reference 2. **Create `findings.md`** — Use [templates/findings.md](templates/findings.md) as reference 3. **Create `progress.md`** — Use [templates/progress.md](templates/progress.md) as reference 4. **Re-read plan before decisions** — Refreshes goals in attention window 5. **Update after each phase** — Mark complete, log errors > **Note:** Planning files go in your project root, not the skill installation folder. ## The Core Pattern ``` Context Window = RAM (volatile, limited)