Problem
The handoff-system redesign moved old docs/session-reports/* and capital docs/HANDOFF.md into the new docs/handoff/ tree with plain mv. Those paths were git-tracked, so git status shows them as deleted while the content lives safely inside the (git-ignored) tree. AGENTS.md is also modified. Repo sits dirty on main.
Decision needed
- Option A — track the tree: whitelist
docs/handoff/ in .gitignore, commit so old deletions record as renames; tree becomes shareable.
- Option B — local-only:
git rm --cached the stale deleted paths to clean git status, keep the tree out of git.
Action
- Pick A or B (see
docs/handoff/_meta/LATER-TASKS.md).
- Branch off
main, commit the resolution (do NOT git checkout the deleted paths — restores duplicates).
- Commit the
AGENTS.md change with a clear message.
Acceptance
Notes
Do NOT push directly to main/master — feature branch → PR.
Problem
The handoff-system redesign moved old
docs/session-reports/*and capitaldocs/HANDOFF.mdinto the newdocs/handoff/tree with plainmv. Those paths were git-tracked, sogit statusshows them as deleted while the content lives safely inside the (git-ignored) tree.AGENTS.mdis also modified. Repo sits dirty onmain.Decision needed
docs/handoff/in.gitignore, commit so old deletions record as renames; tree becomes shareable.git rm --cachedthe stale deleted paths to cleangit status, keep the tree out of git.Action
docs/handoff/_meta/LATER-TASKS.md).main, commit the resolution (do NOTgit checkoutthe deleted paths — restores duplicates).AGENTS.mdchange with a clear message.Acceptance
git statusclean onmainNotes
Do NOT push directly to main/master — feature branch → PR.