add-skill-kit
v3.2.10
Published
Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation
Maintainers
Readme
add-skill-kit
CLI installer for Agent Skill Kit - FAANG-grade AI skills, workflows, and agents
⚡ Installation
Quick Install (Recommended)
# macOS/Linux
npx -y add-skill-kit agentskillkit/agent-skills
# Windows (use npm exec)
npm exec --yes --package=add-skill-kit -- add-skill-kit agentskillkit/agent-skillsAlternative: Global Install
npm install -g add-skill-kit
add-skill-kit agentskillkit/agent-skillsThat's it! One command installs everything:
| Component | Count | Description |
|-----------|-------|-------------|
| Skills | 49 | FAANG-grade coding skills |
| Workflows | 26 | /think, /build, /autopilot, etc. |
| Agents | 25 | Specialist AI agents |
| Rules | GEMINI.md | AI behavior configuration |
| Scripts | 25 | JavaScript automation scripts |
| Commands | kit | CLI management tool |
| Commands | agent | Interactive learning (optional) |
🎯 What This CLI Does
1. Fetches Skills from GitHub
# macOS/Linux
npx -y add-skill-kit <owner>/<repo>
# Windows
npm exec --yes --package=add-skill-kit -- add-skill-kit <owner>/<repo>
# Examples:
add-skill-kit agentskillkit/agent-skills # Official skills
add-skill-kit myteam/company-skills # Custom skills2. Interactive Installation
┌───────────────────────────────────────────┐
│ 🛠️ Agent Skill Kit Installer │
├───────────────────────────────────────────┤
│ ◆ Select skills to install │
│ ◆ Choose install scope │
│ ◆ Configure AutoLearn (optional) │
│ ◆ Auto-install dependencies │
└───────────────────────────────────────────┘3. Creates Ready-to-Use Structure
your-project/
├── .agent/
│ ├── GEMINI.md # AI Rules
│ ├── skills/ # 49 Skills
│ ├── workflows/ # 26 Workflows
│ ├── agents/ # 25 Agents
│ ├── knowledge/ # Learning memory
│ ├── config/ # Configuration
│ ├── scripts-js/ # Automation
│ └── metrics/ # Tracking
│
├── kit.cmd / kit # CLI wrapper
└── agent.cmd / agent # AutoLearn (optional)🔧 CLI Options
Install Scope
| Option | Location | Best For |
|--------|----------|----------|
| Project | .agent/ in current project | Single project |
| Global | ~/.gemini/antigravity/ | All projects |
AutoLearn (Optional)
When prompted "Install AutoLearn?":
| Choice | Effect |
|--------|--------|
| Yes | Installs agent command for interactive learning |
| No | Core functionality works perfectly, just no agent CLI |
Note: Choosing "No" does NOT affect workflows, skills, or agents.
📦 Commands After Installation
kit Command (Always Available)
kit list # List all installed skills
kit validate # Validate skill structure
kit info <skill> # Show skill details
kit doctor # Check system health
kit cache status # View cache usage
kit cache clear # Clear cacheagent Command (If AutoLearn Installed)
agent # Launch dashboard
agent learn # Teach patterns
agent recall # Scan violations
agent stats # View statistics
agent watch # Real-time monitor🚀 Usage Examples
Install Official Skills
# After global install
add-skill-kit agentskillkit/agent-skills
# Or use npm exec (Windows)
npm exec --yes --package=add-skill-kit -- add-skill-kit agentskillkit/agent-skillsInstall to Global Location
add-skill-kit agentskillkit/agent-skills --globalForce Reinstall
add-skill-kit agentskillkit/agent-skills --force🗂️ What Gets Installed
Complete Structure
.agent/
├── GEMINI.md # Supreme AI Rules
├── ARCHITECTURE.md # System Overview
├── CONTINUOUS_EXECUTION_POLICY.md # Autopilot Rules
├── WORKFLOW_CHAINS.md # Workflow Patterns
│
├── skills/ # 49 Skills
│ ├── auto-learner/
│ ├── react-architect/
│ ├── typescript-expert/
│ ├── debug-pro/
│ ├── studio/
│ └── ... (44 more)
│
├── workflows/ # 26 Workflows
│ ├── think.md
│ ├── build.md
│ ├── autopilot.md
│ └── ... (23 more)
│
├── agents/ # 25 Agents
│ ├── frontend-specialist.md
│ ├── backend-specialist.md
│ └── ... (23 more)
│
├── knowledge/ # Learning Memory
│ └── lessons-learned.yaml
│
├── config/ # Configuration
├── scripts-js/ # 25 JS Scripts
└── metrics/ # PerformanceDependencies Auto-Installed
npm install # Node.js dependencies🔗 Related Packages
| Package | Purpose | |---------|---------| | agent-skills | Main skills repository | | add-skill-kit | This CLI installer |
📈 Version History
v3.2.9 (Current)
- ✅ Fixed Windows npx compatibility issue
- ✅ 100% JavaScript - No Python required
- ✅ AutoLearn made optional
- ✅ Complete installation (config, scripts-js, metrics, policy docs)
- ✅ Cross-platform installation commands
v3.2.0
- Migrated all scripts to JavaScript
- Added
kitCLI command
🛠️ Development
# Clone
git clone https://github.com/agentskillkit/add-skill-kit.git
cd add-skill-kit
# Install dependencies
npm install
# Run locally
node bin/kit.js install agentskillkit/agent-skills📄 License
MIT - Free for all projects.
⚡ add-skill-kit v3.2.9 One command. Complete AI setup.
