Documentation
README
文件规划系统
像 Manus 一样工作:用持久化的 Markdown 文件作为你的「磁盘工作记忆」。
第一步:恢复上下文(v2.2.0)
在做任何事之前,检查规划文件是否存在并读取它们:
- 如果
task_plan.md存在,立即读取task_plan.md、progress.md和findings.md。 - 然后检查上一个会话是否有未同步的上下文:
# Linux/macOS
SKILL_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/skills/planning-with-files-zh}"
$(command -v python3 || command -v python) "${SKILL_DIR}/scripts/session-catchup.py" "$(pwd)"
# Windows PowerShell
& (Get-Command python -ErrorAction SilentlyContinue).Source "$env:USERPROFILE\.claude\skills\planning-with-files-zh\scripts\session-catchup.py" (Get-Location)
如果恢复报告显示有未同步的上下文:
- 运行
git diff --stat查看实际代码变更 - 读取当前规划文件
- 根据恢复报告和 git diff 更新规划文件
- 然后继续任务
重要:文件存放位置
- 模板在
${CLAUDE_PLUGIN_ROOT}/templates/中 - 你的规划文件放在你的项目目录中
This is the opening of the README. Read the full README on GitHub.