Remove untracked files with interactive mode confirmation
Tests ability to use interactive mode confirmation with git clean -i. Evaluates interactive-cleanup workflow knowledge.
Baseline Repository
These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.
- 01
git init - 02
git config user.email 'test@test.com' - 03
git config user.name 'Test User' - 04
echo 'tracked' > tracked.txt - 05
git add tracked.txt - 06
git commit -m 'Initial commit' - 07
echo 'junk1' > junk1.txt - 08
echo 'junk2' > junk2.txt - 09
mkdir -p builddir - 10
echo 'obj' > builddir/out.o
Prompt
Remove all untracked files and directories non-interactively (force mode). Output ONLY the git command, nothing else.
Expected
git clean -f -d
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git clean -fd
git clean -fd
JSON Schema
Structured Output
(raw) {"command": "git clean -fd"}
git clean -fd
git clean -fd
JSON Schema
Structured Output
(raw) {
"command": "git clean -fd"
}
git clean -fd
JSON Schema
Structured Output
(raw) {"command": "git clean -fd"}
git clean -fd
git clean -fd
JSON Schema
Structured Output
(raw) {
"command": "git clean -fd"
}
git clean -fdx
git clean -fd --force
JSON Schema
Structured Output
(raw) {"command":"git clean -fd --force"}
git clean -fd
git clean -fd
JSON Schema
Structured Output
(raw) {"command": "git clean -fd"}
git clean -fd
git clean -fd
JSON Schema
Structured Output
(raw) {"command": "git clean -fd"}
```bash
git clean -fd
```
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'junk1.txt'}, {'type': 'file_not_exists', 'path': 'junk2.txt'}, {'type': 'dir_not_exists', 'path': 'builddir'}]