A collection of Agent Skills for interacting with Read the Docs APIs and services.
Agent Skills are modular packages that extend AI agent capabilities. Each skill is a folder containing a SKILL.md file with instructions, plus optional supporting files like scripts and templates.
Skills are model-invoked — agents autonomously decide when to use them based on your request and the skill's description.
Learn more at agentskills.io
Query the Read the Docs Search API to find documentation across millions of pages of hosted documentation.
- Location:
.claude/skills/readthedocs-search-api/ - Use when: Searching documentation, finding related docs, finding API documentation, or gathering information about projects on Read the Docs
- Base URL:
https://readthedocs.org/api/v3/search/
Clone this repository and place it in your project:
git clone https://github.com/readthedocs/skills.git .claude/skillsOr add it as a submodule:
git submodule add https://github.com/readthedocs/skills.git .claude/skillsSkills are automatically discovered by Claude and other compatible agents. Simply ask a question that matches a skill's description, and the agent will use it autonomously.
Example:
Can you find documentation on the Read the Docs YAML file
The Read the Docs Search API skill will activate and search the API for relevant documentation.
.
├── README.md
└── .claude/skills/
└── readthedocs-search-api/
└── SKILL.md
To add a new skill:
- Create a directory in
.claude/skills/with a descriptive name - Add a
SKILL.mdfile with YAML frontmatter and instructions - (Optional) Add supporting files like scripts or references
- Test the skill with your agent
- Submit a pull request
See agentskills.io/specification for the complete SKILL.md format specification.
These skills are available under the MIT License. See LICENSE for details.