planning-with-files
仓库创建 2026年1月3日最近提交 2 天前SkillHot 收录 20 天前
▸ 精选理由
适合需要长期分步执行或会话恢复的开发/研究任务,明确规范文件生命周期。
▸ 风险提示
需要在宿主文件系统读写并可能依赖或执行扩展安装脚本。
这个 Skill 做什么
为多步任务在磁盘上维护 task_plan.md、findings.md 和 progress.md,防止上下文丢失。
把计划、发现和进度三份 Markdown 文件(task_plan.md、findings.md、progress.md)存到本地,等于把工作记忆写在硬盘上。用在需要把复杂任务拆成多步、调用很多工具或长期跟进的场景,能把每一步的想法和结果记录下来。特别之处是能在会话丢失或执行 /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. Hermes adaptation with minimal notes.
2.6w
Stars
2.2k
Forks
18
仓库内 Skill
+860
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.hermes/skills/planning-with-files/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/.hermes/skills/planning-with-files/SKILL.md"SKILL.MD 节选查看完整文件 ↗
> Hermes note: lifecycle automation for this skill is provided by the Hermes adapter plugin in `.hermes/plugins/planning-with-files/`.
# Planning with Files
Work like Manus: Use persistent markdown files as your "working memory on disk."
## FIRST: Restore Context (v2.2.0)
**Before doing anything else**, check if planning files exist and read them:
1. If `task_plan.md` exists, read `task_plan.md`, `progress.md`, and `findings.md` immediately.
2. Then check for unsynced context from a previous session:
```bash
# Linux/macOS — auto-detects skill directory (Hermes env or default install path)
SKILL_DIR="${HERMES_HOME:-$HOME/.hermes}/skills/planning-with-files"
$(command -v python3 || commavia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有