A Claude Code plugin that shows the live status of Anthropic's Claude services
(pulled from status.claude.com) right in your
statusline, plus an on-demand /claude-status:status command for the full
picture.
/plugin marketplace add <this-repo-url-or-local-path>
/plugin install claude-status
Then run /claude-status:setup once. It will:
- Ask which Claude services you want to watch (Claude Console, Claude API, Claude Code, Claude Cowork, Claude for Gov).
- Wire up your statusline to show them.
/claude-status:setup— one-time configuration; pick which services to watch and install the statusline./claude-status:status— print the full status table for every Claude service, regardless of what your statusline is currently watching.
src/fetch-status.js fetches https://status.claude.com/api/v2/summary.json
and caches the result for 5 minutes in a temp file, so the statusline (which
Claude Code re-runs on every prompt) never hammers the API or blocks on a
slow network call. If the network is unreachable, the last cached result is
reused instead of showing nothing.
Requires Node.js 18+ (uses the built-in fetch API — no dependencies).
MIT