TC #53 — Phase 6 :tree no-arg scans cwd in a git repo #53
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Scenario
In a git repo (e.g. aish itself), run
:treewith no arguments.Expected
[aish] project tree: <N> files (git ls-files)where N is roughlygit ls-files --cached --others --exclude-standard | wc -lctx.projectis set to the sorted-paths body (verify by inspecting:to_messages()if exposed, or by observing the [project] block prefix in the next assistant turn's system context)ctx._project_optsis nil (no override given)Acceptance
git ls-files --cached --others --exclude-standardand:treeagree on file count (±0)Verified PASS via autonomous test driver at commit
ac58b19(Phase 6 implement-complete).Scanned 2 files in test repo via
git ls-files --cached --others --exclude-standard; status line[aish] project tree: 2 files (git ls-files)confirmed.Closed by Phase 7 verify pass.