| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
coding-agent-eval-harness runs deterministic task fixtures for coding-agent workflows.
Fixture files can be JSON or simple YAML. Each task runs commands in a temporary work directory, then scores expected exit codes, files, and stdout substrings.
{
"name": "demo",
"tasks": [
{
"name": "write file",
"commands": [
{"args": ["python", "-c", "from pathlib import Path; Path('done.txt').write_text('ok')"]}
],
"expect": {
"exit_code": 0,
"files": ["done.txt"],
"file_contains": {"done.txt": "ok"}
}
}
]
}python -m coding_agent_eval_harness fixture.json
python -m coding_agent_eval_harness fixture.yaml --json
python -m coding_agent_eval_harness fixture.json --source ./starter-repoInstalled script:
coding-agent-eval-harness fixture.json --jsonpython -m unittest discover -s testsNo network calls are required by the test suite.
| Back | FazBrowse Home | New Git URL |