Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Smart ClawdBot documentation access with local search index, cached snippets, and on-demand fetch. Token-efficient and freshness-aware.
.claude/skills/sundial-org-clawd-docs-v2/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 122% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 55% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 179% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 65% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 149% | 0% |
This skill provides intelligent access to ClawdBot documentation with:
Before fetching anything, check if a Golden Snippet exists:
bashls ~/clawd/data/docs-snippets/
Available snippets (check cache first!): | Snippet | Query matches | |---------|---------------| | telegram-setup.md | "ako nastaviť telegram", "telegram setup" | | telegram-allowfrom.md | "allowFrom", "kto mi môže písať", "access control" | | oauth-troubleshoot.md | "token expired", "oauth error", "credentials" | | update-procedure.md | "ako updatnuť", "update clawdbot" | | restart-gateway.md | "restart", "reštart", "stop/start" | | config-basics.md | "config", "nastavenie", "konfigurácia" | | config-providers.md | "pridať provider", "discord setup", "nový kanál" | | memory-search.md | "memory", "vector search", "pamäť", "embeddings" |
Read snippet:
bashcat ~/clawd/data/docs-snippets/telegram-setup.md
Check ~/clawd/data/docs-index.json for page suggestions.
Keyword matching:
BEFORE fetching via brightdata, check if the page is already cached:
bash# Convert path: concepts/memory → concepts_memory.md ls ~/clawd/data/docs-cache/ | grep "concepts_memory"
If exists, read locally (0 tokens!):
bashcat ~/clawd/data/docs-cache/concepts_memory.md
Use native web_fetch tool (part of Clawdbot core - FREE and fast!):
javascriptweb_fetch({ url: "https://docs.clawd.bot/{path}", extractMode: "markdown" })
Example:
javascriptweb_fetch({ url: "https://docs.clawd.bot/tools/skills", extractMode: "markdown" })
web_fetch advantages: | | web_fetch | brightdata | |---|-----------|------------| | Cost | $0 (free!) | ~$0.003/call | | Speed | ~400ms | 2-5s | | Quality | Markdown ✅ | Markdown ✅ |
Location: ~/clawd/data/docs-index.json
json{ "pages": [ { "path": "channels/telegram", "ttl_days": 7, "keywords": ["telegram", "tg", "bot", "allowfrom"] } ], "synonyms": { "telegram": ["tg", "telegrambot"], "configuration": ["config", "nastavenie", "settings"] } }
Use synonyms for fuzzy matching.
| Page Category | TTL | Why | |---------------|-----|-----| | install/updating | 1 day | Always current! | | gateway/* | 7 days | Config changes | | channels/* | 7 days | Provider updates | | tools/* | 7 days | Features added | | concepts/* | 14 days | Rarely changes | | reference/* | 30 days | Stable templates |
Check snippet expiry:
bashhead -10 ~/clawd/data/docs-snippets/telegram-setup.md | grep expires
~/clawd/data/docs-snippets/telegram-setup.md~/clawd/data/docs-snippets/telegram-allowfrom.md~/clawd/data/docs-snippets/oauth-troubleshoot.md~/clawd/data/docs-snippets/update-procedure.mdweb_fetch({ url: "https://docs.clawd.bot/tools/skills", extractMode: "markdown" })web_fetch({ url: "https://docs.clawd.bot/concepts/multi-agent", extractMode: "markdown" })If you can't find what you need:
javascriptweb_fetch({ url: "https://docs.clawd.bot/llms.txt", extractMode: "markdown" })
Returns complete list of all documentation pages.
| Method | Tokens | When to use | |--------|--------|-------------| | Golden Snippet | ~300-500 | ✅ Always first! | | Search Index | 0 | Keyword lookup | | Full Page Fetch | ~8-12k | Last resort | | Batch Fetch | ~20-30k | Multiple related topics |
80-90% of queries should be answered from snippets!
~/clawd/data/
├── docs-index.json # Search index
├── docs-stats.json # Usage tracking
├── docs-snippets/ # Cached Golden Snippets
│ ├── telegram-setup.md
│ ├── telegram-allowfrom.md
│ ├── oauth-troubleshoot.md
│ ├── update-procedure.md
│ ├── restart-gateway.md
│ └── config-basics.md
└── docs-cache/ # Full page cache (future)| Item | Value | |------|-------| | Skill version | 2.1.0 | | Created | 2026-01-14 | | Updated | 2026-01-26 | | Authors | Claude Code + Clawd (collaborative) | | Source | https://docs.clawd.bot/ | | Dependencies | web_fetch (Clawdbot core tool) | | Index pages | ~50 core pages | | Golden snippets | 7 pre-cached |
This skill provides smart documentation access - always cached snippets first, fetch only when necessary.
Other measured skills in the registry, with their headline benchmark lift.