feat: standardize agent evaluation framework - #3403
Open
TomCC7 wants to merge 39 commits into
Open
Conversation
Codecov Report❌ Patch coverage is @@ Coverage Diff @@
## cc/feat/frozen-qa-eval #3403 +/- ##
==========================================================
- Coverage 76.26% 75.07% -1.19%
==========================================================
Files 1211 1219 +8
Lines 116918 120782 +3864
Branches 10512 11043 +531
==========================================================
+ Hits 89164 90677 +1513
- Misses 24670 26991 +2321
- Partials 3084 3114 +30
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 45 files with indirect coverage changes 🚀 New features to boost your workflow:
|
…dized # Conflicts: # dimos/agents/code_policy_server.py # dimos/benchmark/short_horizon_qa/cases/demo_go2_hongkong_office-room-count-smoke/README.md # dimos/benchmark/short_horizon_qa/models.py # dimos/benchmark/short_horizon_qa/test_hongkong_eval.py # dimos/cli/eval.py # dimos/cli/test_eval.py # docs/capabilities/agents/evaluation.md # docs/development/testing.md # packages/pi-code-policy-extension/src/python-exec.ts # packages/pi-code-policy-extension/test/python-exec.test.ts # pyproject.toml # uv.lock
TomCC7
marked this pull request as ready for review
August 8, 2026 17:01
TomCC7
requested review from
Dreamsorcerer,
leshy,
mustafab0,
paul-nechifor and
spomichter
as code owners
August 8, 2026 17:01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution path
Problem
The frozen QA evaluator couples run orchestration, the Pi/CodePolicy runtime, and benchmark-specific scoring. That shape makes new evaluators and third-party benchmarks adopt DimOS scoring instead of keeping their native result semantics.
Solution
Evaluationplugin seam with immutable run specifications, reports, artifacts, and entry-point discovery throughdimos.evaluations.dimos.benchmark.agent_evalpath instead of retaining a compatibility layer.How to Test
Run an evaluation:
dimos eval run dimos/benchmark/short_horizon_qa/cases/demo_go2_hongkong_office-room-count-smoke/run.json --output /tmp/dimos-eval-report.jsonValidation completed:
./bin/pytest-fast -q --tb=short— 3,787 passed, 31 skippedAI assistance
Codex with GPT-5 helped explore the design, implement the change, and run validation. The author reviewed the resulting architecture and code throughout the design discussion.
Checklist