Skip to content

Commit 433ee8b

Browse files
perf(server): port #13698 to V2 — register the trace CLI command
Main added `t3 trace` to the command list in bin.ts. V2 moved that list to binCli.ts so ACP helper subcommands start without loading the full CLI, so the merge left traceCommand unregistered (knip flagged it as an unused export). Register it in binCli.ts. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
1 parent e42ccbd commit 433ee8b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

‎apps/server/src/binCli.ts‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { sshHelperCommand } from "./cli/sshHelper.ts";
2424
import { serviceCommand } from "./cli/service.ts";
2525
import { servicePreflightCommand } from "./cli/servicePreflight.ts";
2626
import { themeCommand } from "./cli/theme.ts";
27+
import { traceCommand } from "./cli/trace.ts";
2728
import { triageCommand } from "./cli/triage.ts";
2829

2930
const CliRuntimeLayer = Layer.mergeAll(NodeServices.layer, NetService.layer);
@@ -74,6 +75,7 @@ export const makeCli = ({ cloudEnabled = hasCloudPublicConfig } = {}) =>
7475

7576
servicePreflightCommand,
7677
themeCommand,
78+
traceCommand,
7779
triageCommand,
7880
cloudEnabled ? connectCommand : connectUnavailableCommand,
7981
]),

0 commit comments

Comments
 (0)