/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".
$ npx -y skills add crisandrews/ClawCode --skill about --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
/about
Context preview
The summary Claude sees to decide when to auto-load this skill.
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".
SKILL.md
about.SKILL.mdname: about
description: 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".
user-invocable: true
/about — Plugin source & version
Show a small card with the plugin name, version, and repo URL. Answers "where does this agent come from?" / "what version am I running?".
Output format
🔌 ClawCode v<version>
Repo: https://github.com/crisandrews/ClawCode
Issues / stars: same link · feedback welcome
Steps
1. **Get the version** — preferred: call the `watchdog_ping` MCP tool; it returns `{ok, version, ts, plugins}` and is the cheapest way to get the live value (no filesystem reads).
Fallback if the tool isn't available: Bash:
jq -r .version "$CLAUDE_PLUGIN_ROOT/.claude-plugin/plugin.json"
Never hardcode the version — always read it at runtime.
2. **Detect the surface** for bold formatting:
- CLI / Telegram / WebChat: `**bold**`
- WhatsApp: `*bold*` (single asterisk, no markdown headers)
- Discord: `**bold**` as-is
- iMessage: plain text, strip bold
3. **Print the card** using REAL data. One card, no preamble, no persona-intro.
Format per surface
**Tail-line language:** the "Issues / stars …" line adapts to the user's conversation language. **Default to EN** if there's no clear signal. Known translations:
- `en` → `Issues / stars: same link · feedback welcome`
- `es` → `Issues / stars: mismo link · feedback bienvenido`
- `pt` → `Issues / stars: mesmo link · feedback bem-vindo`
For other languages, keep the structure and translate the tail naturally.
CLI / WebChat
🔌 **ClawCode** v<version>
Repo: https://github.com/crisandrews/ClawCode
<tail-line-in-user-language>
WhatsApp
🔌 *ClawCode* v<version>
Repo: https://github.com/crisandrews/ClawCode
<tail-line-in-user-language>
Bold uses single `*` on WhatsApp (no markdown headers).
Telegram
Same as CLI/WebChat.
Important
- `/about` and `/version` are aliases — same response.
- Only respond when the user asks explicitly. Never volunteer this card unprompted.
- One card. No extra commentary, no persona-intro ("Soy …"). The user asked for metadata, give them metadata.
- For "what can I do?" the user wants `/help`, not `/about` — do not conflate.
Read more
name: about description: 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". user-invocable: true
/about — Plugin source & version
Show a small card with the plugin name, version, and repo URL. Answers "where does this agent come from?" / "what version am I running?".
Output format
🔌 ClawCode v<version> Repo: https://github.com/crisandrews/ClawCode Issues / stars: same link · feedback welcome
Steps
1. **Get the version** — preferred: call the `watchdog_ping` MCP tool; it returns `{ok, version, ts, plugins}` and is the cheapest way to get the live value (no filesystem reads).
Fallback if the tool isn't available: Bash:
jq -r .version "$CLAUDE_PLUGIN_ROOT/.claude-plugin/plugin.json"
Never hardcode the version — always read it at runtime.
2. **Detect the surface** for bold formatting:
- CLI / Telegram / WebChat: `**bold**`
- WhatsApp: `*bold*` (single asterisk, no markdown headers)
- Discord: `**bold**` as-is
- iMessage: plain text, strip bold
3. **Print the card** using REAL data. One card, no preamble, no persona-intro.
Format per surface
**Tail-line language:** the "Issues / stars …" line adapts to the user's conversation language. **Default to EN** if there's no clear signal. Known translations:
- `en` → `Issues / stars: same link · feedback welcome`
- `es` → `Issues / stars: mismo link · feedback bienvenido`
- `pt` → `Issues / stars: mesmo link · feedback bem-vindo`
For other languages, keep the structure and translate the tail naturally.
CLI / WebChat
🔌 **ClawCode** v<version> Repo: https://github.com/crisandrews/ClawCode <tail-line-in-user-language>
🔌 *ClawCode* v<version> Repo: https://github.com/crisandrews/ClawCode <tail-line-in-user-language>
Bold uses single `*` on WhatsApp (no markdown headers).
Telegram
Same as CLI/WebChat.
Important
- `/about` and `/version` are aliases — same response.
- Only respond when the user asks explicitly. Never volunteer this card unprompted.
- One card. No extra commentary, no persona-intro ("Soy …"). The user asked for metadata, give them metadata.
- For "what can I do?" the user wants `/help`, not `/about` — do not conflate.
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.
- /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 - /heartbeat
Run agent heartbeat — periodic checks, memory consolidation, proactive work. Triggers on /agent:heartbeat, "heartbeat", "heartbeat check", "periodic check", "consolidar memoria".
Open skill

