agentistry
v0.2.4
Published
CLI for searching and installing AI agent skills from Agentistry
Readme
agentistry
The open skill marketplace for AI agents. Search, install, and manage reusable skills for Claude Code, MCP servers, and other AI agents.
Quick Start
# Interactive mode — search, browse, and install
npx agentistry
# Or install globally
npm install -g agentistry
agentistryCommands
Search & Install
# Interactive search + install
agentistry find "code review"
# Search (non-interactive, great for scripts)
agentistry search "testing"
agentistry search --target claude_code --limit 10
# Install a skill
agentistry add inspect-api-surface
agentistry add owner/repo # from GitHub
agentistry add ./local-skill # from local path
agentistry add some-skill --global # install globally
agentistry add some-skill -y # skip prompts (CI-friendly)Manage Installed Skills
# List installed skills
agentistry list
agentistry ls --global
# Check for updates
agentistry check
# Update all skills
agentistry update
agentistry update -y # skip prompts
# Remove skills
agentistry remove my-skill
agentistry rm my-skill -yCreate & Publish Skills
# Scaffold a new SKILL.md
agentistry init my-skill
# Authenticate (opens browser)
agentistry login
# Submit for review
agentistry submit ./my-skill --name my-skill
agentistry submit ./my-skill --name my-skill --version 2.0.0 --poll
# Check your submissions
agentistry submissions
agentistry submissions --limit 20
# Log out
agentistry logoutInstall Locations
| Flag | Claude Code | Path |
|------|------------|------|
| (default) | Project | .claude/skills/<slug>/ |
| --global | Global | ~/.claude/skills/<slug>/ |
| --dir <path> | Custom | <path>/<slug>/ |
Agent Support
Agentistry auto-detects installed agents and installs skills to the right location:
- Claude Code —
.claude/skills/ - Codex —
.codex/skills/ - More agents coming soon
Use -a to target specific agents:
agentistry add some-skill -a claude_code codexCI / Automation
All commands support non-interactive mode with -y / --yes:
agentistry add some-skill -y
agentistry update -y
agentistry remove old-skill -yLicense
MIT
