Files
poimen/.gitignore
T
Agent Harness (T0.3 follow-up) a239effb78 gitignore: remove over-broad tests/fixtures/ ignore (blocks T0.3 committed-fixture invariant)
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.
2026-08-20 01:09:47 +00:00

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