Combined flags: case-insensitive with line numbers
Tests ability to combine flags (case-insensitive + line numbers) with git grep -in. Evaluates multi-flag composition.
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
mkdir -p docs - 05
printf '# README This project uses Python. ## Setup Install PYTHON 3.10 or higher. The python interpreter must be in your PATH. ## Usage Run the main script with python main.py. ' > docs/README.md - 06
git add . - 07
git commit -m 'Add readme' - 08
echo 'git grep -n -i python' > .grep_command - 09
git add .grep_command - 10
git commit -m 'Add grep sentinel'
Prompt
Here is the output of a git grep -n -i command that searches case-insensitively with line numbers. How many lines contain 'python' in any capitalization? Output ONLY the number, nothing else.
Expected
4
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
4
4
JSON Schema
Structured Output
(raw) { "count": 4 }
4
4
JSON Schema
Structured Output
(raw) { "count": 4 }
4
JSON Schema
Structured Output
(raw) {"count": 4}
4
4
JSON Schema
Structured Output
(raw) {
"count": 4
}
4
4
JSON Schema
Structured Output
(raw) { "count": 4 }
4
4
JSON Schema
Structured Output
(raw) {"count": 4}
4
4
JSON Schema
Structured Output
(raw) {
"count": 4
}