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

pikakit

v3.9.7

Published

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

Downloads

6,906

Readme

PikaKit

CLI installer for PikaKit - FAANG-grade AI skills, workflows, and agents

npm version JavaScript license


⚡ Installation

npx pikakit

That's it! One command installs everything:

| Component | Count | Description | |-----------|-------|-------------| | Skills | 50 | FAANG-grade coding skills | | Workflows | 25 | /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 |


🎯 What This CLI Does

1. Add Skills from GitHub

# Recommended: One command install
npx pikakit

# Or specify a repo:
npx pikakit add <owner>/<repo>

# Examples:
npx pikakit add pikakit/agent-skills    # Official skills
npx pikakit add myteam/company-skills   # Custom skills

2. Interactive Installation

┌───────────────────────────────────────────┐
│   🛠️  PikaKit 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/                # 50 Skills
│   ├── workflows/             # 25 Workflows
│   ├── agents/                # 25 Agents
│   ├── knowledge/             # Learning memory
│   ├── config/                # Configuration
│   ├── scripts-js/            # Automation
│   └── metrics/               # Tracking
│
├── kit.cmd / kit              # CLI wrapper
└── .agent/lib/agent-cli/      # Agent CLI (run locally)

🔧 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 (Local Only - v2.0+)

# Run from project root:
node .agent/lib/agent-cli/bin/agent.js

# Or add to package.json:
"scripts": { "agent": "node .agent/lib/agent-cli/bin/agent.js" }
npm run agent

🚀 Usage Examples

Install Official Skills

npx pikakit add pikakit-agent-skills

Install to Global Location

npx pikakit add pikakit-agent-skills --global

Force Reinstall

npx pikakit add pikakit-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/                        # 50 Skills
│   ├── skill-generator/
│   ├── react-architect/
│   ├── typescript-expert/
│   ├── debug-pro/
│   ├── studio/
│   └── ... (45 more)
│
├── workflows/                     # 25 Workflows
│   ├── think.md
│   ├── build.md
│   ├── autopilot.md
│   └── ... (22 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 | |---------|---------| | pikakit-agent-skills | Main skills repository | | pikakit | This CLI installer |


📈 Version History

v2.0.0 (Current)

  • ⚠️ BREAKING: Agent CLI removed from npm package
  • ✅ Agent CLI now runs locally from .agent/lib/agent-cli/
  • ✅ Package size reduced 75%
  • ✅ Clearer separation: pikakit = installer only

v1.0.0

  • ✅ Renamed to PikaKit for cross-platform npx support
  • ✅ Works with npx pikakit on Windows, macOS, Linux
  • ✅ 100% JavaScript - No Python required

🛠️ Development

# Clone
git clone https://github.com/pikakit/pikakit.git
cd pikakit

# Install dependencies
npm install

# Run locally
node bin/cli.mjs add pikakit-agent-skills

📄 License

MIT - Free for all projects.


⚡ PikaKit v2.0.0 One command. Complete AI setup. Installer only.


GitHubnpmIssues