From 2ee988ccc04c09ceb6de7cdb75c94114e85d01b9 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sat, 14 Mar 2026 00:39:22 +0000 Subject: feat: add agent selector to UI and support direct agent assignment - Added an agent selector (Auto, Claude, Gemini) to the Start Next Task button. - Updated the backend to pass query parameters as environment variables to scripts. - Modified the executor pool to skip classification when a specific agent is requested. - Added --agent flag to claudomator start command. - Updated tests to cover the new functionality. --- internal/cli/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/cli/create.go') diff --git a/internal/cli/create.go b/internal/cli/create.go index e5435d3..396cd77 100644 --- a/internal/cli/create.go +++ b/internal/cli/create.go @@ -88,7 +88,7 @@ func createTask(serverURL, name, instructions, workingDir, model, agentType, par fmt.Printf("Created task %s\n", id) if autoStart { - return startTask(serverURL, id) + return startTask(serverURL, id, agentType) } return nil } -- cgit v1.2.3