planning-with-files
仓库创建 2026年1月3日最近提交 2 天前SkillHot 收录 20 天前
▸ 精选理由
為長流程或需多次工具呼叫的任務提供磁碟工作記憶,減少上下文丟失風險。
▸ 风险提示
會在使用者主目錄創建/修改檔案並可能執行本地安裝/恢復腳本,使用前請審核來源。
这个 Skill 做什么
將多步任務的計畫、發現與進度保存在本地 Markdown 文件以防會話丟失。
把计划、发现和进度写成本地 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.
2.6w
Stars
2.2k
Forks
18
仓库内 Skill
+860
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.codebuddy/skills/planning-with-files/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.codebuddy/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 skill directory (plugin env or default install path)
SKILL_DIR="${CODEBUDDY_PLUGIN_ROOT:-$HOME/.codebuddy/skills/planning-with-files}"
$(command -v python3 || command -v python) "${SKILL_DIR}/scripts/session-catchup.py" "$(pwd)"
```
```powershell
# Windows PowerShell
python "$env:USERPROFILE\.codebuddy\skills\planning-with-files\scripts\session-catchup.py" (Get-Location)
```
If catchup report shows unsynced context:
1. Run `givia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有