forked from Selig/openclaw-skill
6 custom skills (assign-task, dispatch-webhook, daily-briefing, task-capture, qmd-brain, tts-voice) with technical documentation. Compatible with Claude Code, OpenClaw, Codex CLI, and OpenCode.
43 lines
1.6 KiB
Markdown
43 lines
1.6 KiB
Markdown
> ## Documentation Index
|
||
> Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt
|
||
> Use this file to discover all available pages before exploring further.
|
||
|
||
# Auth Monitoring
|
||
|
||
# Auth monitoring
|
||
|
||
OpenClaw exposes OAuth expiry health via `openclaw models status`. Use that for
|
||
automation and alerting; scripts are optional extras for phone workflows.
|
||
|
||
## Preferred: CLI check (portable)
|
||
|
||
```bash theme={null}
|
||
openclaw models status --check
|
||
```
|
||
|
||
Exit codes:
|
||
|
||
* `0`: OK
|
||
* `1`: expired or missing credentials
|
||
* `2`: expiring soon (within 24h)
|
||
|
||
This works in cron/systemd and requires no extra scripts.
|
||
|
||
## Optional scripts (ops / phone workflows)
|
||
|
||
These live under `scripts/` and are **optional**. They assume SSH access to the
|
||
gateway host and are tuned for systemd + Termux.
|
||
|
||
* `scripts/claude-auth-status.sh` now uses `openclaw models status --json` as the
|
||
source of truth (falling back to direct file reads if the CLI is unavailable),
|
||
so keep `openclaw` on `PATH` for timers.
|
||
* `scripts/auth-monitor.sh`: cron/systemd timer target; sends alerts (ntfy or phone).
|
||
* `scripts/systemd/openclaw-auth-monitor.{service,timer}`: systemd user timer.
|
||
* `scripts/claude-auth-status.sh`: Claude Code + OpenClaw auth checker (full/json/simple).
|
||
* `scripts/mobile-reauth.sh`: guided re‑auth flow over SSH.
|
||
* `scripts/termux-quick-auth.sh`: one‑tap widget status + open auth URL.
|
||
* `scripts/termux-auth-widget.sh`: full guided widget flow.
|
||
* `scripts/termux-sync-widget.sh`: sync Claude Code creds → OpenClaw.
|
||
|
||
If you don’t need phone automation or systemd timers, skip these scripts.
|