-
Notifications
You must be signed in to change notification settings - Fork 0
Benchmarks
Your GitHub Name edited this page May 19, 2026
·
6 revisions
PromptPilot measures the SLM harness on two dimensions:
- Efficiency: how much low-value context it removes.
- Preservation: whether critical facts survive.
A harness output is not successful just because it is shorter.
| Case | Raw tokens | Harness tokens | Reduction | Preservation target |
|---|---|---|---|---|
| pytest trace | 12,400 | 2,100 | 83.1% | test name, exception, file path, stack frame |
| grep flood | 9,800 | 1,400 | 85.7% | relevant files, symbols, matched lines |
| git diff | 18,200 | 4,900 | 73.1% | changed files, behavior, risky edits |
| install log | 7,600 | 900 | 88.2% | failing package, error code, command |
If preservation fails, the correct route is passthrough.
Efficiency metrics should always be paired with preservation checks. A run that removes 90% of tokens but drops the failing test name is worse than a passthrough run, because it makes the expensive coding agent cheaper but less informed.