planning-with-files

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

对长期或多步骤编码/研究任务提供稳健的本地记忆方案,便于分工与迭代。

▸ 风险提示

需要文件读写权限,可能包含用于自动化的本地脚本或插件。

这个 Skill 做什么

在配置目录下持久化保存 task_plan、findings 与 progress,以保证上下文不丢失。

把任务计划、发现和进度以 markdown 文件保存在本地(比如 task_plan.md、findings.md、progress.md),确保长流程工作不会因为清空上下文而丢失。用在需要分步执行、跨会话追踪或复杂项目规划,尤其会调用多个工具的任务。特别能把“工作记忆”持久化到磁盘并支持断点续做,方便会话恢复。

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

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

```powershell
# Windows PowerShell
python "$env:USERPROFILE\.opencode\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 files
3. Update plan
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有