Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Planning with Files

Manus-style persistent planning that keeps task_plan.md, findings.md and progress.md on disk so multi-step work survives context loss and /clear.

AutomationIntermediate26,0602,177AI score 8/10Last updated: Aug 9, 2026

What it does

Your context window is RAM — volatile. This skill treats the filesystem as disk and maintains three markdown files in your project directory:

  • task_plan.md — phases, status, decisions
  • findings.md — research and external/web content (external text goes here only)
  • progress.md — session log and test results

It ships hooks (UserPromptSubmit, PreToolUse, PreCompact, Stop) that re-inject the active plan after compaction or /clear, plus session-catchup.py to recover state from a previous session. The docs codify the "2-action rule", a 3-strike error protocol, a read-vs-write decision matrix, a security boundary for untrusted content, and an anti-pattern table.

Who it's for

  • Anyone assigning multi-step work that needs 5+ tool calls
  • Developers tired of re-explaining "where were we?" after a cleared session
  • Researchers who want discoveries captured before they scroll out of context

Examples

  1. Large refactor: ask for "extract the billing module into a service layer" and the agent writes a six-phase task_plan.md, flipping each phase to complete as it goes.
  2. Tech evaluation: while comparing libraries, every two searches get summarized into findings.md, so browser output isn't lost.
  3. Next-day resume: run session-catchup.py and git diff --stat, reconcile the planning files with real code changes, then continue where you stopped.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .factory/skills/planning-with-files folder from the GitHub repo OthmanAdi/planning-with-files into my ~/.claude/skills/othmanadi-planning-with-files-5/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/OthmanAdi/planning-with-files.git /tmp/pwf && mkdir -p ~/.claude/skills && cp -r /tmp/pwf/.factory/skills/planning-with-files ~/.claude/skills/ && chmod +x ~/.claude/skills/planning-with-files/scripts/*

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/OthmanAdi/planning-with-files.git /tmp/pwf
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r /tmp/pwf/.factory/skills/planning-with-files ~/.claude/skills/
  5. Make the helper scripts executable: chmod +x ~/.claude/skills/planning-with-files/scripts/*
  6. Restart Claude Code, then ask it to "plan this out step by step" and confirm a task_plan.md appears in your project.
  7. (Optional) If you installed elsewhere, add export PWF_SCRIPT_DIR=/path/to/planning-with-files/scripts to your shell profile so the hooks can find the scripts.