Universal Skills loader for AI Coding Agents - The #1 CLI for AI Agent Skills
npm install agentic-skillsbash
Use with npx (no installation needed)
npx agentic-skills add vercel-react-best-practices
Or install globally
npm install -g agentic-skills
`
š Privacy First (Zero Telemetry)
Unlike other tools that collect telemetry to "rank" skills, Agentic Skills is 100% private.
- No tracking.
- No analytics.
- No data leaves your machine.
𩺠Quick Start
`bash
1. Diagnose your environment
npx agentic-skills doctor
2. Add a skill from our registry or skills.sh
npx agentic-skills add vercel-react-best-practices
3. Add directly to your AI Agents (Native Install)
npx agentic-skills add vercel-react-best-practices --native
4. Add from any GitHub repo
npx agentic-skills add user/repo --skill my-skill
`
š Commands
$3
| Command | Description |
|---------|-------------|
| add | Add a skill by name, URL, or local path |
| add | Direct install to all detected AI tools |
| list | List installed skills |
| list --registry | Browse available skills from registry |
| search | Search for skills (Full-text search) |
| update | Update all installed skills |
| remove | Remove a skill |
| manage | Interactive TUI for skill management |
$3
| Command | Description |
|---------|-------------|
| sync | Update AGENTS.md with installed skills |
| read | Read skill content to stdout (for AI agents) |
| export --all | Export skills to all detected AI tools |
| doctor | Diagnose environment and detect AI tools |
$3
| Command | Description |
|---------|-------------|
| init | Initialize project with skill support |
| create | Create a new skill from template |
| validate | Validate skill format and structure |
$3
| Command | Description |
|---------|-------------|
| enable | Enable a disabled skill |
| disable | Disable a skill without removing |
| toggle | Interactive skill enable/disable |
| lock | Generate lock file for reproducible installations |
| lock restore | Restore skills from lock file |
| import | Import skills from manifest file |
| config | Manage CLI configuration |
𩺠Doctor Command
Diagnose your environment and detect installed AI coding tools:
`bash
npx agentic-skills doctor
`
Output:
`
𩺠Agentic Skills Doctor
š Detected AI Coding Tools:
ā
š±ļø Cursor (v1.2.3)
Skills path: .cursor/rules
ā
š¤ Claude Code
Skills path: .claude/skills
š Environment Summary:
š Project: /path/to/project
š¦ Skills Directory: ā exists
š AGENTS.md: ā exists
š¢ Installed Skills: 5
š” Recommendations:
⢠Run 'npx agentic-skills sync' to update AGENTS.md
`
š¤ Multi-Agent Export
Export skills to all your AI coding tools at once:
`bash
Export to all detected tools
npx agentic-skills export --all
Export to specific tools
npx agentic-skills export --cursor --claude --copilot
Preview without changes
npx agentic-skills export --all --dry-run
`
š Lock Files
Create reproducible skill installations (like package-lock.json):
`bash
Generate lock file
npx agentic-skills lock
Restore from lock file
npx agentic-skills lock restore
Check lock file status
npx agentic-skills lock check
`
š„ Bulk Import
Import multiple skills from a manifest file:
`bash
Import from skills.json
npx agentic-skills import skills.json
Generate manifest from installed skills
npx agentic-skills import --generate
`
skills.json format:
`json
{
"skills": [
{ "url": "https://github.com/user/repo/skills/my-skill" },
{ "id": "vercel-react-best-practices" }
]
}
`
š Cross-Registry Support
We support fetching skills from both our registry and skills.sh. If a skill isn't found in our database, we automatically attempt to resolve it through the industry-standard well-known registry path.
āļø Configuration
Manage global CLI settings:
`bash
Show all settings
npx agentic-skills config list
Set a value
npx agentic-skills config set defaultScope universal
Interactive editor
npx agentic-skills config edit
`
Available settings:
- defaultScope - Where to install skills (universal|global|project)
- autoSync - Auto-sync AGENTS.md after install/remove
- registryUrl - Custom registry URL
- cacheEnabled - Enable registry caching
- cacheTTL - Cache time-to-live in hours
š Web Interface
Browse skills through our beautiful web interface:
š agenticskills.org
Or run it locally:
`bash
npx agentic-skills serve
``