Back to list
clawdbot

clawd-docs-v2

by clawdbot

All versions of all skills that are on clawdhub.com archived

7🍴 6📅 Jan 24, 2026

SKILL.md


name: clawd-docs-v2 description: Smart ClawdBot documentation access with local search index, cached snippets, and on-demand fetch. Token-efficient and freshness-aware. homepage: https://docs.clawd.bot/ metadata: {"clawdbot":{"emoji":"📚","requires":{"bins":["mcporter"]}}} version: 2.0.0

Clawd-Docs v2.0 - Smart Documentation Access

This skill provides intelligent access to ClawdBot documentation with:

  • Local search index - instant keyword lookup (0 tokens)
  • Cached snippets - pre-fetched common answers (~300-500 tokens)
  • On-demand fetch - full page when needed (~8-12k tokens)
  • Freshness tracking - TTL per page type

Credits


Quick Start

Step 1: Check Golden Snippets First

Before fetching anything, check if a Golden Snippet exists:

ls ~/clawd/data/docs-snippets/

Available snippets (check cache first!):

SnippetQuery 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"

Read snippet:

cat ~/clawd/data/docs-snippets/telegram-setup.md

Step 2: Search Index (if snippet doesn't exist)

Check ~/clawd/data/docs-index.json for page suggestions.

Keyword matching:

  • "telegram" → channels/telegram
  • "oauth" → concepts/oauth, gateway/troubleshooting
  • "update" → install/updating
  • "config" → gateway/configuration

Step 3: Fetch Page (if cache miss)

mcporter call brightdata.scrape_as_markdown url="https://docs.clawd.bot/{path}"

Example:

mcporter call brightdata.scrape_as_markdown url="https://docs.clawd.bot/tools/skills"

Search Index Structure

Location: ~/clawd/data/docs-index.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.


TTL Strategy (Freshness)

Page CategoryTTLWhy
install/updating1 dayAlways current!
gateway/*7 daysConfig changes
channels/*7 daysProvider updates
tools/*7 daysFeatures added
concepts/*14 daysRarely changes
reference/*30 daysStable templates

Check snippet expiry:

head -10 ~/clawd/data/docs-snippets/telegram-setup.md | grep expires

Common Scenarios

"Ako nastaviť Telegram?"

  1. ✅ Read ~/clawd/data/docs-snippets/telegram-setup.md

"allowFrom nefunguje"

  1. ✅ Read ~/clawd/data/docs-snippets/telegram-allowfrom.md

"Token expired / oauth error"

  1. ✅ Read ~/clawd/data/docs-snippets/oauth-troubleshoot.md

"Ako updatnúť ClawdBot?"

  1. ✅ Read ~/clawd/data/docs-snippets/update-procedure.md

"Ako pridať nový skill?" (nie je snippet)

  1. Search index → tools/skills
  2. Fetch: mcporter call brightdata.scrape_as_markdown url="https://docs.clawd.bot/tools/skills"

"Multi-agent routing"

  1. Search index → concepts/multi-agent
  2. Fetch full page (complex topic)

Fallback: Full Index Refresh

If you can't find what you need:

mcporter call brightdata.scrape_as_markdown url="https://docs.clawd.bot/llms.txt"

Returns complete list of all documentation pages.


Token Efficiency Guide

MethodTokensWhen to use
Golden Snippet~300-500✅ Always first!
Search Index0Keyword lookup
Full Page Fetch~8-12kLast resort
Batch Fetch~20-30kMultiple related topics

80-90% of queries should be answered from snippets!


Data Locations

~/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
│   └── config-providers.md
└── docs-cache/           # Full page cache (future)

Version Info

ItemValue
Skill version2.0.0
Created2026-01-14
AuthorsClaude Code + Clawd (collaborative)
Sourcehttps://docs.clawd.bot/
Dependenciesbrightdata skill (mcporter)
Index pages~50 core pages
Golden snippets7 pre-cached

Changelog

v2.0.0 (2026-01-14)

  • 3-layer architecture: Search Index → Snippets → On-demand Fetch
  • Golden Snippets pre-cached for common queries
  • TTL-based freshness tracking
  • Synonym support for fuzzy matching
  • 80-90% token reduction for common queries

v1.0.0 (2026-01-08)

  • Initial release with brightdata fetch only

This skill provides smart documentation access - always cached snippets first, fetch only when necessary.

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon