Awesome-omni-skill context7-skills
Use when a user asks to search, install, list, or remove skills with the Context7 ctx7 skills CLI (including npx ctx7) and needs correct subcommands or client flags.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/context7-skills" ~/.claude/skills/diegosouzapw-awesome-omni-skill-context7-skills && rm -rf "$T"
manifest:
skills/cli-automation/context7-skills/SKILL.mdsource content
Context7 Skills
Overview
Use the Context7 CLI to manage skills via
ctx7 skills (or npx ctx7 skills). Keep commands short, explicit, and limited to search/install/list/remove.
Scope
- Covers only Context7 CLI skill management:
.ctx7 skills search|install|list|remove - Does not cover Context7 MCP docs, agents, or API tools.
Quick Reference
| Action | Command | Notes |
|---|---|---|
| Search | | Use multiple keywords if needed. is fine. |
| Install | `ctx7 skills install <repo> [skill ...] [--cursor | --claude |
| List | `ctx7 skills list [--cursor | --claude |
| Remove | `ctx7 skills remove <skill> [--cursor | --claude |
Implementation
Example session:
# Search for skills about pytorch npx ctx7 skills search pytorch # Install the uv skill from the registry repo ctx7 skills install /anthropics/skills uv # List installed skills and find slide-creator in the output ctx7 skills list --claude
Rationalization Table
| Excuse | Reality |
|---|---|
| "I can just use ctx7 search" | The command is . The subcommand is required. |
| "This is about docs, so use MCP tools" | This skill is only for CLI skill management. Stick to . |
| "Client flags are optional, I can skip them" | Use , , or when the user specifies a target client. |
Red Flags - STOP and Correct
- Using
orctx7 search
without thectx7 install
subcommandskills - Answering with MCP docs or API tools instead of CLI commands
- Ignoring a requested client target (Cursor/Claude/global)
Common Mistakes
- Confusing
withctx7
when the CLI is not installed.npx ctx7 - Omitting the repository path for install (e.g.,
)./anthropics/skills - Assuming
filters by name; it only lists, so scan the output.list