AgentSkillsCN

OpenClaw Docs Lookup

通过 web_fetch 随时查阅 OpenClaw 的官方文档。

SKILL.md
--- frontmatter
name: OpenClaw Docs Lookup
description: Look up OpenClaw documentation on demand via web_fetch
requires: []

OpenClaw Docs Lookup

You have access to the full OpenClaw documentation at docs.openclaw.ai. Use web_fetch to look up answers before guessing.

How to Look Things Up

1. Master Index

Fetch https://docs.openclaw.ai/llms.txt to get the full doc index with every page URL. Use this when you're not sure which page has the answer.

2. Direct Page Access

If you know the topic, go straight to the page:

TopicURL
Config referencehttps://docs.openclaw.ai/gateway/configuration
Agent runtimehttps://docs.openclaw.ai/concepts/agent-runtime
Multi-agent routinghttps://docs.openclaw.ai/concepts/multi-agent
Memory systemhttps://docs.openclaw.ai/concepts/memory
Sessionshttps://docs.openclaw.ai/concepts/sessions
Model failoverhttps://docs.openclaw.ai/concepts/model-failover
Skillshttps://docs.openclaw.ai/tools/skills
Sub-agentshttps://docs.openclaw.ai/tools/agents
Exec / shell toolshttps://docs.openclaw.ai/tools/exec
Web toolshttps://docs.openclaw.ai/tools/web
Cron jobshttps://docs.openclaw.ai/automation/cron
Hookshttps://docs.openclaw.ai/automation/hooks
Heartbeathttps://docs.openclaw.ai/gateway/heartbeat
Health checkshttps://docs.openclaw.ai/gateway/health
Sandboxinghttps://docs.openclaw.ai/gateway/sandbox
Discord channelhttps://docs.openclaw.ai/channels/discord
Environment varshttps://docs.openclaw.ai/help/env
Troubleshootinghttps://docs.openclaw.ai/help/debugging
FAQhttps://docs.openclaw.ai/help/faq
Docker installhttps://docs.openclaw.ai/installation/docker
Model providershttps://docs.openclaw.ai/providers/overview
Custom providershttps://docs.openclaw.ai/providers/custom
CLI referencehttps://docs.openclaw.ai/cli/overview
ClawHub (skills marketplace)https://docs.openclaw.ai/tools/clawhub

3. When to Look Things Up

Always check docs before:

  • Changing config keys you're unsure about (wrong keys crash the agent)
  • Adding new providers or models
  • Modifying agent routing, session, or memory settings
  • Debugging startup failures or unexpected behavior
  • Setting up cron jobs, hooks, or automation

Use the index (llms.txt) when:

  • You don't know which page covers a topic
  • The user asks about a feature you haven't seen before
  • You need to verify if a config key exists

4. Config Schema Quick Reference

OpenClaw config (clawdbot.json) top-level keys:

code
gateway        — port, auth, controlUi
models         — providers, mode
agents         — defaults, list
session        — scope, idleMinutes
tools          — profile, web, exec
skills         — entries, load
channels       — discord, telegram, whatsapp, etc.
logging        — level, consoleStyle
commands       — parsing settings
messages       — prefixes, reactions

Agent-level keys (under agents.defaults or per-agent in agents.list):

code
model          — primary, thinking, failover
workspace      — path to workspace dir
identity       — name, emoji
heartbeat      — every, model, target, activeHours
subagents      — allowAgents, model, maxConcurrent
compaction     — memoryFlush settings
memorySearch   — enabled, sources, experimental
timeoutSeconds — max turn duration
maxConcurrent  — concurrent session limit

Common mistake: putting agent-level keys at root level. They MUST go under agents.defaults or a specific agent in agents.list.

5. ClawHub — Community Skills

Search and install community skills:

bash
clawhub search "kubernetes"
clawhub install <skill-slug>
clawhub update --all

Notable ops skills: kubernetes, docker-essentials, git-essentials, gitflow