planning-with-files

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

便于保存复杂任务的工作记忆并在不同会话间恢复上下文,适合长期工程化工作流。

▸ 风险提示

会读写用户主目录文件,可能要求运行脚本以完成会话管理。

这个 Skill 做什么

在 ~/.mastracode/skills 下维护任务计划、发现和进度以支持会话恢复与分步执行。

把任务计划和进度存到 ~/.mastracode/skills 下的 markdown 文件,支持会话恢复与分步执行,防止上下文丢失。适用于五步以上或需要频繁外部工具调用的编码/研究类长任务。特别能在 /clear 后自动恢复未完成的工作流程,让多人协作或中断后继续变得简单。

▸ 展开 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.

自动化集成会话恢复任务规划持久化通用
2.6w
Stars
2.2k
Forks
18
仓库内 Skill
+860
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.mastracode/skills/planning-with-files/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.mastracode/skills/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
# Linux/macOS
$(command -v python3 || command -v python) ~/.mastracode/skills/planning-with-files/scripts/session-catchup.py "$(pwd)"
```

```powershell
# Windows PowerShell
& (Get-Command python -ErrorAction SilentlyContinue).Source "$env:USERPROFILE\.mastracode\skills\planning-with-files\scripts\session-catchup.py" (Get-Location)
```

If catchup report shows unsynced context:
1. Run `git diff --stat` to see actual code changes
2. Read current planning fil
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有