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
printf '*.log node_modules/ ' > .gitignore - 05
git add .gitignore - 06
git commit -m 'Add gitignore' - 07
echo 'data' > app.log - 08
mkdir -p node_modules/pkg - 09
echo '{}' > node_modules/pkg/index.js - 10
echo 'untracked' > untracked.txt
Prompt
Remove only ignored files and directories while keeping untracked files. Output ONLY the git command, nothing else.
Expected
git clean -f -X -d
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git clean -f -d -X
git clean -fdX
JSON Schema
Structured Output
(raw) {"command": "git clean -fdX"}
git clean -X -fd .
git clean -Xfd
JSON Schema
Structured Output
(raw) {
"command": "git clean -Xfd"
}
git clean -X -f app.log node_modules/pkg/index.js
git clean -fX
JSON Schema
Structured Output
(raw) {
"command": "git clean -fX"
}
Failure: Failed assertions: [{'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -X -f
Failure: Failed assertions: [{'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -n
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
```bash
git clean -fdX
```
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -X -d
JSON Schema
Structured Output
(raw) {"command": "git clean -X -d"}
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -Xn
JSON Schema
Structured Output
(raw) {"command": "git clean -Xn"}
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -X
JSON Schema
Structured Output
(raw) {
"command": "git clean -X"
}
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -d --exclude='!' -i
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]
git clean -Xdn
JSON Schema
Structured Output
(raw) {"command": "git clean -Xdn"}
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'app.log'}, {'type': 'dir_not_exists', 'path': 'node_modules'}]