Agent Skills: Context7 CLI

CLI tool for managing AI coding skills across different AI assistants like Claude, Cursor, and others. Use when you need to search, install, generate, or manage AI coding skills using the Context7 registry. Supports authentication, skill discovery, installation, and generation workflows.

UncategorizedID: arisng/github-copilot-fc/context7-cli

Install this agent skill to your local

pnpm dlx add-skill https://github.com/arisng/github-copilot-fc/tree/HEAD/skills/context7-cli

Skill Files

Browse the full folder contents for context7-cli.

Download Skill

Loading file tree…

skills/context7-cli/SKILL.md

Skill Metadata

Name
context7-cli
Description
CLI tool for managing AI coding skills across different AI assistants like Claude, Cursor, and others. Use when you need to search, install, generate, or manage AI coding skills using the Context7 registry. Supports authentication, skill discovery, installation, and generation workflows.

Context7 CLI

This skill provides guidance for using the Context7 CLI (ctx7) to manage AI coding skills across different AI assistants.

Installation

The Context7 CLI can be installed globally or run directly with npx:

# Install globally
npm install -g ctx7

# Or run directly (no installation needed)
npx ctx7

Authentication

Before using authenticated features like skill generation, you need to log in:

# Log in (opens browser for OAuth)
ctx7 login

# Check login status
ctx7 whoami

# Log out
ctx7 logout

Core Workflows

Searching for Skills

Search the Context7 registry for skills by topic or technology:

# Search for skills
ctx7 skills search pdf
ctx7 skills search typescript
ctx7 skills search "react testing"

Installing Skills

Install skills from the registry to your AI assistant:

# Install a specific skill
ctx7 skills install /anthropics/skills pdf

# Install multiple skills
ctx7 skills install /anthropics/skills pdf commit

# Install to specific AI assistant
ctx7 skills install /anthropics/skills pdf --claude
ctx7 skills install /anthropics/skills pdf --cursor

# Install globally (home directory)
ctx7 skills install /anthropics/skills pdf --global

Generating Custom Skills

Create new skills tailored to your needs using AI:

# Generate a skill (requires login)
ctx7 skills generate

# Generate for specific assistant
ctx7 skills generate --claude
ctx7 skills generate --cursor

# Short aliases
ctx7 skills gen
ctx7 skills g

The generation process:

  1. Describe the expertise you want (e.g., "OAuth authentication with NextAuth.js")
  2. Select relevant libraries from search results
  3. Answer clarifying questions
  4. Review and install the generated skill

Managing Installed Skills

# List installed skills
ctx7 skills list
ctx7 skills list --claude
ctx7 skills list --global

# Get info about available skills in a project
ctx7 skills info /anthropics/skills

# Remove a skill
ctx7 skills remove pdf
ctx7 skills remove pdf --claude

Supported AI Assistants

The CLI automatically detects and supports:

  • Claude Code (.claude/skills/)
  • Cursor (.cursor/skills/)
  • Codex (.codex/skills/)
  • OpenCode (.opencode/skills/)
  • Amp (.agents/skills/)
  • Antigravity (.agent/skills/)

Common Use Cases

Finding Skills for Specific Tasks

When a user needs skills for a particular technology or framework:

  1. Search the registry: ctx7 skills search <topic>
  2. Review results and install relevant skills
  3. Verify installation with ctx7 skills list

Setting Up a New Project

For new projects, install commonly needed skills:

# Install essential skills for web development
ctx7 skills install /anthropics/skills typescript react testing --claude

Creating Custom Skills

When existing skills don't cover specific needs:

  1. Use ctx7 skills generate for AI-assisted creation
  2. Provide detailed description of required expertise
  3. Review and refine the generated skill
  4. Install to your preferred AI assistant

Tips

  • Use short aliases for faster workflow: ctx7 si (install), ctx7 ss (search)
  • Skills are installed to project-specific directories by default
  • Use --global flag for skills available across all projects
  • Generation has weekly limits (6 free, 10 pro accounts)
  • Visit context7.com to browse the registry manually