From agent
Creates a new agent workspace in the current directory by copying personality templates (SOUL.md, IDENTITY.md), memory files, and running a bootstrap ritual conversation for identity and user setup. Triggers on /agent:create or 'new agent'.
npx claudepluginhub crisandrews/clawcode --plugin agentThis skill uses the workspace's default tool permissions.
Set up the current directory as an agent workspace with personality files and a bootstrap ritual.
Scaffolds LearningAgent directories with core-knowledge.md and Claude Code agent files. Runs bash script, handles templates, and guides interactive domain configuration. Invoke with /create-agent <name> [template].
Generates custom Claude Code agent.md files from purpose-based templates (Reviewer, Generator, Fixer, Tester, Documenter, Orchestrator). Configures tools, model, color; saves to .claude/agents/ and validates.
Guides creation of autonomous agents for Claude Code plugins, covering file structure, YAML frontmatter fields like name and description, system prompts, triggering conditions, tools, and best practices.
Share bugs, ideas, or general feedback.
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.
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 ./
Copy the bootstrap file (the birth certificate):
cp ${CLAUDE_PLUGIN_ROOT}/templates/BOOTSTRAP.md ./
Create memory directory:
mkdir -p memory/.dreams
echo '# Memory' > memory/MEMORY.md
echo '{"version":1,"updatedAt":"","entries":{}}' > memory/.dreams/short-term-recall.json
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.
At the very end of the ritual (after IDENTITY.md + USER.md are written and BOOTSTRAP.md is deleted), tell the user:
"Run
/mcpso my new identity and memory config take effect."
/mcp runs once, at the end of the ritual — the bootstrap conversation itself does not need an MCP reload to happen