← ClaudeAtlas

agenticx-skill-managerlisted

Guide for managing AgenticX skills including listing, searching, installing, uninstalling, publishing, and running a skill registry server. Use when the user wants to manage skills, find available skills, publish custom skills, set up a skill registry, or understand the skill ecosystem.
opencue/claude-code-skills · ★ 1 · AI & Automation · score 77
Install: claude install-skill opencue/claude-code-skills
# AgenticX Skill Manager Guide for managing the AgenticX skill ecosystem. ## What Are Skills? Skills are self-contained instruction bundles (SKILL.md + optional resources) that teach AI agents how to perform specific tasks. AgenticX is compatible with the Anthropic Agent Skills specification. ## Skill Discovery Paths The skill loader scans these directories (highest priority first): | Priority | Path | Scope | |----------|------|-------| | 1 | `./.agents/skills` | Project (Cherry Studio compatible) | | 2 | `./.agent/skills` | Project | | 3 | `~/.agents/skills` | Global | | 4 | `~/.agent/skills` | Global | | 5 | `./.claude/skills` | Project | | 6 | `~/.claude/skills` | Global | | 7 | Built-in (agenticx package) | Framework | ## CLI Commands ### List Skills ```bash # List all locally discovered skills agx skills list # Include remote registry skills agx skills list --remote # Output as JSON agx skills list --format json ``` ### Search Skills ```bash # Search by keyword agx skills search "pdf" agx skills search "workflow" # Search in remote registry agx skills search "data analysis" --remote ``` ### Install a Skill ```bash # Install from registry agx skills install pdf-processor # Install to specific path agx skills install pdf-processor --path ./.agents/skills ``` ### Uninstall a Skill ```bash agx skills uninstall pdf-processor ``` ### Publish a Skill ```bash # Publish to default registry agx skills publish ./my-skills/data-analyzer # Publish to a specific