# Send Clawd Docs V2 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawd-docs-v2",
    "name": "Clawd Docs V2",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/aranej/clawd-docs-v2",
    "canonicalUrl": "https://clawhub.ai/aranej/clawd-docs-v2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawd-docs-v2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-docs-v2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawd-docs-v2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:19:45.848Z",
      "expiresAt": "2026-05-06T10:19:45.848Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-docs-v2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-docs-v2",
        "contentDisposition": "attachment; filename=\"clawd-docs-v2-2.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawd-docs-v2"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawd-docs-v2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawd-docs-v2",
    "downloadUrl": "https://openagent3.xyz/downloads/clawd-docs-v2",
    "agentUrl": "https://openagent3.xyz/skills/clawd-docs-v2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawd-docs-v2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawd-docs-v2/agent.md"
  }
}
```
## Documentation

### 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

### 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 matchestelegram-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:

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: Check Full Page Cache

BEFORE fetching via brightdata, check if the page is already cached:

# Convert path: concepts/memory → concepts_memory.md
ls ~/clawd/data/docs-cache/ | grep "concepts_memory"

If exists, read locally (0 tokens!):

cat ~/clawd/data/docs-cache/concepts_memory.md

### Step 4: Fetch Page (only if NOT in cache)

Use native web_fetch tool (part of Clawdbot core - FREE and fast!):

web_fetch({ url: "https://docs.clawd.bot/{path}", extractMode: "markdown" })

Example:

web_fetch({ url: "https://docs.clawd.bot/tools/skills", extractMode: "markdown" })

web_fetch advantages:

web_fetchbrightdataCost$0 (free!)~$0.003/callSpeed~400ms2-5sQualityMarkdown ✅Markdown ✅

### 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 CategoryTTLWhyinstall/updating1 dayAlways current!gateway/*7 daysConfig changeschannels/*7 daysProvider updatestools/*7 daysFeatures addedconcepts/*14 daysRarely changesreference/*30 daysStable templates

Check snippet expiry:

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

### "Ako nastaviť Telegram?"

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

### "allowFrom nefunguje"

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

### "Token expired / oauth error"

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

### "Ako updatnúť ClawdBot?"

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

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

Search index → tools/skills
Fetch: web_fetch({ url: "https://docs.clawd.bot/tools/skills", extractMode: "markdown" })

### "Multi-agent routing"

Search index → concepts/multi-agent
Fetch: web_fetch({ url: "https://docs.clawd.bot/concepts/multi-agent", extractMode: "markdown" })

### Fallback: Full Index Refresh

If you can't find what you need:

web_fetch({ url: "https://docs.clawd.bot/llms.txt", extractMode: "markdown" })

Returns complete list of all documentation pages.

### Token Efficiency Guide

MethodTokensWhen to useGolden Snippet~300-500✅ Always first!Search Index0Keyword lookupFull Page Fetch~8-12kLast resortBatch 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
└── docs-cache/           # Full page cache (future)

### Version Info

ItemValueSkill version2.1.0Created2026-01-14Updated2026-01-26AuthorsClaude Code + Clawd (collaborative)Sourcehttps://docs.clawd.bot/Dependenciesweb_fetch (Clawdbot core tool)Index pages~50 core pagesGolden snippets7 pre-cached

### v2.2.0 (2026-01-26)

Migration to web_fetch - replaced brightdata MCP with native Clawdbot tool
Benefits: FREE ($0), faster (~400ms vs 2-5s)
No external dependencies (mcporter no longer required)
Collaborative work: Claude Code 🦞 implementation, Clawd 🐾 review

### v2.1.3 (2026-01-25) - ClawdHub

Documentation fix: check vs refresh clarification

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aranej
- Version: 2.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T10:19:45.848Z
- Expires at: 2026-05-06T10:19:45.848Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawd-docs-v2)
- [Send to Agent page](https://openagent3.xyz/skills/clawd-docs-v2/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawd-docs-v2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawd-docs-v2/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawd-docs-v2)