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' - 07
git checkout -b feature - 08
echo 'Feature code' > feature.txt - 09
git add feature.txt - 10
git commit -m 'Add feature' - 11
git checkout main
Prompt
Run the command to create a git worktree for the 'feature' branch at path '../feature-wt' (relative to the repo). Output ONLY the git worktree command, nothing else.
Expected
git worktree add ../feature-wt feature
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git worktree add ../feature-wt feature
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../feature-wt feature"
}
git worktree add ../feature-wt feature
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) { "command": "git worktree add ../feature-wt feature"}
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../feature-wt feature"}
git worktree add '../feature-wt' feature
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../feature-wt feature"
}
git worktree add ../feature-wt feature
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../feature-wt feature"}
git worktree add ../feature-wt feature
git worktree add ../feature-wt feature
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../feature-wt feature"}
git worktree add --force ../feature-wt refs/heads/feature
JSON Schema
Structured Output
(raw) {
"command": "git worktree add --force ../feature-wt refs/heads/feature"
}
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git -C ../feature-wt branch --show-current', 'contains': 'feature'}]
```bash
git worktree add ../feature-wt feature
```
Failure: Failed assertions: [{'type': 'dir_exists', 'path': '../feature-wt'}, {'type': 'branch_exists', 'name': 'feature', 'in_worktree': '../feature-wt'}, {'type': 'file_content', 'path': '../feature-wt/feature.txt', 'value': 'Feature code'}]