MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / main

Function main

evals/buffbench/main.ts:5–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import { runBuffBench } from './run-buffbench'
4
5async function main() {
6 const saveTraces = process.argv.includes('--save-traces')
7
8 // Compare Codebuff agents against external CLI agents
9 // Use 'external:claude' for Claude Code CLI
10 // Use 'external:codex' for OpenAI Codex CLI
11 // Use 'external:opencode' for OpenCode CLI
12 await runBuffBench({
13 evalDataPaths: [path.join(__dirname, 'eval-codebuff.json')],
14 agents: ['base2-free-evals'],
15 taskConcurrency: 6,
16 saveTraces,
17 })
18
19 process.exit(0)
20}
21
22if (import.meta.main) {
23 main().catch((error) => {

Callers 1

main.tsFile · 0.70

Calls 1

runBuffBenchFunction · 0.90

Tested by

no test coverage detected