OpenClaw Config Skill 🐾
Manages your openclaw-config installation.
Users say things like:
- "Set up openclaw-config"
- "Update my openclaw config"
- "Force update openclaw" (overwrites their changes)
- "Check if openclaw has updates"
Setup
Do these steps in order:
Clone repo to ~/src/openclaw-config
Copy templates to workspace root (don't overwrite existing): AGENTS.md, SOUL.md,
USER.md, TOOLS.md, HEARTBEAT.md, IDENTITY.md
Create memory folders: memory/people, memory/projects, memory/topics,
memory/decisions
Copy skills to skills/
Optional: Add workflows — Ask if they want any workflows. List available
workflows from ~/src/openclaw-config/workflows/.
If yes for a workflow:
- Copy all upstream-owned files from
~/src/openclaw-config/workflows/<name>/ to
workflows/<name>/, preserving directory structure (e.g., platforms/ subdirs)
- Never copy user-owned files:
rules.md, agent_notes.md, preferences.md,
processed.md, logs/
- Create
workflows/<name>/logs/ directory
- The workflow will interview them on first run to create user-owned files
Configure memory search — Required for semantic search to work. Ask: LM Studio
(local, free, recommended) or OpenAI?
- LM Studio: Server on port 1234, model
lmstudio-community/embedding-gemma-300m-qat, configure gateway
memorySearch.remote.baseUrl to http://127.0.0.1:1234/v1
- OpenAI: Get their API key, configure gateway memorySearch.remote.baseUrl to
https://api.openai.com/v1, model text-embedding-3-small
- Verify it works: Create test file in memory/, index it, search for it, confirm
it returns results, clean up
Personalization — Ask and replace in templates: {{USER_NAME}},
{{ASSISTANT_NAME}}, {{TIMEZONE}}, {{PRIORITY_1}}, {{PRIORITY_2}}
Optional skills — These are optional. Ask about each one individually, only
configure if they say yes:
- "Do you have a Limitless Pendant?" → If yes, get API key from app.limitless.ai →
Settings → Developer
- "Do you use Fireflies.ai for meeting transcripts?" → If yes, get API key from
app.fireflies.ai → Integrations → Fireflies API
- "Do you use Quo for business phone?" → If yes, get API key from my.quo.com →
Settings → API
- "Do you want Parallel.ai for web search? (better results than built-in)" → If yes,
get API key from platform.parallel.ai
Skip any they don't use. Don't assume they want all of them.
Health check setup — Ask: "Do you want automated health monitoring? It runs
hourly via cron (Claude Code + simple) to check your gateway and services, fix minor
issues, and notify you of problems."
If yes:
- Ask: "Who should be notified if there's a problem?" →
mkdir -p ~/.openclaw then
write their answer to ~/.openclaw/health-check-admin (just the name, one line)
- Resolve the claude CLI path with
which claude — use the full path in the cron job
- Install the cron job (substitute CLAUDE_PATH with the resolved path):
0 0,7-23 * * * test -f "$HOME/src/openclaw-config/devops/health-check.md" && flock -n "$HOME/.openclaw/health-check.lock" CLAUDE_PATH -p "Run health check" --model simple --append-system-prompt-file "$HOME/src/openclaw-config/devops/health-check.md" --dangerously-skip-permissions --max-budget-usd 5.00 >> "$HOME/.openclaw/health-check.log" 2>&1
- Verify:
crontab -l | grep health-check
- Do a test run: execute the claude command once and verify it produces output
- Tell them: runs hourly 7 AM–midnight, logs at
~/.openclaw/health-check.log
Track version in .openclaw/installed-version
Run diagnostics — Run openclaw doctor --non-interactive and review the output.
This validates config integrity, credential health, security posture, skill
eligibility, and memory search readiness. If doctor reports errors, fix them before
proceeding. If it reports warnings (e.g., open DM policy), note them in the summary
so the user can decide whether to address them.
Summary — Tell them what's configured, include any doctor warnings
Update
Compare .openclaw/installed-version with ~/src/openclaw-config/VERSION.
If newer: pull, update skills (safe to overwrite), update templates only if user hasn't
modified them, update version file, report changes.
If user wants to force/overwrite: backup to .openclaw/backup/ first.
Workflows: Update all upstream-owned files (AGENT.md, classifier.md, platform
guides, etc.), preserving directory structure. Never touch user-owned files: rules.md,
agent_notes.md, preferences.md, processed.md, logs/ — those belong to the user.
Status
Show installed version and skill versions. Fetch remote VERSION, report if updates
available.
1---2name: openclaw3description: Install, configure, and update openclaw-config4---56# OpenClaw Config Skill 🐾78Manages your openclaw-config installation.910**Users say things like:**1112- "Set up openclaw-config"13- "Update my openclaw config"14- "Force update openclaw" (overwrites their changes)15- "Check if openclaw has updates"1617---1819# Setup2021Do these steps in order:22231. **Clone repo** to `~/src/openclaw-config`24252. **Copy templates** to workspace root (don't overwrite existing): AGENTS.md, SOUL.md,26 USER.md, TOOLS.md, HEARTBEAT.md, IDENTITY.md27283. **Create memory folders:** `memory/people`, `memory/projects`, `memory/topics`,29 `memory/decisions`30314. **Copy skills** to `skills/`32335. **Optional: Add workflows** — Ask if they want any workflows. List available34 workflows from `~/src/openclaw-config/workflows/`.3536 If yes for a workflow:37 - Copy all upstream-owned files from `~/src/openclaw-config/workflows/<name>/` to38 `workflows/<name>/`, preserving directory structure (e.g., `platforms/` subdirs)39 - **Never copy user-owned files:** `rules.md`, `agent_notes.md`, `preferences.md`,40 `processed.md`, `logs/`41 - Create `workflows/<name>/logs/` directory42 - The workflow will interview them on first run to create user-owned files43446. **Configure memory search** — Required for semantic search to work. Ask: LM Studio45 (local, free, recommended) or OpenAI?46 - **LM Studio:** Server on port 1234, model47 `lmstudio-community/embedding-gemma-300m-qat`, configure gateway48 memorySearch.remote.baseUrl to `http://127.0.0.1:1234/v1`49 - **OpenAI:** Get their API key, configure gateway memorySearch.remote.baseUrl to50 `https://api.openai.com/v1`, model `text-embedding-3-small`51 - **Verify it works:** Create test file in memory/, index it, search for it, confirm52 it returns results, clean up53547. **Personalization** — Ask and replace in templates: `{{USER_NAME}}`,55 `{{ASSISTANT_NAME}}`, `{{TIMEZONE}}`, `{{PRIORITY_1}}`, `{{PRIORITY_2}}`56578. **Optional skills** — These are optional. Ask about each one individually, only58 configure if they say yes:59 - "Do you have a Limitless Pendant?" → If yes, get API key from app.limitless.ai →60 Settings → Developer61 - "Do you use Fireflies.ai for meeting transcripts?" → If yes, get API key from62 app.fireflies.ai → Integrations → Fireflies API63 - "Do you use Quo for business phone?" → If yes, get API key from my.quo.com →64 Settings → API65 - "Do you want Parallel.ai for web search? (better results than built-in)" → If yes,66 get API key from platform.parallel.ai6768 Skip any they don't use. Don't assume they want all of them.69709. **Health check setup** — Ask: "Do you want automated health monitoring? It runs71 hourly via cron (Claude Code + simple) to check your gateway and services, fix minor72 issues, and notify you of problems."7374 If yes:75 - Ask: "Who should be notified if there's a problem?" → `mkdir -p ~/.openclaw` then76 write their answer to `~/.openclaw/health-check-admin` (just the name, one line)77 - Resolve the claude CLI path with `which claude` — use the full path in the cron job78 - Install the cron job (substitute CLAUDE_PATH with the resolved path):79 ```80 0 0,7-23 * * * test -f "$HOME/src/openclaw-config/devops/health-check.md" && flock -n "$HOME/.openclaw/health-check.lock" CLAUDE_PATH -p "Run health check" --model simple --append-system-prompt-file "$HOME/src/openclaw-config/devops/health-check.md" --dangerously-skip-permissions --max-budget-usd 5.00 >> "$HOME/.openclaw/health-check.log" 2>&181 ```82 - Verify: `crontab -l | grep health-check`83 - Do a test run: execute the claude command once and verify it produces output84 - Tell them: runs hourly 7 AM–midnight, logs at `~/.openclaw/health-check.log`858610. **Track version** in `.openclaw/installed-version`878811. **Run diagnostics** — Run `openclaw doctor --non-interactive` and review the output.89 This validates config integrity, credential health, security posture, skill90 eligibility, and memory search readiness. If doctor reports errors, fix them before91 proceeding. If it reports warnings (e.g., open DM policy), note them in the summary92 so the user can decide whether to address them.939412. **Summary** — Tell them what's configured, include any doctor warnings9596---9798# Update99100Compare `.openclaw/installed-version` with `~/src/openclaw-config/VERSION`.101102If newer: pull, update skills (safe to overwrite), update templates only if user hasn't103modified them, update version file, report changes.104105If user wants to force/overwrite: backup to `.openclaw/backup/` first.106107**Workflows:** Update all upstream-owned files (AGENT.md, classifier.md, platform108guides, etc.), preserving directory structure. Never touch user-owned files: `rules.md`,109`agent_notes.md`, `preferences.md`, `processed.md`, `logs/` — those belong to the user.110111---112113# Status114115Show installed version and skill versions. Fetch remote VERSION, report if updates116available.