Merge pull request #9455 from Kilo-Org/fix/cli-sync-ready-debug-leftover

fix(cli): fix slow CLI startup
This commit is contained in:
Marian Alexandru Alecu
2026-04-24 10:27:54 +03:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
---
"@kilocode/cli": patch
---
Fix a 1-2 second startup delay before home content (agents, news, tips) appears in the TUI.
@@ -630,7 +630,7 @@ export const { use: useSync, provider: SyncProvider } = createSimpleContext({
return store.status
},
get ready() {
return true
// return true // kilocode_change - upstream #23037 left this debug path enabled; keep it commented so future merges do not restore eager ready state.
if (process.env.KILO_FAST_BOOT) return true
return store.status !== "loading"
},