fix(cli): improve daemon restart feedback

- runDaemonRestart() now returns Promise<boolean> indicating success
- update command only shows success when restart actually happened
- Fixes missing reasoningLevel type in compactEmbeddedPiSession

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Carl Ulsøe Christensen <carlulsoe@users.noreply.github.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Kit
2026-01-10 22:38:01 +01:00
committed by Peter Steinberger
parent 2a86e40730
commit f699dc3777
3 changed files with 13 additions and 6 deletions

View File

@@ -993,7 +993,12 @@ export async function runDaemonStop() {
}
}
export async function runDaemonRestart() {
/**
* Restart the gateway daemon service.
* @returns `true` if restart succeeded, `false` if the service was not loaded.
* Throws/exits on check or restart failures.
*/
export async function runDaemonRestart(): Promise<boolean> {
const service = resolveGatewayService();
let loaded = false;
try {
@@ -1001,20 +1006,22 @@ export async function runDaemonRestart() {
} catch (err) {
defaultRuntime.error(`Gateway service check failed: ${String(err)}`);
defaultRuntime.exit(1);
return;
return false;
}
if (!loaded) {
defaultRuntime.log(`Gateway service ${service.notLoadedText}.`);
for (const hint of renderGatewayServiceStartHints()) {
defaultRuntime.log(`Start with: ${hint}`);
}
return;
return false;
}
try {
await service.restart({ stdout: process.stdout });
return true;
} catch (err) {
defaultRuntime.error(`Gateway restart failed: ${String(err)}`);
defaultRuntime.exit(1);
return false;
}
}