Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation
npm install add-skill-kitbash
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-skills
`
$3
`bash
npm install -g add-skill-kit
add-skill-kit agentskillkit/agent-skills
`
That'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
$3
`bash
macOS/Linux
npx -y add-skill-kit /
Windows
npm exec --yes --package=add-skill-kit -- add-skill-kit /
Examples:
add-skill-kit agentskillkit/agent-skills # Official skills
add-skill-kit myteam/company-skills # Custom skills
`
$3
`
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā š ļø Agent Skill Kit Installer ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā ā Select skills to install ā
ā ā Choose install scope ā
ā ā Configure AutoLearn (optional) ā
ā ā Auto-install dependencies ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
`
$3
`
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
$3
| Option | Location | Best For |
|--------|----------|----------|
| Project | .agent/ in current project | Single project |
| Global | ~/.gemini/antigravity/ | All projects |
$3
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
$3
`bash
kit list # List all installed skills
kit validate # Validate skill structure
kit info # Show skill details
kit doctor # Check system health
kit cache status # View cache usage
kit cache clear # Clear cache
`
$3
`bash
agent # Launch dashboard
agent learn # Teach patterns
agent recall # Scan violations
agent stats # View statistics
agent watch # Real-time monitor
`
---
š Usage Examples
$3
`bash
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-skills
`
$3
`bash
add-skill-kit agentskillkit/agent-skills --global
`
$3
`bash
add-skill-kit agentskillkit/agent-skills --force
`
---
šļø What Gets Installed
$3
`
.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/ # Performance
`
$3
`bash
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 kit CLI command
---
š ļø Development
`bash
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
``