vc-docs-seeker

Search library and framework documentation via Context7 and llms.txt discovery scripts.

Updated Apr 9, 2026
One-click install
npx skills add https://github.com/HyuseCS/project-c --skill vc-docs-seeker-hyusecs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vc-docs-seeker
Source: https://github.com/HyuseCS/project-c/tree/main/.claude/skills/vc-docs-seeker
Command: npx skills add https://github.com/HyuseCS/project-c --skill vc-docs-seeker-hyusecs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Finding accurate, up-to-date documentation for libraries and frameworks is slow when you must manually browse docs sites or guess API usage. This Skill resolves library documentation through Context7 first, with llms.txt-based discovery scripts as a fallback, so you get targeted API references, setup guides, and feature docs quickly. ## Core Features & Use Cases - Context7-first lookup: Resolves libraries and queries exact API, config, or setup questions through Context7 before falling back to local scripts. - Topic-specific search: Detects the library and topic in a query (e.g., "date picker in shadcn") and fetches only relevant llms.txt URLs in 10-15 seconds. - General library search: Retrieves full llms.txt indexes, categorizes URLs by priority (critical/important/supplementary), and recommends parallel agent distribution for comprehensive coverage. - Repository analysis fallback: Clones GitHub repos and packs them with Repomix when no llms.txt exists, extracting docs from README, docs/, and examples/. - Use Case: You ask "How do I configure caching in Next.js?" The Skill detects the topic, fetches context7.com/vercel/next.js/llms.txt?topic=cache, and returns only caching-related documentation URLs. ## Quick Start Ask how to use a specific feature of a library, such as "How do I use the date picker component in shadcn/ui?"

Frequently Asked Questions about vc-docs-seeker

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

FAQPage Schema
How do I find documentation for a specific library feature?

Ask a topic-specific question like "How do I use date picker in shadcn?" The Skill detects the library and topic, then fetches a targeted context7.com llms.txt URL such as /shadcn-ui/ui/llms.txt?topic=date, returning only relevant docs in 10-15 seconds.

What is llms.txt and how does it help find API docs?

llms.txt is a curated index file listing a project's key documentation URLs in an AI-friendly format. The Skill fetches it from context7.com, categorizes URLs by priority, and recommends how many parallel agents should process them.

What happens if a library is not on context7.com?

The fallback chain tries the general library URL, then a web search for an official llms.txt, and finally repository analysis. Repository analysis clones the GitHub repo and packs it with Repomix to extract docs from README, docs/, and examples/.

Does the docs search support version-specific documentation?

Yes. For specific versions, the Skill searches for versioned llms.txt paths like /v2/llms.txt or checks out the matching git tag during repository analysis. The base llms.txt URL returns the latest version by default.

Do I need an API key to use Context7 documentation lookup?

No, an API key is optional. Setting CONTEXT7_API_KEY in the .env file adds a Bearer token to requests, which helps with rate limits, but the scripts work without it.