Install
openclaw skills install openclaw-docs-searchReal-time retrieval of the latest official OpenClaw documentation, returned as compact LLM-friendly Markdown for config, CLI, channels, gateway, and skills questions.
openclaw skills install openclaw-docs-searchThis skill is built for ClawHub / OpenClaw workflows and is designed to retrieve the latest official OpenClaw documentation in real time, then return it as LLM-friendly Markdown. Its core strengths are real-time retrieval, official-source grounding, and up-to-date public documentation access. It uses the official search workflow first, then fetches a single target page on demand instead of relying on stale model memory, cached snapshots, or full-site crawling.
Stop relying on stale model memory and answer from the latest official OpenClaw docs in real time.
#content-area main content is extracted from a page, without full navigation, footer, or other noiseUse this skill before answering or taking action when the task depends on current OpenClaw official documentation, especially when stale memory could cause wrong guidance, outdated instructions, or incorrect configuration changes.
For high-risk OpenClaw tasks, the agent should invoke this skill first before answering, generating instructions, or editing files.
If the task involves modifying configuration files, generating commands, adjusting gateway or skills settings, integrating channels, or giving operational guidance, the agent should verify the latest official documentation with this skill first instead of relying on memory.
Important: Because the official English documentation has a much higher search hit rate than the Chinese version, always translate a user's Chinese intent into English keywords before searching. The default search language should be
en. Only usezh-Hanswhen Chinese results are explicitly required.
First, send a POST request to the OpenClaw official search API. Extract the user's intent, translate it into English keywords, and set language to en.
You can retrieve results with the following curl command:
curl --location --request POST 'https://leaves.mintlify.com/api/search/clawdhub' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "<english search keywords>",
"filters": {
"language": "en"
}
}'
To reduce LLM token usage and reading noise, the skill filters the returned JSON and converts it into Markdown.
breadcrumbs with navigation context, or fall back to title.page.content field by removing repeated titles and unnecessary blank lines.score, hash, and icon.The final Markdown structure looks like this and can be passed directly to an LLM:
### 1. Agent > Messaging and Delivery > Command Queue
- **Path**: `zh-CN/concepts/queue`
- **Content**: Command Queue (2026-01-16)
We use a small in-process queue to serialize inbound auto-reply execution across channels, preventing conflicts between agent runs while still allowing safe concurrency across sessions.
### 2. ...
When the LLM decides to inspect a specific document based on search results or prior hints, use the selected item's path from the page field.
https://docs.openclaw.ai/ with the selected page path, for example https://docs.openclaw.ai/zh-CN/tools/skills-config.id="content-area".turndown to convert the extracted HTML into LLM-friendly Markdown.#content-area main content and exclude full-page navigation, footer, or script contentpage from the resultshttps://docs.openclaw.ai/ with page#content-area, then convert it into Markdown