skills/context7-cli/SKILL.md
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.
npx skillsauth add arisng/github-copilot-fc context7-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides guidance for using the Context7 CLI (ctx7) to manage AI coding skills across different AI assistants.
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
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
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"
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
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:
# 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
The CLI automatically detects and supports:
.claude/skills/).cursor/skills/).codex/skills/).opencode/skills/).agents/skills/).agent/skills/)When a user needs skills for a particular technology or framework:
ctx7 skills search <topic>ctx7 skills listFor new projects, install commonly needed skills:
# Install essential skills for web development
ctx7 skills install /anthropics/skills typescript react testing --claude
When existing skills don't cover specific needs:
ctx7 skills generate for AI-assisted creationctx7 si (install), ctx7 ss (search)--global flag for skills available across all projectsdevops
Programmatically create tldraw whiteboards and visualize them with a self-hosted tldraw instance. Create boards with shapes, text, and connectors, then deploy to a self-hosted server for collaborative editing and gallery management.
tools
Execute Google Cloud Platform operations using the gcloud CLI (and gsutil/bq where applicable). Use when the user wants to: authenticate with GCP, manage GCP resources, deploy applications, configure projects or IAM, view logs, run SQL/BigQuery, or interact with any GCP service from the command line. Triggers on phrases like "gcloud", "Google Cloud CLI", "deploy to GCP", "create a VM", "Cloud Run", "GKE cluster", "Cloud Storage bucket", "set GCP project", "service account", "Cloud Functions", "App Engine deploy", or any request to manage Google Cloud resources via command line.
testing
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
development
Session-scoped git commit orchestrator that commits only current-session changes and leaves unrelated dirty worktree edits untouched. Inherits git-atomic-commit for atomic grouping and commit message execution, and git-commit-scope-constitution for scope governance and validation. Use when asked to commit this session only or isolate commits from mixed worktree state.