From 3403ddcc6e379aaaa25799f5f8a0a4c0e023b333 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Wed, 18 Mar 2026 14:44:49 -0300 Subject: [PATCH] fix: login password hint + Windows CLI healthcheck + i18n key - fix(ux): add default password hint on login page for first-time users (#437) The fallback password (123456) is now shown as a hint below the password input so users don't get locked out during initial setup. - fix(cli): add shell:true to spawn on Windows so .cmd wrappers are resolved correctly via PATHEXT (#447). Claude, opencode, and other npm-installed CLIs show as 'not runnable' on Windows even when installed because spawn() cannot find .cmd files without shell:true. - i18n: add defaultPasswordHint key to en.json auth namespace --- src/app/login/page.tsx | 1 + src/i18n/messages/en.json | 3 ++- src/shared/services/cliRuntime.ts | 9 ++++++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index f5cb661c31..3b51b6f3b7 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -203,6 +203,7 @@ export default function LoginPage() { {error}

)} +

{t("defaultPasswordHint")}