Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Planning with Files (Spanish Edition)

A Manus-style skill that keeps complex, multi-step work on track using persistent task_plan.md, findings.md and progress.md files.

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

What it does

Before starting any complex task, this skill creates three Markdown files in your project root and treats the filesystem as durable working memory:

  • task_plan.md — phases, status, key decisions
  • findings.md — research and discoveries
  • progress.md — session log, test results, changed files

Hooks re-inject the plan on every tool call and before context compaction, and session-catchup.py restores context after /clear by comparing plan files with git diff --stat. It also codifies practical rules: save findings after every 2 lookups, a three-strike failure protocol (change approach, then ask the user), and a security boundary that untrusted web content must go into findings.md only, never into the auto-injected task_plan.md.

Who it's for

  • Developers running long tasks that span many tool calls (migrations, refactors, audits)
  • Anyone frustrated by Claude drifting from the original goal in long sessions
  • Teams that want a file-based handoff trail between sessions
  • Spanish-speaking users; the English variant lives in the planning-with-files folder

Examples

  1. API migration: ask it to move a project to v2 — it writes a 6-phase plan, flips each phase to complete, and logs every error with the fix in a table.
  2. Comparative research: while evaluating libraries, key notes land in findings.md every two searches, so evidence survives context compaction.
  3. Session recovery: after /clear, it reads the plan files plus the git diff, reconciles what actually shipped, and resumes from the right phase.

· · · 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 skills/planning-with-files-es folder from the GitHub repo OthmanAdi/planning-with-files into my ~/.claude/skills/planning-with-files-es/.
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/skills/planning-with-files-es ~/.claude/skills/

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 Spanish variant: cp -r /tmp/pwf/skills/planning-with-files-es ~/.claude/skills/
  5. Make the helper scripts executable: chmod +x ~/.claude/skills/planning-with-files-es/scripts/*.sh
  6. Verify Python is available (python3 --version) so session-catchup.py can run.
  7. Restart Claude Code, open your project folder, and ask it to plan a multi-step task.
  8. If you installed to a non-standard path, export PWF_SCRIPT_DIR pointing at the skill's scripts directory so the hooks resolve.