fix(status): simplify footer guidance

This commit is contained in:
Peter Steinberger
2026-01-11 03:44:22 +01:00
parent 9a4021a277
commit 480bf916e2
4 changed files with 13 additions and 13 deletions

View File

@@ -154,7 +154,7 @@ describe("statusCommand", () => {
expect(logs.some((l) => l.includes("LaunchAgent"))).toBe(true);
expect(logs.some((l) => l.includes("FAQ:"))).toBe(true);
expect(logs.some((l) => l.includes("Troubleshooting:"))).toBe(true);
expect(logs.some((l) => l.includes("More:"))).toBe(true);
expect(logs.some((l) => l.includes("Next steps:"))).toBe(true);
expect(logs.some((l) => l.includes("clawdbot status --all"))).toBe(true);
});

View File

@@ -1029,17 +1029,12 @@ export async function statusCommand(
runtime.log("FAQ: https://docs.clawd.bot/faq");
runtime.log("Troubleshooting: https://docs.clawd.bot/troubleshooting");
runtime.log("");
runtime.log("More:");
runtime.log(" clawdbot status --all # pasteable report (redacts tokens)");
runtime.log(" clawdbot logs --follow # live logs");
if (!gatewayReachable) {
runtime.log(
" clawdbot gateway status # check which gateway youre targeting",
);
runtime.log(
" clawdbot daemon status # supervisor state (launchd/systemd/…)",
);
runtime.log("Next steps:");
runtime.log(" Need to share? clawdbot status --all");
runtime.log(" Need to debug live? clawdbot logs --follow");
if (gatewayReachable) {
runtime.log(" Need to test providers? clawdbot status --deep");
} else {
runtime.log(" clawdbot status --deep # gateway health + provider probes");
runtime.log(" Fix reachability first: clawdbot gateway status");
}
}