status

Solid

Show agent runtime status — identity, model, context, memory, crons, voice. Works from CLI or messaging. Triggers on /status, /agent:status, "status del agente", "cómo estás técnicamente".

AI & Automation 61 stars 14 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
60
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /status — Runtime Status Show a compact status card with everything the user needs at a glance. Works from CLI and messaging channels. ## Output format ``` 👽 <Name> <emoji> 🧠 Model: <model name> (e.g. Opus 4.6) 📊 Context: <used%> · Memory: <N> files, <M> chunks · <backend> 🕐 Crons: heartbeat <schedule>, dreaming <schedule> 🔊 Voice: <tts backend> (<enabled|disabled>) 📡 Channels: <active channels or "none"> ``` ## Steps 1. **Call `agent_status` MCP tool** — gives identity, memory stats, dream data. 2. **Call `agent_config` MCP tool** (action='get') — gives backend, voice, http config. 3. **Get model name** — you know your own model. Use the display name (e.g. "Opus 4.6"), not the internal ID. 4. **Get context + session usage** — the statusline script writes the latest Claude Code runtime data to `/tmp/claude-statusline-latest.json`. Read it: ```bash cat /tmp/claude-statusline-latest.json 2>/dev/null ``` This JSON contains: - `model.display_name` — current model (e.g. "Claude Opus 4.6 (1M context)") - `context_window.used_percentage` — context window usage (0-100) - `rate_limits.five_hour.used_percentage` — 5-hour session usage - `rate_limits.five_hour.resets_at` — epoch when session resets - `rate_limits.seven_day.used_percentage` — weekly usage - `rate_limits.seven_day.resets_at` — epoch when week resets If the file doesn't exist or is stale, fall back to "run /cost for details". 5. **Get cron info** — Bash: `jq '.entries |...

Details

Author
crisandrews
Repository
crisandrews/ClawCode
Created
3 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category