planning-with-files

仓库创建 2026年2月2日最近提交 4 天前SkillHot 收录 20 天前
▸ 精选理由

适合复杂、需多次工具调用的长期工程或研究任务。

这个 Skill 做什么

用持久化 Markdown 文件在磁盘上维护多步骤计划与进度,防止上下文丢失。

把计划和进度写到磁盘上的 Markdown 文件(如 task_plan.md、findings.md、progress.md),用来把“记忆”保存下来,防止聊天上下文被清空丢失。适合需要分步执行、调用多次工具、或跨会话继续的项目,尤其是 5 次以上工具调用的复杂任务。优势是能自动恢复会话并在本地保留可追溯的工作记录。

▸ 展开 SKILL.md 英文原文

Manus-style persistent file-based planning for AI coding agents: keeps task_plan.md, findings.md, and progress.md on disk so work survives context loss and /clear. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring 5+ tool calls. Supports automatic session recovery after /clear.

Skill 开发管理文件记忆任务规划断点续作通用
456
Stars
41
Forks
34
仓库内 Skill
+8
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/mxyhi/ok-skills/main/planning-with-files/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/mxyhi/ok-skills/main/planning-with-files/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# 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
# From this planning-with-files skill directory.
$(command -v python3 || command -v python) scripts/session-catchup.py <project-dir>
```

```powershell
# From this planning-with-files skill directory.
python .\scripts\session-catchup.py <project-dir>
```

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

via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有