Only main branch
Tests ability to handle a repository with only the main branch (trivial case). Evaluates the minimum-viable-repo edge case.
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 'Hello' > hello.txt - 05
git add hello.txt - 06
git commit -m 'Initial commit'
Prompt
Look at the branches in this repository. Which branches should be deleted because they are fully merged into main? List ONLY the branch names to delete, one per line. If none, respond with 'none'.
Expected
none
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
none
none
none
none
none
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"none"
]
}
none
none
none
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["none"]
}
none
none
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["none"]}
Invalid JSON. Output:
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)
(empty output)
JSON Schema
Structured Output
(raw) { "branches_to_delete": [] }
Failure: Missing: ['none']
(empty output)
JSON Schema
Structured Output
(raw) {"branches_to_delete": []}
Failure: Missing: ['none']
main
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"main"
]
}
Failure: Missing: ['none']
Extra: ['main']