Install
openclaw skills install openclaw-doc-helperAnswer OpenClaw-related questions by querying and analyzing the official documentation at docs.openclaw.ai. TRIGGER CONDITIONS - Use this skill when: 1. User directly asks about OpenClaw (configuration, usage, commands, troubleshooting, architecture) 2. Suggesting OpenClaw as a solution to other problems 3. About to recommend or explain OpenClaw configuration changes 4. Answering questions where OpenClaw is part of the solution MANDATORY: Always fetch relevant documentation from docs.openclaw.ai before: - Answering any OpenClaw-specific question - Suggesting configuration changes - Providing technical details about OpenClaw features
openclaw skills install openclaw-doc-helperThis skill helps answer OpenClaw-related questions by automatically querying the official documentation at docs.openclaw.ai.
Use this skill when the user asks about:
Identify the query topic - Understand what specific OpenClaw topic the user is asking about
Search/fetch relevant documentation - Use web_fetch to retrieve documentation from docs.openclaw.ai:
https://docs.openclaw.aihttps://docs.openclaw.ai/<topic> (e.g., /faq, /troubleshooting, /config)web_search with site:docs.openclaw.ai if unsure where to lookAnalyze the documentation - Read and understand the fetched content
Formulate a comprehensive answer - Based on the official documentation, provide an accurate response
Cite sources - Mention that the information comes from docs.openclaw.ai
When suggesting configuration changes, guide the user to validate and view their configuration:
Validate configuration:
# Validate entire configuration
openclaw config validate
View specific configuration sections:
# View all plugins configuration
openclaw config get plugins
# View gateway settings
openclaw config get gateway
# View models configuration
openclaw config get models
# View channels configuration
openclaw config get channels
# View agents configuration
openclaw config get agents
# View specific channel (e.g., Feishu)
openclaw config get channels.feishu
# View nested values
openclaw config get agents.defaults.model.primary
openclaw config get channels.whatsapp.enabled
Explain the validation output to the user:
valid: true → configuration is correct, can proceedUser: "How do I configure a new channel?"
Action:
https://docs.openclaw.ai/config or search for "channel configuration"openclaw config validate after making changesThis skill is instruction-only with no code execution:
web_fetch and web_search tools