Planning with Files (Chinese Edition)
A Manus-style planning skill that tracks complex work in task_plan.md, findings.md and progress.md, and restores context automatically after a cleared session.
AutomationIntermediate★ 26,060⑂ 2,177AI score 10/10Last updated: Aug 9, 2026
What it does
- Externalizes working memory to disk: before any complex task it creates
task_plan.md(phases, status, decisions),findings.md(research), andprogress.md(session log). - Hooks on UserPromptSubmit, PreToolUse and PreCompact re-inject the current plan before tool calls; PostToolUse reminds you to log progress.
- After
/clearor compaction,session-catchup.pyplusgit diff --statsurfaces unsynced work and refreshes the plan files. - Ships concrete operating rules: three-strike failure protocol, read-vs-write decision matrix, "save findings every 2 lookups", and an anti-pattern table.
- Includes a security boundary section: untrusted web/API text goes only into
findings.md, never into the hook-injectedtask_plan.md.
Who it's for
- Anyone running long tasks that exceed a handful of tool calls: migrations, refactors, multi-source research.
- Developers who hit context loss and goal drift in long Claude Code sessions.
- Teams that prefer Chinese-language planning documents.
Examples
- "Plan the migration of this repo to TypeScript" → phased
task_plan.mdwith per-phase status updates. - Researching five competitor products → findings flushed to
findings.mdevery two searches so screenshots/PDF details aren't lost. - Resuming after
/clear→ catch-up script reports unsynced diffs, plan files are updated, work continues at the right phase.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/OthmanAdi/planning-with-files/HEAD/skills/planning-with-files-zh/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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 skills/planning-with-files-zh folder from the GitHub repo OthmanAdi/planning-with-files into my ~/.claude/skills/planning-with-files-zh/. 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 && mkdir -p ~/.claude/skills && cp -r planning-with-files/skills/planning-with-files-zh ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and cd to a folder where you keep source code.
- Clone the repo:
git clone https://github.com/OthmanAdi/planning-with-files.git - Install the skill:
mkdir -p ~/.claude/skills && cp -r planning-with-files/skills/planning-with-files-zh ~/.claude/skills/ - Make the helper scripts executable:
chmod +x ~/.claude/skills/planning-with-files-zh/scripts/*.sh - Verify Python is available (
python3 --version) — it powers session recovery. - Restart Claude Code, open a project directory, and ask it to "plan this task step by step"; confirm
task_plan.mdappears in the project root. - If you installed to a non-standard location, export
PWF_SCRIPT_DIRpointing at the skill'sscriptsdirectory so the hooks resolve.
View source on GitHub ↗License: MIT