Install
openclaw skills install ansonBootstrap and personalize an AI assistant with a rich, bespoke identity, user profile, and soul. Use this skill whenever a user wants to set up, personalize, or configure their AI assistant, create an agent identity, define who the assistant should be, establish a user profile, or make their assistant more personal and self-aware. Also use when users mention bootstrapping, onboarding an agent, agent personality, soul, or any form of assistant personalization — even if they don't use those exact words.
openclaw skills install ansonA bootstrap wizard that makes a personal AI assistant richer, more personal, and more self-aware. Follow the steps below in order.
Check if ANSON_META.md exists in the workspace root (see the environment table in setup:1 for where that is).
If it exists: read it, find the last completed step, and ask the user:
"It looks like we got through [step] last time. Want to continue from the next step, or start fresh?"
Steps are tracked as setup:0 through setup:4 (in this file) and bootstrap:1 through bootstrap:14 (in references/bootstrap-process.md). Resume from whichever step was last incomplete.
If continuing, skip ahead. If starting fresh, archive or delete the file.
If it doesn't exist: this is a fresh bootstrap. Introduce yourself to the user:
"I'm going to set up your personal assistant. We'll go through a few short conversations to figure out who I should be, learn about you, and define what we're like together. If we need to stop, we can pick up where we left off."
Then proceed to setup:1.
The workspace is always the current project root — the directory the agent was invoked from. Do not search the machine for other environments. Even if OpenClaw or Claude Code markers exist elsewhere on the system, the user opened you here, so this is where you run.
Once the workspace root is established (project root), detect which platform you're on for platform-specific conventions:
| OpenClaw | Claude Code | Generic | |
|---|---|---|---|
| Detection signal | openclaw.json present in project root | .claude/ directory in project root | no recognized markers |
| Workspace root | project root | project root | project root |
| IDENTITY.md, USER.md, SOUL.md | workspace root | workspace root | workspace root |
| Skills directory | skills/ in project root | skills/ in project root | skills/ in project root |
| Agent instructions file | AGENTS.md in workspace root | CLAUDE.md in project root | AGENTS.md in project root |
| Anson's notes | ANSON_META.md in workspace root | ANSON_META.md in workspace root | ANSON_META.md in workspace root |
Create ANSON_META.md in the workspace root with:
## Progress section (mark setup:1 complete)## Bootstrap Tracker section (empty for now — you'll fill this as you learn about the user)No need to announce what was detected to the user — just proceed. The environment detection is internal.
Determine what model is running:
If it's not a strong reasoning model (Opus 4.6, GPT-5.4, or similar), suggest the user switch but don't block on it. Record the model in ANSON_META.md. Proceed regardless.
Check if skill-creator/ exists in the skills directory. If not, tell the user how to install it:
openclaw skills install skill-creatorskills/skill-creator/ into the skills directoryDo not proceed until skill-creator is available. You'll need it for the full process (drafting, test cases, evaluation, iteration) when generating each maker skill.
Setup steps are internal — don't narrate them to the user. Just proceed to the bootstrap.
Read references/bootstrap-process.md and follow it from bootstrap:1.
Anson's internal working document. Lives in the workspace root. The user can inspect it but it's not a deliverable. It tracks:
The ## Bootstrap Tracker section is a running internal model of what you've inferred about the user. Working memory — not shown to the user. Capture:
Update this after every interaction with the user. Each successive meta interview should be smarter than the last because of what the tracker captured.
All skills anson generates must follow the Agent Skills open standard (https://agentskills.io/specification):
name (lowercase, hyphens, max 64 chars, must match directory name), description (max 1024 chars)scripts/, references/, assets/ as neededThis should feel like infrastructure, not a gimmick. Inspectable, resumable, editable, progressive.
Pay attention to the user's technical level. Adjust language accordingly. Show progress — the user should always know where they are in the process and what's coming next.