read-docs

Fetch and aggregate documentation content from Fumadocs sites via llms.txt and Markdown paths.

Updated Apr 5, 2026
One-click install
npx skills add https://github.com/NarakCODE/rakui --skill read-docs-narakcode
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: read-docs
Source: https://github.com/NarakCODE/rakui/tree/main/.agents/skills/read-docs
Command: npx skills add https://github.com/NarakCODE/rakui --skill read-docs-narakcode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Efficiently locate and retrieve accurate content from documentation sites powered by Fumadocs, reducing manual search time and information gaps.

Core Features & Use Cases

  • Page discovery via llms.txt: Uses a plain-text index at the site root to enumerate crawlable documentation pages.
  • Processed Markdown access: Retrieves Markdown content from paths like /llms.mdx/docs/<path>/content.md for clean, LLM input-ready data.
  • Search API integration: Consumes GET /api/search?query=<search-term> to surface structured results with titles, excerpts, and URLs.
  • Use Case: A developer needs installation instructions and API references; the skill gathers the relevant page(s) and returns a concise, structured summary.

Quick Start

Ask the AI to fetch the content of a specific docs page from a Fumadocs site.

Frequently Asked Questions about read-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retrieve Markdown documentation content from Fumadocs sites?

To retrieve Markdown documentation content from Fumadocs sites, fetch the processed files at /llms.mdx/docs/<path>/content.md. This approach provides clean, LLM-ready Markdown directly from the source without requiring local dependencies.

What is llms.txt used for in Fumadocs page discovery?

In Fumadocs page discovery, llms.txt is a plain-text index located at the site root used to enumerate crawlable documentation pages. It allows automated tools to discover available documentation URLs efficiently before fetching their content.

Can I search Fumadocs documentation using an API endpoint?

Yes, you can search Fumadocs documentation using the GET /api/search endpoint. Supplying a search term retrieves structured results containing titles, excerpts, and URLs for targeted content retrieval.

Does retrieving Fumadocs content require installing local dependencies?

Retrieving Fumadocs content does not require installing local dependencies. The process operates entirely in a read-only workflow by fetching remote resources like llms.txt, content.md files, and the search API over the network.