LaunchKit · 2026
Back to Skills

agent-docs

AI & LLMsv1.0.0

Create documentation optimized for AI agent consumption.

4
2.2k downloads
by @tylervovan

Setup & Installation

openclaw skills install @tylervovan/agent-docs

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-docs

What This Skill Does

Guides writing documentation structured for AI agent consumption, covering token efficiency, RAG chunking, and context hierarchy. Applies to AGENTS.md constitutions, llms.txt indexes, SKILL.md files, and API docs read by LLMs. Based on Vercel benchmarks showing inline docs achieve 100% agent task pass rates versus 53% with retrieval-only approaches.

Inline AGENTS.md achieves a 100% agent task pass rate compared to 53% for tool-based retrieval alone, because agents skip fetching docs they assume they already know from training.

When to use it

  • Writing AGENTS.md constitutions for a new codebase
  • Generating a llms.txt index for an existing project
  • Structuring API docs so an agent retrieves the right chunk
  • Auditing a README for token efficiency before adding it to agent context
  • Creating SKILL.md files for OpenClaw agent workflows

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Create an AGENTS.md for my Next.js project

AGENT
  1. 1Identifies stack, architecture constraints, and critical governance rules
  2. 2Places security rules and build commands at the top to exploit primacy bias
  3. 3Writes a compressed docs index with file paths and function signatures, not full code
  4. 4Structures each H2 section to be self-contained for RAG chunk boundaries
  5. 5Validates total inline context stays under 4,000 tokens
OUTPUT

AGENTS.md with governance rules, a docs index, and architecture constraints ready for agent context windows