vc-docs-seeker

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

2|Updated Sep 15, 2025
One-click install
npx skills add https://github.com/marsley01/Marsley-Portfolio-Web --skill vc-docs-seeker-marsley01
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vc-docs-seeker
Source: https://github.com/marsley01/Marsley-Portfolio-Web/tree/main/.agents/skills/vc-docs-seeker
Command: npx skills add https://github.com/marsley01/Marsley-Portfolio-Web --skill vc-docs-seeker-marsley01

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 syntax. This Skill resolves library documentation through Context7 first, with llms.txt-based discovery scripts as a fallback, so you get targeted API answers 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 sections in 10-15 seconds. - Fallback discovery chain: Scripts classify queries, construct context7.com URLs with automatic topic-to-general fallback, and analyze llms.txt files to recommend agent distribution strategies. - Use Case: Ask "How do I configure caching in Next.js?" and the Skill detects the topic, fetches the cache-specific documentation URLs, and returns targeted guidance instead of the entire Next.js docs. ## 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 only the relevant llms.txt section from context7.com, returning targeted results in 10-15 seconds.

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

llms.txt is a structured documentation index file that lists curated URLs for a library's docs. The Skill fetches it from context7.com, parses the URLs, and categorizes them by priority to guide documentation retrieval.

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

The Skill follows a fallback chain: it tries the general library URL, then searches the web for an official llms.txt, and finally falls back to repository analysis by cloning the GitHub repo and packing it with Repomix.

Does the docs lookup support version-specific documentation?

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

Why does a topic-specific documentation query return a 404?

A 404 means the topic-filtered URL is unavailable or the library is not indexed on context7.com. The fetch script automatically falls back to the general library URL, then suggests web search or repository analysis.