| name | eval-result |
| description | Use inside the TDD skill evaluation harness to package coder-agent output into a uniform result bundle for evaluator scoring. |
Eval Result
Purpose
Return factual, ordered evidence from a coder worktree so skill-eval can score the run without relying on unsupported self-report.
Bundle Contract
Return a concise result bundle:
agent_role: junior | mid | senior
model_id: string
workspace: string
task_status: pass | partial | fail
commands:
- phase: RED | GREEN | REFACTOR | VERIFY
command: string
result: pass | fail
summary: string
changed_files:
- path: string
purpose: test | production | config | docs
evidence_notes:
- string
known_gaps:
- string
Rules
- Report facts from artifacts and command output only.
- Preserve command order.
- Do not claim TDD compliance unless RED/GREEN/REFACTOR evidence supports it.
- Record gaps explicitly instead of smoothing them over.