planning-with-files

Manage task plans, findings, and progress logs in markdown files.

19|6|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/zhuanggenhua/BoardGame --skill planning-with-files-zhuanggenhua
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: planning-with-files
Source: https://github.com/zhuanggenhua/BoardGame/tree/main/.agent/skills/planning-with-files
Command: npx skills add https://github.com/zhuanggenhua/BoardGame --skill planning-with-files-zhuanggenhua

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a robust mechanism for agents to maintain persistent "working memory" and task plans on disk, ensuring continuity and reliability across complex, multi-step operations, even after restarts.

Core Features & Use Cases

  • Persistent Task Planning: Manages task_plan.md for high-level goals and phase tracking.
  • Knowledge Management: Utilizes findings.md to store research, decisions, and scraped content.
  • Session Continuity: Employs progress.md for a chronological log of actions, enabling seamless resumption.
  • Error Handling: Implements a "3-Strike" protocol for robust error management.
  • Use Case: An agent tasked with refactoring a large codebase can use this skill to meticulously track its progress, store architectural decisions, and resume work without losing context if interrupted.

Quick Start

Use the planning-with-files skill to create a new task plan for the 'user-authentication' feature.

Frequently Asked Questions about planning-with-files

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I maintain persistent working memory for an AI agent across multiple sessions?▼

You can maintain persistent working memory for an AI agent by managing markdown files on disk, such as tracking task plans and logging chronological progress, to ensure continuity across multi-step operations even after restarts.

What is the best way to track multi-step task plans and prevent context loss during codebase refactoring?▼

The best way to track multi-step task plans is to use disk-based markdown files like task_plan.md and findings.md to store high-level goals, architectural decisions, and research, preventing context loss during large refactoring.

How does file-based context management work for resuming interrupted agent workflows?▼

File-based context management works by writing actions to a chronological progress.md file, allowing the agent to read the log upon restart to seamlessly resume the workflow without losing previous state.

Does this file-based planning approach handle execution errors during complex tasks?▼

Yes, the file-based planning approach handles execution errors by implementing a 3-Strike protocol for robust error management, ensuring reliable execution of multi-step tasks when failures occur.

When do I need to use disk-based markdown files for agent memory instead of relying on session context?▼

You need to use disk-based markdown files for agent memory when executing complex, multi-step operations that require continuity and reliability across sessions, ensuring state persists even if the session is interrupted or restarted.