namanvats commited on
Commit
473705d
·
verified ·
1 Parent(s): 667e3ea

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +52 -0
  2. trials.csv +0 -0
  3. trials.jsonl +0 -0
  4. variant_summary.csv +7 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - agent-benchmark
5
+ - code-agents
6
+ - llm-evaluation
7
+ - openhands
8
+ - goose
9
+ - harbor
10
+ ---
11
+
12
+ # Harbor Goose vs OpenHands Benchmark
13
+
14
+ Trial-level results from a small controlled study comparing two agent harnesses —
15
+ [Goose](https://github.com/block/goose) and [OpenHands-SDK](https://github.com/All-Hands-AI/OpenHands) —
16
+ on a frozen 40-task [Harbor](https://github.com/harbor-framework/harbor) Terminal-Bench-Pro slice.
17
+
18
+ All runs used `minimax/minimax-m2.5` via OpenRouter with Daytona as the sandbox backend.
19
+
20
+ ## Key Findings
21
+
22
+ - Cutting turns 100→60: Goose improved (0.45→0.525), OpenHands dropped (0.575→0.500) — **opposite directions**
23
+ - The tweaked prompt fully recovered OpenHands' loss at 60 turns; had no effect on Goose
24
+ - At their best both harnesses reach **0.575** pass rate
25
+ - OpenHands used **35× more tokens** per trial (~500K vs ~14K) to reach the same score
26
+
27
+ ## Files
28
+
29
+ | File | Description |
30
+ |---|---|
31
+ | `trials.csv` | One row per trial (240 rows across 6 variants) |
32
+ | `trials.jsonl` | Same data in JSONL format |
33
+ | `variant_summary.csv` | Aggregated pass rate, tokens, timing per variant |
34
+
35
+ ## Variants
36
+
37
+ | Variant | Harness | Turns | Prompt | Pass Rate |
38
+ |---|---|---|---|---|
39
+ | goose-base | Goose | 100 | base | 0.450 |
40
+ | goose-base-60 | Goose | 60 | base | 0.525 |
41
+ | goose-tweaked | Goose | 60 | tweaked | 0.500 |
42
+ | openhands-sdk-base | OpenHands-SDK | 100 | base | 0.575 |
43
+ | openhands-sdk-base-60 | OpenHands-SDK | 60 | base | 0.500 |
44
+ | openhands-sdk-tweaked | OpenHands-SDK | 60 | tweaked | 0.575 |
45
+
46
+ ## Caveats
47
+
48
+ n=40 tasks. A 2–3 task swing is within run-to-run variance. No statistical significance testing performed.
49
+
50
+ ## Full Code & Configs
51
+
52
+ GitHub: https://github.com/namanvats/harness-experiments-harbor
trials.csv ADDED
The diff for this file is too large to render. See raw diff
 
trials.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
variant_summary.csv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ harness_way,trials,correct,failed,pass_rate,avg_reward,turn_limit_values,avg_turn_limit,sum_input_tokens,sum_output_tokens,sum_total_tokens,rows_with_total_tokens,avg_input_tokens,avg_output_tokens,avg_total_tokens,estimated_token_rows,avg_trial_seconds,avg_agent_execution_seconds
2
+ goose-base,40,18,22,0.45,0.461538,100,100.0,452163,193783,645946,35,12918.94,5536.66,18455.6,35,498.87,461.35
3
+ goose-base-60,40,21,19,0.525,0.538462,60,60.0,367987,157710,525697,37,9945.59,4262.43,14208.03,37,362.4,299.77
4
+ goose-tweaked,40,20,20,0.5,0.512821,60,60.0,360667,154574,515241,37,9747.76,4177.68,13925.43,37,349.21,279.95
5
+ openhands-sdk-base,40,23,17,0.575,0.605263,100,100.0,16620443,270059,16890502,33,503649.79,8183.61,511833.39,0,501.03,439.2
6
+ openhands-sdk-base-60,40,20,20,0.5,0.526316,60,60.0,17756494,287932,18044426,36,493235.94,7998.11,501234.06,0,389.76,325.05
7
+ openhands-sdk-tweaked,40,23,17,0.575,0.605263,60,60.0,20845914,358187,21204101,37,563403.08,9680.73,573083.81,0,336.42,278.16