@jefflee2002/agentskills
v0.1.1
Published
CLI tool to install AI agent skills from the AgentSkills marketplace
Maintainers
Readme
@jefflee2002/agentskills
CLI tool to install AI agent skills from the AgentSkills marketplace
Install skills directly from agentskills.cv to all your AI agents with a single command.
Features
- 🚀 One command, every agent - Automatically detects and installs to Claude Code, Cursor, Codex, OpenClaw, and more
- 🔍 Search marketplace - Find skills directly from the CLI
- 🔄 Convert skills - Convert existing skills to OpenClaw format
- 📦 Manage installations - List installed skills across all agents
Quick Start
# Install a skill
npx @jefflee2002/agentskills install notebooklm
# Search for skills
npx @jefflee2002/agentskills search "git commit"
# List installed skills
npx @jefflee2002/agentskills list
# Show detected agents
npx @jefflee2002/agentskills agentsInstallation
No installation required! Use npx to run the CLI directly:
npx @jefflee2002/agentskills <command>Or install globally:
npm install -g @jefflee2002/agentskillsUsage
Install a skill
# Install to project (local)
npx @jefflee2002/agentskills install <skill-name>
# Install globally
npx @jefflee2002/agentskills install <skill-name> --globalSearch skills
npx @jefflee2002/agentskills search "your query"Convert skills
Convert existing skill files or GitHub repos to OpenClaw format:
# Convert local file
npx @jefflee2002/agentskills convert ./my-skill.md
# Convert GitHub repo
npx @jefflee2002/agentskills convert https://github.com/user/repo
# Convert and install
npx @jefflee2002/agentskills convert ./my-skill.md --installList installed skills
# List project skills
npx @jefflee2002/agentskills list
# List global skills
npx @jefflee2002/agentskills list --globalShow detected agents
npx @jefflee2002/agentskills agentsSupported Agents
- Claude Code -
.claude/skills/(project) or~/.claude/skills/(global) - Cursor -
.cursor/skills/(project) or~/.cursor/skills/(global) - Codex CLI -
.codex/skills/(project) or~/.codex/skills/(global) - OpenClaw -
skills/(project) or~/.openclaw/skills/(global) - OpenCode -
.opencode/skills/(project) or~/.opencode/skills/(global)
Commands
| Command | Description |
|---------|-------------|
| install <name> | Install a skill to detected agents |
| search <query> | Search skills on the marketplace |
| convert <source> | Convert file or URL to OpenClaw format |
| list | List installed skills |
| agents | Show detected AI agents |
Options
| Option | Description |
|--------|-------------|
| --global, -g | Install to global skills directory (~/) |
| --install | With convert: install after converting |
| --help, -h | Show help message |
| --version, -v | Show version |
Examples
# Install a skill globally
npx @jefflee2002/agentskills install commit-analyzer --global
# Search for git-related skills
npx @jefflee2002/agentskills search "git"
# Convert a GitHub skill to OpenClaw and install
npx @jefflee2002/agentskills convert https://github.com/user/skill-repo --install
# List all globally installed skills
npx @jefflee2002/agentskills list --globalEnvironment Variables
| Variable | Description | Default |
|----------|-------------|---------|
| AGENTSKILLS_API | API base URL | https://agentskills.cv/api |
License
MIT
