From 774283468b4acec41710cebce44eb72815ae9779 Mon Sep 17 00:00:00 2001 From: Christopher Tso Date: Wed, 1 Apr 2026 02:06:08 +0000 Subject: [PATCH] feat(cli): add `serve` as alias for `studio` subcommand Both `agentv serve` and `agentv studio` now start the same Studio dashboard. The `serve` alias better communicates "long-running HTTP server" in deployment contexts (Dockerfile CMD, Kubernetes). Closes #889 Co-Authored-By: Claude Opus 4.6 --- apps/cli/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index 6ae8fbec..a1dea9d5 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -32,6 +32,7 @@ export const app = subcommands({ pipeline: pipelineCommand, results: resultsCommand, self: selfCommand, + serve: resultsServeCommand, studio: resultsServeCommand, trace: traceCommand, transpile: transpileCommand, @@ -60,6 +61,7 @@ const TOP_LEVEL_COMMANDS = new Set([ 'pipeline', 'results', 'self', + 'serve', 'studio', 'trace', 'transpile',