feat: enrich hwlab rollout briefs

This commit is contained in:
Codex
2026-05-27 09:24:42 +00:00
parent 8b03898bc0
commit 18f49922ba
7 changed files with 1074 additions and 9 deletions
+6
View File
@@ -20,6 +20,7 @@ import { runDevEnvCommand } from "./src/dev-env";
import { runArtifactRegistryCommand } from "./src/artifact-registry";
import { runAuthBrokerCommand } from "./src/auth-broker";
import { runGhCommand } from "./src/gh";
import { isGhContentRoute, runGhContentRoute } from "./src/gh-route";
import { runCommanderCommand } from "./src/commander";
import { isHelpToken, rootHelp, serverHelp, sshHelp, staticNamespaceHelp } from "./src/help";
import { runServerCleanupCommand } from "./src/server-cleanup";
@@ -205,6 +206,11 @@ async function main(): Promise<void> {
return;
}
if (top === "ssh" && isGhContentRoute(sub)) {
process.exitCode = await runGhContentRoute(sub ?? "", args.slice(2));
return;
}
if (top === "check" && isHelpToken(sub)) {
emitJson(commandName, checkHelp());
return;