npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

add-skill-kit

v3.2.10

Published

Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation

Readme

add-skill-kit

CLI installer for Agent Skill Kit - FAANG-grade AI skills, workflows, and agents

npm version JavaScript license


⚡ 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-skills

Alternative: Global Install

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

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 skills

2. 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 cache

agent 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-skills

Install to Global Location

add-skill-kit agentskillkit/agent-skills --global

Force 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/                       # Performance

Dependencies 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 kit CLI 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.


GitHubnpmIssues