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-zht}"
$(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-zht\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.