fix(onboard): keep agent names on guided setup (#126365)

This commit is contained in:
Peter Steinberger
2026-08-19 10:07:30 -07:00
committed by GitHub
parent 0abc5130c9
commit 4bc6853a32
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -959,6 +959,7 @@ describe("setupWizardCommand", () => {
});
it.each([
["--agent-name", { agentName: "robby" }],
["--tui", { tui: true }],
["--skip-ui", { skipUi: true }],
])("keeps %s on guided onboarding", async (_label, opts) => {
+1 -1
View File
@@ -423,7 +423,7 @@ const GUIDED_SAFE_ONBOARD_KEYS = new Set([
"reset",
"resetScope",
"nonInteractive",
"classic",
"agentName",
"tui",
"skipUi",
]);