# Send Docs Feeder 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": "docs-feeder",
    "name": "Docs Feeder",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/zerone0x/docs-feeder",
    "canonicalUrl": "https://clawhub.ai/zerone0x/docs-feeder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/docs-feeder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docs-feeder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "docs-registry.json",
      "fetch-docs.js",
      "fetch-docs.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "docs-feeder",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:11:06.812Z",
      "expiresAt": "2026-05-06T17:11:06.812Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docs-feeder",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docs-feeder",
        "contentDisposition": "attachment; filename=\"docs-feeder-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "docs-feeder"
      },
      "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/docs-feeder"
    },
    "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/docs-feeder",
    "downloadUrl": "https://openagent3.xyz/downloads/docs-feeder",
    "agentUrl": "https://openagent3.xyz/skills/docs-feeder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/docs-feeder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/docs-feeder/agent.md"
  }
}
```
## Documentation

### Docs Feeder

Auto-fetch project documentation and feed it to your AI agent for debugging and learning.

### Triggers

docs feed <project>
fetch docs <URL>

### How It Works

Registry Lookup — 50+ built-in projects (React, Next.js, Hono, Prisma, Anthropic, etc.)
Fetch Priority:

/llms-full.txt → Full LLM-friendly docs
/llms.txt → Compact version
GitHub README → Fallback


Smart Discovery — Unknown projects try common patterns (docs.xxx.com, xxx.dev)
Size Warning — Alerts when docs exceed 500KB

### Usage

# By project name (auto-lookup)
node fetch-docs.js nextjs

# By URL (direct fetch)
node fetch-docs.js https://docs.anthropic.com

# Raw content only (no metadata header)
node fetch-docs.js react --raw

# Save to file
node fetch-docs.js prisma --save

# List all supported projects
node fetch-docs.js --list

### Built-in Registry

50+ projects including: React, Next.js, Vue, Svelte, Astro, Hono, Express, Fastify, NestJS, Prisma, Drizzle, tRPC, Zod, Tailwind CSS, shadcn/ui, TypeScript, Vite, Bun, Deno, Playwright, Vitest, Supabase, Stripe, Clerk, Anthropic, OpenAI, LangChain, Docker, Kubernetes, Terraform, Rust, Go, Python, FastAPI, Django, and more.

Edit docs-registry.json to add your own projects.

### Registry Format

{
  "myproject": {
    "url": "https://myproject.dev",
    "llms": "/llms-full.txt",
    "github": "org/repo",
    "local": "/path/to/local/docs"
  }
}

### Workflow

Fetch docs, then describe your problem:

→ node fetch-docs.js nextjs
→ [docs loaded into context]

"I'm getting a hydration mismatch error with App Router..."
→ [AI gives solution based on complete documentation]

### Why This Works

Most modern doc sites ship /llms.txt or /llms-full.txt — a single file with the entire knowledge base formatted for LLMs. Instead of searching + reading + understanding docs manually, dump the whole thing into context and let the AI cross-reference.

### Requirements

Node.js (no external dependencies)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zerone0x
- Version: 1.0.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-29T17:11:06.812Z
- Expires at: 2026-05-06T17:11:06.812Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/docs-feeder)
- [Send to Agent page](https://openagent3.xyz/skills/docs-feeder/agent)
- [JSON manifest](https://openagent3.xyz/skills/docs-feeder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/docs-feeder/agent.md)
- [Download page](https://openagent3.xyz/downloads/docs-feeder)