Skip to content

Commit 6fd059a

Browse files
chore: remove accidentally-tracked runtime artifacts in impl/rust-cli/ (#75)
Two files slipped into the tree via #73 (cargo fmt sweep agent) when a prior `vsh` test session left runtime state behind that `git add -A` captured: - `impl/rust-cli/$FILE` (5 bytes, literal "test\n") — the result of an unescaped `> $FILE` shell redirection - `impl/rust-cli/.vsh_state.json` (414 bytes) — the vsh transaction history from that test session Add `.vsh_state.json` and `$FILE` to root `.gitignore` so this can't recur. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f2d156f commit 6fd059a

3 files changed

Lines changed: 5 additions & 18 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,8 @@ zig-out/
107107
# Crash recovery artifacts
108108
ai-cli-crash-capture/
109109
.cache/
110+
111+
# vsh runtime state (sandbox transcript)
112+
.vsh_state.json
113+
# Accidental shell-redirect output from `> $FILE` testing
114+
$FILE

impl/rust-cli/$FILE

Lines changed: 0 additions & 1 deletion
This file was deleted.

impl/rust-cli/.vsh_state.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)