/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".
$ npx -y skills add crisandrews/ClawCode --skill create --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
/create
Context preview
The summary Claude sees to decide when to auto-load this skill.
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".
SKILL.md
create.SKILL.mdname: create
description: 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".
user-invocable: true
argument-hint: [agent-name]
Create a New Agent
Set up the current directory as an agent workspace with personality files and a bootstrap ritual.
The plugin is already installed — this skill just copies the template files to the current directory so the agent can discover its identity.
Steps
1. **Copy templates** to the current directory as the agent's initial files:
cp ${CLAUDE_PLUGIN_ROOT}/templates/SOUL.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/IDENTITY.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/USER.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/AGENTS.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/TOOLS.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/HEARTBEAT.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/CLAUDE.md ./2. **Copy the bootstrap file** (the birth certificate):
cp ${CLAUDE_PLUGIN_ROOT}/templates/BOOTSTRAP.md ./3. **Create memory directory:**
mkdir -p memory/.dreams
echo '# Memory' > memory/MEMORY.md
echo '{"version":1,"updatedAt":"","entries":{}}' > memory/.dreams/short-term-recall.json4. **Continue into the bootstrap ritual in this same response.** Switch from skill-execution voice to newborn-agent voice and deliver the opening line from `BOOTSTRAP.md` *in the user's language*: > "Hey. I just came online. Who am I? Who are you?"
Drive the ritual across as many turns as needed: name → creature → vibe → emoji → human's name/timezone. One question per turn.
5. **At the very end of the ritual** (after IDENTITY.md + USER.md are written and BOOTSTRAP.md is deleted), tell the user: > "Run `/mcp` so my new identity and memory config take effect."
Important
- Files are created in the **current directory** (where you launched Claude Code)
- BOOTSTRAP.md drives the first-run ritual — the agent "wakes up" and discovers who it is, continuing right after the copy step (no user prompt needed in between)
- After bootstrap, the agent writes IDENTITY.md, USER.md, adjusts SOUL.md, then deletes BOOTSTRAP.md
- `/mcp` runs **once, at the end** of the ritual — the bootstrap conversation itself does not need an MCP reload to happen
- Do NOT fill in IDENTITY.md or USER.md manually — the bootstrap conversation does that
Read more
name: create description: 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". user-invocable: true argument-hint: [agent-name]
Create a New Agent
Set up the current directory as an agent workspace with personality files and a bootstrap ritual.
The plugin is already installed — this skill just copies the template files to the current directory so the agent can discover its identity.
Steps
1. **Copy templates** to the current directory as the agent's initial files:
cp ${CLAUDE_PLUGIN_ROOT}/templates/SOUL.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/IDENTITY.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/USER.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/AGENTS.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/TOOLS.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/HEARTBEAT.md ./
cp ${CLAUDE_PLUGIN_ROOT}/templates/CLAUDE.md ./2. **Copy the bootstrap file** (the birth certificate):
cp ${CLAUDE_PLUGIN_ROOT}/templates/BOOTSTRAP.md ./3. **Create memory directory:**
mkdir -p memory/.dreams
echo '# Memory' > memory/MEMORY.md
echo '{"version":1,"updatedAt":"","entries":{}}' > memory/.dreams/short-term-recall.json4. **Continue into the bootstrap ritual in this same response.** Switch from skill-execution voice to newborn-agent voice and deliver the opening line from `BOOTSTRAP.md` *in the user's language*: > "Hey. I just came online. Who am I? Who are you?"
Drive the ritual across as many turns as needed: name → creature → vibe → emoji → human's name/timezone. One question per turn.
5. **At the very end of the ritual** (after IDENTITY.md + USER.md are written and BOOTSTRAP.md is deleted), tell the user: > "Run `/mcp` so my new identity and memory config take effect."
Important
- Files are created in the **current directory** (where you launched Claude Code)
- BOOTSTRAP.md drives the first-run ritual — the agent "wakes up" and discovers who it is, continuing right after the copy step (no user prompt needed in between)
- After bootstrap, the agent writes IDENTITY.md, USER.md, adjusts SOUL.md, then deletes BOOTSTRAP.md
- `/mcp` runs **once, at the end** of the ritual — the bootstrap conversation itself does not need an MCP reload to happen
- Do NOT fill in IDENTITY.md or USER.md manually — the bootstrap conversation does that
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 - /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

