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

@dataguruin/add-skill

v1.2.3

Published

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

Readme


What is add-skill?

add-skill is a CLI tool for managing Agent Skills—intelligent artifacts that extend your AI coding agent's capabilities.

npx @dataguruin/add-skill dataguruin/agent-skills
┌   skills 
│
◇  Source: https://github.com/dataguruin/agent-skills.git
│
◆  Repository cloned
│
●  Found 3 skills
│
◆  Select skills to install
│  ◻ coinpika-commit-formatter
│  ◻ coinpika-doctrine-pack
│  ◻ coinpika-pr-reviewer
│
◇  Installed 3 skills ──────────╮
│                               │
│  ✓ coinpika-commit-formatter  │
│  ✓ coinpika-doctrine-pack     │
│  ✓ coinpika-pr-reviewer       │
│                               │
├───────────────────────────────╯
│
└  Done!

Skills are data, not code—they're read by your agent to enhance its behavior without executing on your system.


Installation

# Using npx (recommended)
npx @dataguruin/add-skill <org/repo>

# Global install
npm install -g @dataguruin/add-skill

# Or with pnpm
pnpm add -g @dataguruin/add-skill

Requires Node.js 18+


Quick Start

Install skills from GitHub

npx @dataguruin/add-skill dataguruin/agent-skills

Interactive prompts let you select which skills to install.

List installed skills

npx @dataguruin/add-skill list
┌   add-skill 
│
●  Location: ~/.agent/skills
│
◇  Installed Skills (3) ─────────────────────────╮
│                                                │
│  ✓ coinpika-commit-formatter v1.0.0 (10.1 KB)  │
│  ✓ coinpika-doctrine-pack v1.0.0 (137.9 KB)    │
│  ✓ coinpika-pr-reviewer v1.0.0 (9.1 KB)        │
│                                                │
├────────────────────────────────────────────────╯
│
└  Done!

Check health

npx @dataguruin/add-skill doctor
┌   add-skill 
│
◐  Running health check...
│
◇  Health Check Results ─────────────────────────╮
│                                                │
│  ✓ coinpika-commit-formatter: healthy          │
│  ✓ coinpika-doctrine-pack: healthy             │
│  ✓ coinpika-pr-reviewer: healthy               │
│                                                │
├────────────────────────────────────────────────╯
│
●  Errors: 0, Warnings: 0
│
└  Done!

Commands

| Command | Description | |:--------|:------------| | <org/repo> | Install skills from GitHub repository | | <org/repo#skill> | Install a specific skill | | list | List installed skills | | uninstall <skill> | Remove a skill | | update <skill> | Update to latest version | | doctor | Check integrity and health | | verify | Verify checksums | | validate [skill] | Antigravity compliance check | | analyze <skill> | Deep structure analysis | | lock | Generate skill-lock.json | | cache info | Show cache info | | cache clear | Clear local cache | | init | Initialize skills directory |

Flags

| Flag | Description | |:-----|:------------| | --global, -g | Install to global scope | | --yes, -y | Skip confirmation prompts | | --verbose, -v | Show detailed output | | --json | Output as JSON | | --strict | Exit with error on violations | | --fix | Auto-fix issues where possible | | --dry-run | Preview changes without applying |


Features

Progressive Disclosure

Skills follow a structured hierarchy for efficient agent loading:

skill/
├── SKILL.md              # Core instructions (always loaded)
├── resources/            # Reference materials (on-demand)
├── examples/             # Implementation patterns
├── scripts/              # Helper utilities
├── constitution/         # Governing rules
└── doctrines/            # Behavioral policies

Antigravity Compatibility Score

npx @dataguruin/add-skill analyze coinpika-doctrine-pack
┌   add-skill 
│
●  Path: ~/.agent/skills/coinpika-doctrine-pack
│
◇  Skill Analysis: coinpika-doctrine-pack ───────╮
│                                                │
│  SKILL.md Frontmatter:                         │
│    Name: coinpika-doctrine-pack                │
│    Description: Constitutional governance...   │
│    Tags: coinpika, doctrine, governance        │
│                                                │
│  Structure:                                    │
│    ✓ resources                                 │
│    ✓ examples                                  │
│    ✓ scripts                                   │
│    ✓ constitution                              │
│    ✓ doctrines                                 │
│                                                │
│  Antigravity Score: 100/100                    │
│                                                │
├────────────────────────────────────────────────╯
│
└  Done!

Security by Design

| Feature | Description | |:--------|:------------| | No Execution | Skills are data, never executed on your system | | SHA-256 Merkle Hash | Every skill is cryptographically verified | | Integrity Checks | doctor and verify detect tampering | | Audit Trail | Full provenance tracked in .skill-source.json | | Backups | Automatic backup before destructive operations |


Skill Spec Format

Skills require a SKILL.md file with YAML frontmatter:

---
name: my-skill
description: Brief description for semantic routing
version: 1.0.0
author: your-name
tags: javascript, testing, react
---

# My Skill

Instructions for the agent to follow...

Compatibility

Works with any Antigravity-compatible coding agent:

  • Gemini CLI / Antigravity
  • Claude Code
  • Cursor
  • OpenCode
  • Cline
  • And more...

License

MIT © DataGuruIn