Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

openclaw-docs-searchOpenClaw 文档搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

5,112

周安装

213

GitHub Stars

公开资料未说明

下载量

1,704
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-docs-search(OpenClaw 文档搜索)
来源仓库:https://github.com/sakayoo/openclaw-docs-search
安装命令:
openclaw skills install openclaw-docs-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-docs-search

简介

实时检索最新 OpenClaw 官方文档,返回结构化 Markdown 内容。

  • 适用于解决配置、CLI 命令、通道集成及技能使用中的具体问题。
  • 自动抓取并整理官方资料,输出简洁易读的技术参考信息。
  • 依赖网络连接获取数据,需确保 API 访问权限正常。
  • 结果由 LLM 优化呈现,关键步骤建议交叉核对原始文档。

SKILL.md

name
openclaw-docs-search
description
Real-time retrieval of the latest official OpenClaw documentation, returned as compact LLM-friendly Markdown for config, CLI, channels, gateway, and skills questions.
homepage
https://docs.openclaw.ai/
user-invocable
true

openclaw-docs-search

This 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.

One-Line Pitch

Stop relying on stale model memory and answer from the latest official OpenClaw docs in real time.

Why Use It

  • Answers questions using the latest official OpenClaw docs, reducing stale answers and hallucination risk
  • Returns compact Markdown instead of noisy raw payloads, making follow-up reasoning easier for the model
  • Supports on-demand retrieval of a single documentation page, keeping responses fast and token-efficient
  • Works especially well for setup, configuration, CLI, skills, gateway, diagnostics, and channel integration questions

Core Selling Points

  • Real-time retrieval: queries the official search endpoint first to access the latest public documentation
  • Official-source grounding: works directly against OpenClaw official docs for more trustworthy answers
  • LLM-friendly output: extracts the main article body and converts it into clean Markdown for summarization and follow-up questions

How It Saves Tokens

  • Search responses are converted into compact Markdown instead of returning raw JSON
  • Only high-value fields are kept, such as breadcrumbs, page path, and cleaned content
  • Highlight tags, repeated titles, and extra line breaks are removed from search snippets
  • Detailed retrieval is done one page at a time instead of loading large document sets
  • Only the #content-area main content is extracted from a page, without full navigation, footer, or other noise
  • This "search first, then read one page on demand" workflow helps reduce unnecessary context and token usage

Who Should Install It

  • Individual developers who want assistants to answer from official OpenClaw sources
  • AI assistant or skill authors who want higher answer accuracy and fewer hallucinations
  • Teams that frequently handle deployment, configuration, troubleshooting, channel integration, and skill development

Best-Fit Scenarios

  • The user asks for answers grounded in the latest official OpenClaw docs rather than model memory
  • The user needs help with OpenClaw installation, configuration, CLI, channels, skills, gateway, diagnostics, or operations
  • The agent needs to quickly locate a specific official doc page and return a concise summary
  • The agent needs to inspect one document in more detail while minimizing noise and token usage

When To Invoke This Skill

Use 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.

  • Before modifying any OpenClaw configuration file, first check the latest official docs for field names, structure, defaults, and recommended examples
  • Before using an OpenClaw feature that is not fully familiar, look up the official docs to understand its purpose, limitations, configuration method, and recommended usage
  • When the user asks about OpenClaw config, CLI, channels, gateway, skills, diagnostics, deployment, or operational behavior
  • Before generating configuration examples, command examples, setup steps, or integration instructions that must match the latest documentation
  • When the model is unsure whether its current knowledge is accurate, current, or version-compatible
  • When the task requires minimizing hallucination risk or avoiding outdated OpenClaw guidance

High-Risk Rule

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.

Example Questions

  • Where is the latest OpenClaw Skills configuration documentation?
  • What does the official documentation say about the CLI?
  • Can you find the latest official Gateway documentation?
  • What does the current official documentation say about channel integration?
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 use zh-Hans when Chinese results are explicitly required.

Step 1: Keyword Search

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"
  }
}'

Step 2: Result Cleanup and Formatting

To reduce LLM token usage and reading noise, the skill filters the returned JSON and converts it into Markdown.

  1. Extract breadcrumbs with navigation context, or fall back to title.
  2. Keep the exact page path from page.
  3. Clean the content field by removing repeated titles and unnecessary blank lines.
  4. Discard low-value fields such as 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. ...

Step 3: Fetch and Parse a Specific Document

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.

  1. Join the base URL https://docs.openclaw.ai/ with the selected page path, for example https://docs.openclaw.ai/zh-CN/tools/skills-config.
  2. Send a GET request to fetch the full HTML page.
  3. Parse the HTML and extract only the element with id="content-area".
  4. Use turndown to convert the extracted HTML into LLM-friendly Markdown.
  5. Fetch only the page you need instead of crawling the entire site.

Output Requirements

  • Prefer compact Markdown over raw JSON for search results
  • Remove search highlight tags, redundant metadata, repeated titles, and irrelevant noise
  • For detail pages, keep only the #content-area main content and exclude full-page navigation, footer, or script content
  • Preserve source paths whenever possible so the user or agent can continue exploring

Constraints

  • Do not mirror or crawl the full site in bulk
  • Do not request sensitive pages unrelated to public documentation content
  • Do not return real secrets, tokens, or private user information
  • Prefer an on-demand retrieval workflow to minimize unnecessary requests

Execution Guidance

  • Prefer available HTTP or web-fetch tools for both search and detail retrieval
  • During search, call the official search endpoint first and extract page from the results
  • For detail view, build the URL by joining https://docs.openclaw.ai/ with page
  • Extract only the HTML inside #content-area, then convert it into Markdown
  • If result quality is weak, rewrite the query into more precise English keywords and search again

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.62%
按下载量换算1,254

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills