Standalone evaluation layer for CodingBench cases.
- Input: public PRD + Interface Contract (+ optional Hardware Requirements)
- Workspace: empty
/appfor the agent to implement from scratch - Judge: hidden acceptance suite; binary reward
1.0/0.0
| Runner | When to use |
|---|---|
cbrun |
Recommended standalone runner. See cbrun/README.md. |
| Harbor adapter | Optional path on Harbor. |
Cases are discovered from cases/<case_id>/source/manifest.json.
coding-bench-harbor --all builds only the released suite listed in
coding_bench_harbor/adapter.py (RELEASED_CASE_IDS).
cd benchmark
pip install -e .
# Optional:
pip install -e ".[harbor]"cd local_agents
cp codex.env.example codex.env # fill API key + MODEL
cd ..
./local_agents/run_smoke.sh codex
set -a && source local_agents/codex.env && set +a
cbrun --case case010 --backend codex --model "$MODEL"Supported backends: codex, opencode, claude-code.
coding-bench-harbor --case-id case010 --force
# or
coding-bench-harbor --all --forceTasks are written to benchmark/output/<case_id>/.
Agent configs (edit model / env first):
export OPENAI_API_KEY=...
harbor run --config configs/agents/codex.yaml
# harbor run --config configs/agents/opencode.yaml
# harbor run --config configs/agents/claude-code.yamlThe adapter refuses to build if the public spec still contains blacklisted terms
from source/manifest.json (sensitive_terms). Pass --allow-leakage to
downgrade that to a warning.
| Case asset | Harbor task path | Visible to agent? |
|---|---|---|
public/Full_PRD.md |
instruction.md + environment/prd/Full_PRD.md |
yes |
public/Interface_Contract.md |
instruction.md + environment/Interface_Contract.md |
yes |
public/Hardware_Requirements.md |
environment/Hardware_Requirements.md |
yes |
milestones/final/ acceptance |
tests/final/ |
no (judge only) |
After the agent exits, final_judge.py runs run_acceptance.sh when present,
otherwise the command from test_manifest.json, and writes
reward.{txt,json} + final_report.json.
coding-bench-harbor --case-id case010 --force
# Point FINAL_WORKSPACE at a workspace mirroring /app, then invoke final_judge
# as documented in coding_bench_harbor/final_judge.py.cbrun/README.md— images, limits, artifactslocal_agents/README.md— env templates & smoke tests- Root
README.md— product overview & quick start