| name | agentic-awesome-skills-installer |
| description | Install and manage 1,935+ AI agent skills for Claude Code, Cursor, Gemini CLI, Codex, Antigravity, and other coding assistants |
| triggers | ["install agentic awesome skills","set up agent skills library","add skills to my AI coding assistant","install cursor skills from agentic awesome","configure claude code with skill library","browse available agent skills","install specialized plugin for web development","update my agent skills collection"] |
Agentic Awesome Skills Installer
Skill by ara.so — AI Agent Skills collection.
Overview
Agentic Awesome Skills is an installable GitHub library of 1,935+ reusable SKILL.md playbooks for AI coding assistants. It provides structured operating instructions, constraints, and outputs for recurring development tasks across planning, coding, debugging, testing, security, infrastructure, product work, and growth.
Key capabilities:
- Install full skill library or specialized domain plugins
- Support for Claude Code, Cursor, Codex CLI, Autohand Code, Gemini CLI, Antigravity, Kiro, OpenCode, GitHub Copilot
- 14 specialized plugins (Web App Builder, Security Engineer, Data Analytics, Agent & MCP Builder, etc.)
- Bundles and workflows for role-based recommendations
- Plugin-safe distributions for marketplace installs
Repository: https://github.com/sickn33/agentic-awesome-skills
License: MIT
Current version: v13.13.0
Installation
Prerequisites
- Node.js 14+ (for npx installer)
- Git (for clone-based installs)
Quick Install (Default Path)
npx agentic-awesome-skills
test -d ~/.agents/skills && echo "✓ Skills installed successfully"
ls ~/.agents/skills | head -5
Tool-Specific Installation
npx agentic-awesome-skills --claude
npx agentic-awesome-skills --cursor
npx agentic-awesome-skills --gemini
npx agentic-awesome-skills --codex
npx agentic-awesome-skills --path ~/.autohand/skills
npx agentic-awesome-skills --antigravity
npx agentic-awesome-skills --agy
npx agentic-awesome-skills --kiro
npx agentic-awesome-skills --path ~/.kiro/skills
npx agentic-awesome-skills --path .agents/skills --category development,backend --risk safe,none
npx agentic-awesome-skills --path ./my-custom-skills
Install Specialized Plugin
npx agentic-awesome-skills --plugin web-app-builder
npx agentic-awesome-skills --plugin security-engineer
npx agentic-awesome-skills --plugin data-analytics
npx agentic-awesome-skills --plugin agent-mcp-builder
npx agentic-awesome-skills --list-plugins
Manual Installation (Git Clone)
git clone --depth 1 https://github.com/sickn33/agentic-awesome-skills.git
ln -s "$(pwd)/agentic-awesome-skills/skills" ~/.agents/skills
cp -r agentic-awesome-skills/skills ~/.agents/skills
Using Installed Skills
Claude Code
>> /brainstorming help me plan a feature for user authentication
>> /api-design design a REST API for user management
>> /planning create a project plan, then /testing add test coverage strategy
Cursor
@brainstorming help me plan a feature for user authentication
@api-security-audit review this endpoint for vulnerabilities
@planning create architecture, then @code-review analyze implementation
Gemini CLI
gemini "Use brainstorming to plan a feature for user authentication"
gemini "Use api-design to create OpenAPI spec for user endpoints"
gemini "Use planning to draft architecture, then code-review to analyze it"
Antigravity IDE
@brainstorming help me plan a microservices architecture
@api-design create REST API spec, then @testing add integration tests
@secure-coding-review audit this authentication module
Antigravity CLI (agy)
agy /brainstorming help me plan a feature
agy /api-security-audit check this endpoint
agy /brainstorming --help
Available Specialized Plugins
| Plugin Name | Skill Count | Use Case | Install Command |
|---|
| web-app-builder | 10 | Frontend/fullstack web development | npx agentic-awesome-skills --plugin web-app-builder |
| product-design-studio | 10 | Product UI, brand, accessibility | npx agentic-awesome-skills --plugin product-design-studio |
| security-engineer | 10 | Security testing, audit, hardening | npx agentic-awesome-skills --plugin security-engineer |
| secure-app-builder | 10 | Security-embedded development | npx agentic-awesome-skills --plugin secure-app-builder |
| documents-presentations | 9 | Office files, decks, conversions | npx agentic-awesome-skills --plugin documents-presentations |
| data-analytics | 10 | SQL, dashboards, experiments | npx agentic-awesome-skills --plugin data-analytics |
| agent-mcp-builder | 10 | Agentic apps, MCP tools, RAG | npx agentic-awesome-skills --plugin agent-mcp-builder |
| oss-maintainer | 10 | PRs, releases, contributor work | npx agentic-awesome-skills --plugin oss-maintainer |
| qa-test-automation | 10 | Test suites, browser automation | npx agentic-awesome-skills --plugin qa-test-automation |
| devops-cloud | 10 | Infrastructure, deployments | npx agentic-awesome-skills --plugin devops-cloud |
| accessibility-ux | 8 | WCAG audits, screen readers | npx agentic-awesome-skills --plugin accessibility-ux |
| api-platform-builder | 10 | API design, auth, observability | npx agentic-awesome-skills --plugin api-platform-builder |
| saas-launch-revenue | 10 | SaaS MVPs, pricing, analytics | npx agentic-awesome-skills --plugin saas-launch-revenue |
| ai-product-eval-ops | 10 | AI metrics, evals, experiments | npx agentic-awesome-skills --plugin ai-product-eval-ops |
Configuration
Environment Variables
export AGENTIC_SKILLS_PATH=~/.my-custom-skills
export AGENTIC_SKILLS_TAG=main
export AGENTIC_SKILLS_AUTO_CONFIRM=true
Configuration File (.agenticrc)
Create ~/.agenticrc for persistent settings:
{
"defaultPath": "~/.agents/skills",
"autoUpdate": true,
"updateInterval": "weekly",
"preferredPlugins": [
"web-app-builder",
"security-engineer",
"data-analytics"
],
"excludeCategories": ["experimental"],
"riskLevel": "safe"
}
Tool-Specific Configuration
Claude Code Plugin
{
"enabled": true,
"autoLoad": true,
"categories": ["development", "security", "testing"],
"maxSkills": 1935
}
Cursor Settings
{
"cursor.skills.path": "~/.agents/skills",
"cursor.skills.autoLoad": true,
"cursor.skills.categories": ["all"]
}
Real-World Examples
Example 1: Install Full Library and Use Planning Skill
npx agentic-awesome-skills
>> /planning I need to architect a new payment processing system with Stripe
Expected output: Detailed project plan with phases, dependencies, milestones, security considerations, and testing strategy.
Example 2: Install Security Plugin and Audit Code
npx agentic-awesome-skills --plugin security-engineer
@security-audit review this JWT implementation for vulnerabilities
Expected output: Security assessment covering token validation, expiration, secret management, XSS/CSRF risks, and remediation steps.
Example 3: Install Web Plugin for Full-Stack Development
import subprocess
subprocess.run(["npx", "agentic-awesome-skills", "--plugin", "web-app-builder"])
@react-component-builder create a user profile card with avatar, name, bio, and edit button
Expected output: React component with TypeScript, proper props interface, accessibility attributes, and CSS modules.
Example 4: Update Existing Installation
npx agentic-awesome-skills --update
rm -rf ~/.agents/skills
npx agentic-awesome-skills
Example 5: Filter Skills by Category and Risk
npx agentic-awesome-skills \
--category development,backend,testing \
--risk safe,none \
--path ./filtered-skills
ls ./filtered-skills | wc -l
Example 6: Programmatic Installation (Python)
import subprocess
import os
from pathlib import Path
def install_agentic_skills(path=None, plugin=None):
"""Install agentic awesome skills library."""
cmd = ["npx", "agentic-awesome-skills"]
if path:
cmd.extend(["--path", str(Path(path).expanduser())])
if plugin:
cmd.extend(["--plugin", plugin])
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode == 0:
print(f"✓ Skills installed successfully")
return True
else:
print(f"✗ Installation failed: {result.stderr}")
return False
install_agentic_skills(path="~/.agents/skills")
install_agentic_skills(
path="~/.agents/skills",
plugin="data-analytics"
)
Example 7: Verify Installation and List Skills
test -d ~/.agents/skills && echo "✓ Installed" || echo "✗ Not installed"
find ~/.agents/skills -name "SKILL.md" | wc -l
find ~/.agents/skills -name "SKILL.md" -exec basename {} .md \; | sort
find ~/.agents/skills -name "*security*.md"
find ~/.agents/skills -name "*test*.md"
find ~/.agents/skills -name "*api*.md"
Common Patterns
Pattern 1: Domain-Specific Installation
npx agentic-awesome-skills --plugin web-app-builder
npx agentic-awesome-skills --plugin qa-test-automation
npx agentic-awesome-skills --plugin security-engineer
npx agentic-awesome-skills --plugin secure-app-builder
npx agentic-awesome-skills --plugin data-analytics
npx agentic-awesome-skills --plugin api-platform-builder
npx agentic-awesome-skills --plugin devops-cloud
npx agentic-awesome-skills --plugin oss-maintainer
Pattern 2: Skill Chaining
>> /planning create architecture for user authentication
>> /api-design design REST endpoints for the planned architecture
>> /secure-coding-review audit the authentication flow
>> /testing create test plan for auth endpoints
>> /code-review final review before merge
Pattern 3: Project-Local Installation
cd my-project
npx agentic-awesome-skills --path .agents/skills
echo ".agents/skills/" >> .gitignore
echo "Run 'npx agentic-awesome-skills --path .agents/skills' to install agent skills" >> README.md
Pattern 4: Conditional Installation in CI/CD
name: Install Agent Skills
on: [push]
jobs:
install-skills:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install agent skills
run: |
npx agentic-awesome-skills \
--path .agents/skills \
--category development,testing \
--risk safe
- name: Verify installation
run: |
test -d .agents/skills
find .agents/skills -name "SKILL.md" | wc -l
Troubleshooting
Issue: Installation Fails with Permission Error
npx agentic-awesome-skills --path ~/my-skills
mkdir -p ~/.agents/skills
chmod -R u+w ~/.agents/skills
Issue: Skills Not Loading in Claude Code
npx agentic-awesome-skills --claude
ls ~/.claude/plugins/agentic-awesome-skills/
Issue: Skills Not Found in Cursor
npx agentic-awesome-skills --cursor
Issue: npx Command Not Found
brew install node
sudo apt-get update
sudo apt-get install nodejs npm
node --version
npm --version
npx --version
Issue: Installation Hangs or Times Out
npx agentic-awesome-skills --shallow
npx agentic-awesome-skills --tag v13.13.0
curl -L https://github.com/sickn33/agentic-awesome-skills/archive/refs/tags/v13.13.0.tar.gz | tar xz
mv agentic-awesome-skills-13.13.0/skills ~/.agents/skills
Issue: Cannot Find Specific Skill
find ~/.agents/skills -iname "*auth*.md"
find ~/.agents/skills -iname "*security*.md"
find ~/.agents/skills -name "SKILL.md" -exec basename {} .md \;
npx agentic-awesome-skills --list-plugins
npx agentic-awesome-skills --plugin security-engineer --dry-run
Issue: Update Not Working
rm -rf ~/.agents/skills
npx agentic-awesome-skills
npx agentic-awesome-skills --update --force
npx clear-npx-cache
npm cache clean --force
Advanced Usage
Custom Skill Repository
npx agentic-awesome-skills \
--repo https://github.com/YOUR_USERNAME/agentic-awesome-skills \
--path ~/.agents/skills
git clone https://github.com/YOUR_USERNAME/agentic-awesome-skills
cd agentic-awesome-skills
npm install
npm link
agentic-awesome-skills --path ~/.agents/skills
Skill Manifest Export
npx agentic-awesome-skills --export-manifest skills-manifest.json
cat skills-manifest.json | jq '.skills[] | select(.category=="security")'
Programmatic API (Node.js)
const { installSkills, listSkills, searchSkills } = require('agentic-awesome-skills');
await installSkills({
path: '~/.agents/skills',
categories: ['development', 'security'],
riskLevel: 'safe'
});
const skills = await listSkills('~/.agents/skills');
console.log(`Installed ${skills.length} skills`);
const securitySkills = await searchSkills({
path: '~/.agents/skills',
query: 'security audit'
});
console.log('Security skills:', securitySkills);
Best Practices
- Start small: Install specialized plugins before full library
- Use tool-specific flags:
--claude, --cursor, etc. for optimal paths
- Update regularly: Run
npx agentic-awesome-skills --update monthly
- Project-local installs: Use
.agents/skills for team consistency
- Filter by risk: Use
--risk safe for production environments
- Document for team: Add install command to project README
- Skill chaining: Chain multiple skills for complex workflows
- Test first: Verify installation with simple skill before complex ones
Additional Resources