Skip to content
Compound Design
5

SkillsSkillDraft

find-docs

Fetches current documentation, API references and code examples for any library, framework, SDK or CLI using Context7.

Type: Skill

When to use it

Whenever the task involves a specific library, even a well-known one (React, Next.js, Tailwind). The model should not rely on memory for API syntax, config options or version migrations.

How to install

Copy the folder to ~/.claude/skills/find-docs/ (global) or .claude/skills/find-docs/ (per project). The skill runs `npx ctx7@latest` with no global install.

The code

---
name: find-docs
description: Retrieves up-to-date documentation, API references, and code examples for any developer technology. Use whenever the user asks about a specific library, framework, SDK, CLI tool, or cloud service.
---

# Documentation Lookup

Run commands with `npx ctx7@latest`:

```bash
npx ctx7@latest library <name> "<query>"
npx ctx7@latest docs <libraryId> "<query>"
```

1. Resolve the library ID first.
2. Pick the best match (exact name, reputation, snippet count).
3. Fetch docs with a specific, single-concept query.
4. Answer from the fetched documentation.

Source: Skillsupdated 2026-09-04