From 079637eed0c5e1b4820a7e1d4e581b41434bb041 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 8 Mar 2026 18:53:40 -0700 Subject: [PATCH 1/4] increase id column so full id visible --- src/commands/benchmark-job/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/benchmark-job/list.ts b/src/commands/benchmark-job/list.ts index f0a8d233..0beba1da 100644 --- a/src/commands/benchmark-job/list.ts +++ b/src/commands/benchmark-job/list.ts @@ -106,7 +106,7 @@ function colorState(state: string): string { // --- Table printing --- // Fixed column widths (excluding NAME which is dynamic) -const COL_ID = 16; +const COL_ID = 30; const COL_STARTED = 10; const COL_STATUS = 14; const COL_DONE = 9; From 289af8410ebfbfeafc5525f40cde051fdff607df Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 8 Mar 2026 19:15:41 -0700 Subject: [PATCH 2/4] remove default timeout for agent timeout --- src/commands/benchmark-job/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/benchmark-job/run.ts b/src/commands/benchmark-job/run.ts index 58e4ce10..6493d358 100644 --- a/src/commands/benchmark-job/run.ts +++ b/src/commands/benchmark-job/run.ts @@ -326,7 +326,7 @@ export async function runBenchmarkJob(options: RunOptions) { const agentConfigs = parsedAgents.map((agent) => ({ name: agent.name, modelName: agent.model, - timeoutSeconds: options.timeout ? parseInt(options.timeout, 10) : 1800, + timeoutSeconds: options.timeout ? parseInt(options.timeout, 10) : undefined, environmentVariables: Object.keys(providedEnvVars).length > 0 ? providedEnvVars : undefined, secrets, From 9deab522609427b9d7600d9612fada5567610a23 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 8 Mar 2026 19:16:03 -0700 Subject: [PATCH 3/4] cp --- src/commands/benchmark-job/run.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/benchmark-job/run.ts b/src/commands/benchmark-job/run.ts index 6493d358..1a228191 100644 --- a/src/commands/benchmark-job/run.ts +++ b/src/commands/benchmark-job/run.ts @@ -326,7 +326,9 @@ export async function runBenchmarkJob(options: RunOptions) { const agentConfigs = parsedAgents.map((agent) => ({ name: agent.name, modelName: agent.model, - timeoutSeconds: options.timeout ? parseInt(options.timeout, 10) : undefined, + timeoutSeconds: options.timeout + ? parseInt(options.timeout, 10) + : undefined, environmentVariables: Object.keys(providedEnvVars).length > 0 ? providedEnvVars : undefined, secrets, From ff5227cd158e61ceb173e8cde28e2301d8e6c126 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 8 Mar 2026 19:17:18 -0700 Subject: [PATCH 4/4] cp --- src/commands/benchmark-job/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/benchmark-job/list.ts b/src/commands/benchmark-job/list.ts index 0beba1da..f0a8d233 100644 --- a/src/commands/benchmark-job/list.ts +++ b/src/commands/benchmark-job/list.ts @@ -106,7 +106,7 @@ function colorState(state: string): string { // --- Table printing --- // Fixed column widths (excluding NAME which is dynamic) -const COL_ID = 30; +const COL_ID = 16; const COL_STARTED = 10; const COL_STATUS = 14; const COL_DONE = 9;