chore(release): 2026.1.11-3

This commit is contained in:
Peter Steinberger
2026-01-11 01:38:07 +01:00
parent 21ba04755b
commit 506cc9e7a1
4 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2026.1.11-3
### Fixes
- CLI/Providers: fix `providers status` tip about `status --deep` requiring a reachable gateway.
- Docs/Troubleshooting: clarify that `clawdbot status --deep` runs gateway health checks (and needs a reachable gateway).
## 2026.1.11-2
### Fixes

View File

@@ -19,7 +19,7 @@ Quick triage commands (in order):
|---|---|---|
| `clawdbot status` | Local summary: OS + update, gateway reachability/mode, daemon, agents/sessions, provider config state | First check, quick overview |
| `clawdbot status --all` | Full local diagnosis (read-only, pasteable, safe-ish) incl. log tail | When you need to share a debug report |
| `clawdbot status --deep` | Runs local provider probes (WhatsApp connect + Telegram/Discord APIs) | When “configured” doesnt mean “working” |
| `clawdbot status --deep` | Runs gateway health checks (incl. provider probes; requires reachable gateway) | When “configured” doesnt mean “working” |
| `clawdbot gateway status` | Gateway discovery + reachability (local + remote targets) | When you suspect youre probing the wrong gateway |
| `clawdbot providers status --probe` | Asks the running gateway for provider status (and optionally probes) | When gateway is reachable but providers misbehave |
| `clawdbot daemon status` | Supervisor state (launchd/systemd/schtasks), runtime PID/exit, last gateway error | When the daemon “looks loaded” but nothing runs |

View File

@@ -1,6 +1,6 @@
{
"name": "clawdbot",
"version": "2026.1.11-2",
"version": "2026.1.11-3",
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
"type": "module",
"main": "dist/index.js",

View File

@@ -198,7 +198,7 @@ export function formatGatewayProvidersStatusLines(
lines.push("");
}
lines.push(
`Tip: ${formatDocsLink("/cli#status", "status --deep")} runs local probes without a gateway.`,
`Tip: ${formatDocsLink("/cli#status", "status --deep")} adds gateway health probes to status output (requires a reachable gateway).`,
);
return lines;
}
@@ -378,7 +378,7 @@ async function formatConfigProvidersStatusLines(
lines.push("");
lines.push(
`Tip: ${formatDocsLink("/cli#status", "status --deep")} runs local probes without a gateway.`,
`Tip: ${formatDocsLink("/cli#status", "status --deep")} adds gateway health probes to status output (requires a reachable gateway).`,
);
return lines;
}