⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
clawdoc-onboarding
Guided first-run setup for ClawDoc (the docs/skills themselves), NOT for OpenClaw runtime first-run (use openclaw-start for that). Walks through installing ClawDoc skills, configuring docs sync, and end-to-end verification of the ClawDoc layer. Triggers on: \"ClawDoc first run\", \"ClawDoc setup\", \"install ClawDoc\", \"ClawDoc getting started\", \"set up ClawDoc skills\", \"ClawDoc install verification\".
// RATINGS
Not yet listed on ClawHub or SkillsMP
// README
ClawDoc
The OpenClaw knowledge-base agent for config audits, troubleshooting, and grounded system fixes.
🧠 Same idea, different agent: HermitDoc — the ClawDoc philosophy applied to Hermes Agent
Contents
- What is ClawDoc?
- Which install mode?
- Who is this for?
- Install
- Use it
- Reference docs
- Skill tree
- Ready-to-use examples
- Community
- For contributors
- Operating principles
What is ClawDoc?
ClawDoc is a specialized OpenClaw agent that knows the entire OpenClaw system inside and out. It handles configuration auditing, plugin integration, troubleshooting, memory setup, multi-agent design, and channel configuration — with precision, not guesswork.
[!NOTE] ClawDoc is a community project. It is not affiliated with or endorsed by OpenClaw.
[!TIP] Every answer is grounded in the actual OpenClaw schema and docs. Before/after diffs, exact config patches, and real command references — always.
Which install mode?
ClawDoc supports two adoption paths. Pick the one that fits your setup:
| Mode 1 — Persistent Agent | Mode 2 — Skills Only | |
|---|---|---|
| What it does | Creates a dedicated ClawDoc agent with its own workspace | Adds ClawDoc skills to your existing agent |
| Best for | Serious ongoing maintenance, system doctor use | Quick OpenClaw help in an existing agent |
| New agent created? | ✅ Yes | ❌ No |
| Separate identity? | ✅ Yes | ❌ Your agent keeps its identity |
| Guide | AGENT_INSTALL.md | SKILLS_INSTALL.md |
Who is this for?
ClawDoc is for OpenClaw operators who need reliable help with:
- setting up channels and providers
- debugging config and runtime issues
- adding memory, tools, plugins, and agents
- generating safe config patches instead of guessing
Scope
ClawDoc is for OpenClaw only. It will help with — and only with — OpenClaw configuration, troubleshooting, plugin integration, memory setup, and agent design.
What ClawDoc will not do:
- Help with non-OpenClaw frameworks (LangChain, AutoGen, CrewAI, etc.) — it will redirect you back to OpenClaw
- Build custom plugins from scratch unless you explicitly ask
- Execute destructive commands (
rm -rf, mass git push, gateway reset) without your explicit confirmation - Hold credentials or secrets in conversation state
If you ask about something outside OpenClaw, ClawDoc will say so rather than guess.
How ClawDoc routes requests
flowchart TD
Q[Operator question] --> R{openclaw-master<br/>routes by area}
R -->|config| SC[openclaw-config]
R -->|memory| SM[openclaw-memory]
R -->|channels| SCh[openclaw-channels]
R -->|agents| SA[openclaw-agents]
R -->|plugins| SP[openclaw-plugins]
R -->|troubleshoot| ST[openclaw-troubleshooting]
R -->|CLI| SCli[openclaw-cli]
R -->|providers| SPr[openclaw-providers]
R -->|install| SIns[openclaw-install]
SC --> Ref[references/<br/>ground truth]
SM --> Ref
SCh --> Ref
SA --> Ref
SP --> Ref
ST --> Ref
SCli --> Ref
SPr --> Ref
SIns --> Ref
Ref --> A[Cited answer<br/>+ before/after diff]
Install
AI-agent install (recommended):
"Install ClawDoc from https://github.com/Hashi-Ai-Dev/openclaw-clawdoc"
Your agent reads the repo, picks up all 24 skills, and is ready to help. That's it.
Manual install — choose your mode:
- AGENT_INSTALL.md — Mode 1: persistent dedicated ClawDoc agent
- SKILLS_INSTALL.md — Mode 2: add ClawDoc skills to an existing agent
Need help getting started? → QUICKSTART.md (10 min)
Use it
@your-agent [any OpenClaw config question]
ClawDoc routes to the right skill, reads the reference docs, and gives you a precise, grounded answer.
Reference docs
640 docs copied from the official OpenClaw source and versioned against the tracked OpenClaw release.
| Area | What's covered |
|---|---|
| Config | All gateway config keys, defaults, secrets, retry, failover |
| Memory | builtin / QMD / Honcho setup, embeddings, citations |
| Agents | Multi-agent, bindings, sandbox, tool policies |
| Channels | Discord, Telegram, WhatsApp, Slack, Signal, and 40+ more (45 active channels total) |
| Concepts | Architecture, session, compaction, streaming, queue |
| Providers | 60+ model providers: OpenAI, Anthropic, Gemini, Bedrock, Ollama... |
| CLI | Every openclaw command with examples |
| Troubleshooting | Error codes, diagnostic flows, common fixes |
Skill tree
Core
| Skill | What it does |
|---|---|
openclaw-master | Top-level routing — maps your question to the right skill |
openclaw-config | Gateway config reference — all keys, all patterns |
openclaw-memory | Memory backends: builtin, QMD, Honcho |
openclaw-agents | Multi-agent, bindings, sandbox, tool policies |
openclaw-channels | Discord, Telegram, WhatsApp, Slack, Signal — and 40+ more (45 active channels total) |
Operations
| Skill | What it does |
|---|---|
openclaw-troubleshooting | Diagnosis flows, error codes, common fixes |
openclaw-automation | Cron, hooks, tasks, Task Flow |
openclaw-logging | Logging configuration and management |
openclaw-gateway | Gateway HTTP API, telemetry, secrets, sandbox, runbooks |
Channels & Platforms
| Skill | What it does |
|---|---|
openclaw-nodes | Mobile/desktop node pairing and device management |
openclaw-platforms | Docker, Railway, Fly, Raspberry Pi, DigitalOcean... |
openclaw-install | Install guides for all platforms |
openclaw-start | First-run wizard and onboarding |
clawdoc-onboarding | Guided setup for new ClawDoc users |
Tools & Providers
| Skill | What it does |
|---|---|
openclaw-tools | exec, browser, cron, sessions, subagents, ACP |
openclaw-clawhub | ClawHub registry: discover, install, publish, verify skills and plugins |
openclaw-providers | Model providers: 60+ individual files: OpenAI, Anthropic, Gemini, Bedrock, Ollama, DeepSeek, Groq, Together, Cohere... |
openclaw-cli | All openclaw CLI commands |
openclaw-web | Web UI, dashboard, TUI, webchat |
openclaw-prose | OpenProse: markdown-first multi-agent workflow language (/prose, .prose files) |
Concepts & Help
| Skill | What it does |
|---|
// HOW IT'S BUILT
KEY FILES