Remove untracked directories
Tests ability to remove untracked directories with git clean -fd. Evaluates recursive cleanup awareness.
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
mkdir -p build/output - 08
echo 'artifact' > build/output/app.bin - 09
mkdir -p tmp - 10
echo 'temp' > tmp/cache.txt
Prompt
Remove all untracked files and directories from the working directory. 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
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
JSON Schema
Structured Output
(raw) {
"command": "git clean -fd"
}
git clean -fdx
git clean -d -f
JSON Schema
Structured Output
(raw) {
"command": "git clean -d -f"
}
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': 'dir_not_exists', 'path': 'build'}, {'type': 'dir_not_exists', 'path': 'tmp'}]
(empty output)
Failure: Failed assertions: [{'type': 'dir_not_exists', 'path': 'build'}, {'type': 'dir_not_exists', 'path': 'tmp'}]
Invalid JSON. Output: gitclean -fd
JSON Schema
Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)