eval-banana

CLI Reference

The CLI is available under two equivalent names, eb and eval-banana. It exposes four commands: init, run, list, and validate.

eb init

Create the project config at .eval-banana/config.toml.

eb init            # create config; refuses to overwrite an existing file
eb init --force    # overwrite an existing config
OptionDescription
--forceOverwrite an existing .eval-banana/config.toml.

Without --force, running init when a config already exists fails rather than clobbering it.

eb run

Discover every check, run it, write the report, and exit 0 on a passing run or 1 otherwise.

eb run
eb run --check-id readme_explains_install
eb run --tag fast --tag critical
eb run --harness-agent codex --harness-model gpt-5.6-sol
OptionDescription
--check-dir PATHScan only this directory instead of the whole project.
--check-id TEXTRun only the check with this id. Uses relaxed validation — broken YAML in other files does not block it.
--tag TEXTRun only checks carrying this tag. Repeatable; multiple tags are OR'd.
--output-dir TEXTOverride the output directory for this run.
--pass-threshold FLOATOverride the minimum pass ratio (0.0–1.0).
--harness-agent TEXTAgent template used by harness_judge checks.
--harness-model TEXTModel override for the harness agent.
--harness-reasoning-effort TEXTReasoning-effort level for the agent.
--cwd TEXTWorking directory (default .).
--verboseEnable debug logging.

--check-id is the debug escape hatch: it targets one check with relaxed validation, so you can iterate on it in a repo whose other checks are incomplete.

eb list

Discover and print every check without running anything. Output is tab-separated: id, type, description, and the source file path.

eb list
eb list --tag critical
OptionDescription
--check-dir PATHScan only this directory.
--tag TEXTList only checks carrying this tag. Repeatable; OR'd.
--cwd TEXTWorking directory (default .).
--verboseEnable debug logging.

eb validate

Validate every YAML definition without executing anything. Exits non-zero on the first validation error, naming the offending file.

eb validate
OptionDescription
--check-dir PATHValidate only this directory.
--cwd TEXTWorking directory (default .).
--verboseEnable debug logging.

Like run, validate fails fast if any discovered harness_judge check has no harness configured.

Exit codes

CommandExit 0Exit non-zero
runThe run passed (run_passed)The run failed, or a setup error aborted it
listChecks listedDiscovery or load error
validateAll definitions validA validation or setup error
initConfig writtenRefused to overwrite without --force

Because eb run mirrors the run's pass/fail in its exit code, it works directly as a CI gate. See Reports for how the verdict is computed.