search-openclaw-docs
⚠Review·Scanned 2/18/2026
This skill provides offline FTS5-based search across OpenClaw documentation and returns file paths to read. It instructs running node scripts (e.g., node ~/.openclaw/skills/search-openclaw-docs/scripts/docs-index.js rebuild), cloning https://github.com/karmanverma/search-openclaw-docs.git, and editing AGENTS.md/openclaw.json.
from clawhub.ai·v8bb0f1a·22.5 KB·0 installs
Scanned from 2.2.0 at 8bb0f1a · Transparency log ↗
$ vett add clawhub.ai/karmanverma/search-openclaw-docsReview findings below
search-openclaw-docs
📚 OpenClaw agent skill for fast documentation search.
Returns file paths to read - find the right doc quickly, then get full context.
Fully offline - FTS5 keyword search, no network calls.
Install
Via ClawHub
clawhub install search-openclaw-docs
Manual
cd ~/.openclaw/skills
git clone https://github.com/karmanverma/search-openclaw-docs.git
cd search-openclaw-docs
npm install
node scripts/docs-index.js rebuild
Usage
# Search docs
node scripts/docs-search.js "discord requireMention"
# Check index health
node scripts/docs-status.js
# Rebuild index (after OpenClaw update)
node scripts/docs-index.js rebuild
Example Output
🔍 Query: discord only respond when mentioned
🎯 Best match:
channels/discord.md
"Discord (Bot API)"
Keywords: discord, requiremention
Score: 0.70
💡 Read with:
cat /usr/lib/node_modules/openclaw/docs/channels/discord.md
How It Works
- FTS5 keyword matching on titles, headers, config keys
- Handles camelCase terms like
requireMention - Porter stemming for flexible matching
- Index built locally from your OpenClaw version
License
MIT