netresearch/context7-skill

context7

Use when looking up library documentation, API references, framework patterns, or code examples for ANY library (React, Next.js, Vue, Django, Laravel, etc.) and the Context7 MCP server is unavailable or not configured.

All-time #8634 Trending #5154 Hot #1251 First seen Jan 25, 2026
8-week activity · all time api

Installation

$ npx skills add netresearch/context7-skill --skill context7

Summary

  • Use when looking up library documentation, API references, framework patterns, or code examples for ANY library (React, Next.js, Vue, Django, Laravel, etc.) and the Context7 MCP server is unavailable or not configured.
  • Fetches the same current docs directly via the Context7 REST API as a fallback.
  • Triggers on: how to use library, API docs, framework pattern, import usage, library example.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 59
License LICENSE-CC-BY-SA-4.0
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.7.1
License(MIT AND CC-BY-SA-4.0)
CompatibilityRequires curl or fetch, jq.
Allowed toolsBash(curl:*), Bash(jq:*), Read
More metadata
version
1.7.1
repository
https://github.com/netresearch/context7-skill
author
Netresearch DTT GmbH

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,153 B
  • docs SUMMARY.md 407 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1,208 installs

SKILL.md

Context7 Documentation Lookup Skill

Fetch current library documentation, API references, and code examples via the Context7 REST API.

When to Use

Use this skill when the user asks about library APIs, framework patterns, or version-specific behavior. Trigger on:

  • Library questions: "How do I use [library]?", "[library] API docs", "[library] patterns"
  • Import statements: import, require, from followed by a library name
  • Framework-specific topics: hooks, routing, middleware, ORM queries, schema definitions

When NOT to Use

Do NOT use this skill for:

  • General programming concepts (closures, recursion, design patterns)
  • Code review or refactoring tasks
  • Debugging business logic
  • Writing scripts from scratch without library-specific questions

Core Workflow

  1. Search for the library ID:

``bash scripts/context7.sh search "library-name" ``

  1. Pick the best result: Choose the ID with the highest score and most relevant description. Prefer official sources (e.g., /vercel/next.js over community forks).
  1. Fetch documentation with a focused topic:

``bash scripts/context7.sh docs "<library-id>" "<topic>" "<mode>" ``

Always extract a specific topic from the user's question. For "How does React Suspense work with server components?", use topic suspense server components.

Parameters

Parameter Required Description
library-id Yes From search results, format /vendor/library
topic No Focus area extracted from user query (e.g., hooks, routing, validation)
mode No code (default) for API references; info for conceptual guides

Examples

# React hooks API
scripts/context7.sh search "react"
scripts/context7.sh docs "/facebook/react" "hooks" "code"

# Next.js App Router conceptual guide
scripts/context7.sh search "nextjs"
scripts/context7.sh docs "/vercel/next.js" "app router" "info"

# Django ORM queries
scripts/context7.sh search "django"
scripts/context7.sh docs "/django/django" "queryset filter" "code"

# Laravel Eloquent relationships
scripts/context7.sh search "laravel"
scripts/context7.sh docs "/laravel/framework" "eloquent relationships" "code"

Environment Configuration

Set CONTEXT7APIKEY for higher rate limits (optional):

export CONTEXT7_API_KEY="your-api-key"

Contributing: https://github.com/netresearch/context7-skill