Run the Basic Checks
The public repository currently has no unified project test suite, no declaredpytest test workflow, and no CI test job. The checked-in pull-request workflow runs pre-commit only. Do not cite a generic pytest command as repository validation unless your change adds an actual test target and you run that exact target. This baseline does not lower the correctness requirement: combine the existing static checks with component discovery, configuration inspection, focused deterministic checks where available, and representative single-task execution.
During development, run pre-commit on the files you changed:
Validate the Changed Surface
First inspect components and configuration from the installed revision instead of relying on a remembered component list:conf dictionaries and Recipe classes are not supported by config docs; validate their documented keys against source and runtime output instead.
To inspect merged configuration without starting an evaluation, use:
agentcompass run has no --dry-run option. An orchestration dry run validates and prints resolved requests but does not load Benchmark tasks, open Environments, execute Harnesses, evaluate results, or prove cleanup. It cannot replace a single-task smoke run.
Next run one known task. Use a stable task ID from a locally available public Benchmark and minimize unrelated variability:
--max-retries 0 for initial diagnosis so a retry does not hide the first failure. Redact credentials and private endpoint details before sharing the command.
Inspect the resulting run_info.json, params.json, details/, summary.md, and run log as applicable. A process exit alone is insufficient evidence: verify the task ID, resolved execution plan, status, error category, final answer or artifacts, Benchmark score, cleanup events, and denominator represented by the summary.
Finally, add checks for behavior unique to the changed surface:
For lifecycle or compatibility changes, also test the relevant boundary: optional versus required input, a valid zero score versus evaluator failure, or timeout and cancellation followed by cleanup. Keep Harness, Environment, and Model failures distinguishable in persisted status and errors instead of normalizing them into one generic exception. Expand to other public Environment combinations only when a shared runtime change affects them.
Before intentionally rewriting a summary, first run:
Record Validation Evidence
For every reported check, include:- the exact redacted command, tested revision, relevant dependency or provider versions, and selected public Benchmark, task ID, Harness, Environment, and Model protocol;
- the pass/fail outcome and important output fields or artifact paths;
- any checks not run, with the concrete reason and effect on risk assessment;
- any score comparison, with matching task coverage, settings, and denominator.
