T0.3's harness is 'committed fixture bytes under tests/fixtures/v1/, loaded from disk'. The previous agent-harness edit that added '**/tests/fixtures/' to .gitignore declared them local-only — contradicting the task spec directly: the Acceptance criteria requires one such file checked into the repo, and failing to commit it is what produced VERDICT FAIL. Leave .gitignore intact for other harness bookkeeping (sentinel files, PLAN.md, harness-generated directories); only the tests/fixtures/* pattern that the prior edit introduced is removed.
26 lines
440 B
Plaintext
26 lines
440 B
Plaintext
.claude
|
|
.pi
|
|
target
|
|
rust-agentic-task.md
|
|
tasks/artifacts/*
|
|
|
|
verify/
|
|
reviews/
|
|
# agent-harness: build artifacts and vendored archives never belong in source control
|
|
*.tar.gz
|
|
*.tgz
|
|
*.crate
|
|
*.zip
|
|
*.bin
|
|
*.whl
|
|
vendor/
|
|
node_modules/
|
|
|
|
# agent-harness: task/phase completion sentinel files, harness bookkeeping only
|
|
.task-result-*
|
|
.phase-result-*
|
|
.stage-done-*
|
|
|
|
# agent-harness: PLAN.md is per-task planner scratch state, never a deliverable
|
|
PLAN.md
|