Context7
A curated collection of reusable agent skills for design, research, browser automation, and developer tooling.
npx -y skills add archibate/agent-skills --skill context7Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 16 days oldThe repository was created 16 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Fetch current docs and code examples for third-party libraries, SDKs, APIs, and CLI tools via Context7. Use before writing or editing non-stdlib library calls — your prior knowledge may be stale. Prefer over web search for library docs.
SKILL.md
1.4 KB, as published. Nobody here has run it
Context7
Fetch up-to-date library documentation and code examples. Requires CONTEXT7_API_KEY environment variable.
When not to use
Skip Context7 for internal/private libraries, stdlib code, raw HTTP/filesystem, shell built-ins, or stable primitives whose signatures haven't changed in years (e.g. json.dumps, os.path).
resolve-library-id
Resolve a package/product name to a Context7 library ID. Call this before query-docs unless the user provides an ID in /org/project format.
libraryName(required): Official library name (e.g., "Next.js", "Three.js")query(required): What the user needs help with — used to rank results by relevance
uv run --script scripts/mcpcall.py resolve-library-id libraryName:"Next.js" query:"app router setup"
query-docs
Retrieve documentation and code examples for a resolved library.
libraryId(required): Context7 library ID fromresolve-library-id(e.g., "/vercel/next.js")query(required): Specific question — be detailed for better results
uv run --script scripts/mcpcall.py query-docs libraryId:"/vercel/next.js" query:"how to set up authentication with JWT"