From 51016511edd0023fc1959067e0dce6917f02e7aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Feb 2026 12:14:10 +0000 Subject: [PATCH 1/2] Initial plan From a3f904c51f2739d3c383c56bea9aa9188df4ff1e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Feb 2026 12:21:13 +0000 Subject: [PATCH 2/2] Fix API URL in startup message to show /api/v1 Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- packages/cli/src/utils/format.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/utils/format.ts b/packages/cli/src/utils/format.ts index b317e50dcb..5fbfea932c 100644 --- a/packages/cli/src/utils/format.ts +++ b/packages/cli/src/utils/format.ts @@ -188,7 +188,7 @@ export function printServerReady(opts: ServerReadyOptions) { console.log(''); console.log(chalk.bold.green(' ✓ Server is ready')); console.log(''); - console.log(chalk.cyan(' ➜') + chalk.bold(' API: ') + chalk.cyan(base + '/')); + console.log(chalk.cyan(' ➜') + chalk.bold(' API: ') + chalk.cyan(base + '/api/v1')); if (opts.uiEnabled && opts.studioPath) { console.log(chalk.cyan(' ➜') + chalk.bold(' Studio: ') + chalk.cyan(base + opts.studioPath + '/')); }