bloby-bot 0.66.1 → 0.67.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -427,12 +427,18 @@ The CLI is the user-facing entry point. Commands:
427
427
 
428
428
  | Command | Description |
429
429
  |---|---|
430
- | `bloby init` | First-time setup: interactive tunnel mode chooser (Quick or Named), creates config, installs cloudflared, boots server, optionally installs systemd daemon |
431
- | `bloby start` | Boot the supervisor (or detect existing daemon and show status) |
432
- | `bloby status` | Health check via `/api/health`, shows uptime, tunnel URL, and relay URL |
433
- | `bloby update` | Downloads latest from npm registry, updates code directories, rebuilds UI, restarts daemon |
430
+ | `bloby init` | First-time setup: interactive tunnel mode chooser (Quick or Named), creates config, installs cloudflared, installs + starts the background service |
431
+ | `bloby start` | Start the background service (says so if already running; `--foreground` for debugging) |
432
+ | `bloby stop` | Stop the background service and any stray Bloby processes |
433
+ | `bloby restart` | Stop + start (identical to running both commands back to back) |
434
+ | `bloby status` | Health check via `/api/health` + supervisor pidfile: state, PID, uptime, URLs, log freshness, update check |
435
+ | `bloby logs` | Last 80 log lines with a provenance header (`-f` to follow, `-n <num>` for more) |
436
+ | `bloby update` | Downloads latest from npm registry, updates code directories, rebuilds UI, restarts only if it was running |
434
437
  | `bloby tunnel` | Named tunnel management (subcommands below) |
435
- | `bloby daemon` | Linux systemd management: install, start, stop, restart, status, logs, uninstall |
438
+ | `bloby daemon` | Service management (launchd on macOS, systemd on Linux): install, start, stop, restart, status, logs, uninstall |
439
+ | `bloby help` | Full command list including advanced commands (`password-reset`, `x402`) |
440
+
441
+ Unknown or misspelled commands error out with a "did you mean" suggestion — they never silently start the bot. Every command runs Bloby as a background service and returns the terminal; the supervisor writes `~/.bloby/supervisor.json` (pid, startedAt, version, port) at boot, which the CLI uses as the single source of truth for status/logs.
436
442
 
437
443
  **`bloby tunnel` subcommands:**
438
444
  | Subcommand | Description |