🎯

context7

🎯Skill

from yuanxiao0115/agent-skills

VibeIndex|
What it does

Retrieves up-to-date library documentation via Context7 API, ensuring access to current technical references beyond training data limitations.

πŸ“¦

Part of

yuanxiao0115/agent-skills(22 items)

context7

Installation

Quick InstallInstall with npx
npx skills add yuanxiao0115/agent-skills/skills --all
Quick InstallInstall with npx
npx skills add yuanxiao0115/agent-skills/skills/read-github
Quick InstallInstall with npx
npx skills add yuanxiao0115/agent-skills/skills --skill read-github planner
Quick InstallInstall with npx
npx skills add yuanxiao0115/agent-skills/skills /path/to/your/project
npm installInstall npm package
npm install -g skills

+ 22 more commands

πŸ“– Extracted from docs: yuanxiao0115/agent-skills
5Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

|

Overview

# Context7 Documentation Fetcher

Retrieve current library documentation via Context7 API.

Authentication

This skill requires a Context7 API key in CONTEXT7_API_KEY.

Recommended setup options:

1) Export it in your shell profile (global):

```bash

export CONTEXT7_API_KEY="your-context7-key"

```

2) Use a local .env file (per-repo):

```bash

cp skills/context7/.env.example .env

set -a; source .env; set +a

```

Workflow

1. Search for the library

```bash

python3 ~/.codex/skills/context7/scripts/context7.py search ""

```

Example:

```bash

python3 ~/.codex/skills/context7/scripts/context7.py search "next.js"

```

Returns library metadata including the id field needed for step 2.

2. Fetch documentation context

```bash

python3 ~/.codex/skills/context7/scripts/context7.py context "" ""

```

Example:

```bash

python3 ~/.codex/skills/context7/scripts/context7.py context "/vercel/next.js" "app router middleware"

```

Options:

  • --type txt|md - Output format (default: txt)
  • --tokens N - Limit response tokens

Quick Reference

| Task | Command |

|------|---------|

| Find React docs | search "react" |

| Get React hooks info | context "/facebook/react" "useEffect cleanup" |

| Find Supabase | search "supabase" |

| Get Supabase auth | context "/supabase/supabase" "authentication row level security" |

When to Use

  • Before implementing any library-dependent feature
  • When unsure about current API signatures
  • For library version-specific behavior
  • To verify best practices and patterns

More from this repository10

🎯
read-github🎯Skill

Retrieves and searches GitHub repository documentation and code via gitmcp.io, enabling easy exploration of project contents and details.

🎯
plan-harder🎯Skill

Generates comprehensive, phased implementation plans with atomic tasks, sprints, and detailed requirements analysis for complex development requests.

🎯
agent browser🎯Skill

Enables AI-powered browser automation using a fast Rust-based CLI with Node.js fallback, allowing programmatic web interaction and control.

🎯
planner🎯Skill

Generates comprehensive, phased implementation plans with detailed sprints, atomic tasks, and clear requirements clarification across multiple project stages.

🎯
parallel-task🎯Skill

Launches parallel subagents to simultaneously execute tasks from a markdown plan file, triggered by "/parallel-task" command.

🎯
frontend-design🎯Skill

Crafts distinctive, production-grade frontend interfaces with exceptional design quality, avoiding generic AI aesthetics.

🎯
vue-best-practices🎯Skill

Enforces Vue 3 TypeScript best practices by providing comprehensive type-safe rules for component props, templates, modules, and performance optimization.

🎯
web-design-guidelines🎯Skill

Provides comprehensive web design guidelines and best practices for creating user-friendly, accessible, and visually appealing websites.

🎯
cli-design-guidelines🎯Skill

Provides comprehensive design guidelines for creating user-friendly, robust, and intuitive command-line interfaces with best practices and human-first UX principles.

🎯
dev-browser🎯Skill

Automates browser tasks by maintaining page state, enabling navigation, form filling, screenshots, and web data extraction across script executions.