/status
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".
$ npx -y skills add crisandrews/ClawCode --skill status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/status
Context preview
The summary Claude sees to decide when to auto-load this skill.
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".
SKILL.md
status.SKILL.mdname: status
description: 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".
user-invocable: true
/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:
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 | length' memory/crons.json 2>/dev/null || echo 0` to count active registry entries. Optionally: `jq '[.entries[] | select(.paused == false and .tombstone == null)] | length' memory/crons.json` for the expected-alive count.
6. **Get channel info** — if `channels_detect` MCP tool is available, call it. Otherwise check `ls ~/.claude/plugins/cache/ 2>/dev/null` for installed plugins.
7. **Build the card** using REAL data. Never fabricate numbers.
Format per surface
CLI
👽 **Wally** 👽
🧠 Model: Opus 4.6 (1M context) · Context: 23%
📊 Memory: 42 files, 120 chunks · builtin (QMD vsearch)
⏱️ Session: 15% (3h 20min left) · Week: 8% (Resets Fri, 6:00AM)
🕐 Crons: heartbeat */30, dreaming 3am
📡 Channels: whatsapp (connected)
WhatsApp
Same content, `*bold*` instead of `**bold**`. No markdown headers.
Telegram
Same content, `**bold**` is fine.
Important
- PURELY informational — does not modify state.
- Get REAL data from MCP tools and filesystem. Never fabricate.
- For detailed cost/token info, tell the user to run native `/cost` or `/usage`.
- For MCP server details, tell the user to run native `/mcp`.
- Keep it compact — one line per category, no paragraphs.
Read more
name: status description: 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". user-invocable: true
/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:
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 | length' memory/crons.json 2>/dev/null || echo 0` to count active registry entries. Optionally: `jq '[.entries[] | select(.paused == false and .tombstone == null)] | length' memory/crons.json` for the expected-alive count.
6. **Get channel info** — if `channels_detect` MCP tool is available, call it. Otherwise check `ls ~/.claude/plugins/cache/ 2>/dev/null` for installed plugins.
7. **Build the card** using REAL data. Never fabricate numbers.
Format per surface
CLI
👽 **Wally** 👽 🧠 Model: Opus 4.6 (1M context) · Context: 23% 📊 Memory: 42 files, 120 chunks · builtin (QMD vsearch) ⏱️ Session: 15% (3h 20min left) · Week: 8% (Resets Fri, 6:00AM) 🕐 Crons: heartbeat */30, dreaming 3am 📡 Channels: whatsapp (connected)
Same content, `*bold*` instead of `**bold**`. No markdown headers.
Telegram
Same content, `**bold**` is fine.
Important
- PURELY informational — does not modify state.
- Get REAL data from MCP tools and filesystem. Never fabricate.
- For detailed cost/token info, tell the user to run native `/cost` or `/usage`.
- For MCP server details, tell the user to run native `/mcp`.
- Keep it compact — one line per category, no paragraphs.
Persistent agents for Claude Code as a plugin, not a harness. Memory, personality, messaging across WhatsApp, Telegram, and Discord, plus a service mode for 24/7 runs. Imports from OpenClaw.
Repo: crisandrews/ClawCode
Other skills on crisandrews-agent.
- /about
Show the plugin source — name, version, and repo URL. Works from CLI or messaging. Triggers on /about, /version, /agent:about, /agent:version, "qué versión", "what version", "about the plugin", "about clawcode".
Open skill - /channels
Show messaging channel status (WhatsApp, Telegram, Discord, iMessage, Slack, Fakechat) and the launch command to load them. Triggers on /agent:channels, /agent:channels list, /agent:channels status, /agent:channels launch, "ver canales", "estado de canales", "cómo lanzo con
Open skill - /compact
Flush important session context to daily log (manual memory flush). Does NOT invoke native /compact. Triggers on /compact, /agent:compact, /flush, "guarda memoria", "flush".
Open skill - /create
Create a new agent in the current directory with personality files and bootstrap ritual. Triggers on /agent:create, "crear agente", "nuevo agente", "new agent", "create agent".
Open skill - /crons
Manage scheduled reminders (crons) — list, add, delete, pause, resume, reconcile, or import from OpenClaw. Triggers on /agent:crons, /agent:reminders; listing ("list reminders", "show crons", "recordatorios", "mis crons", "mis recordatorios"); creating from natural language via
Open skill - /doctor
Run diagnostic checks on the agent workspace. Triggers on /agent:doctor, "diagnóstico", "diagnostico", "doctor", "health check", "agent health", "checkup", "revisar agente", "agent broken", "fix agent", "revisa el agente".
Open skill

