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

@npmdubey/agent-skills

v1.0.5

Published

Portable agent working suite — behavioral rules, skills, and adapters for any coding agent

Readme

agent-skills

Curated behavioral rules and composable skills for coding agents. Works with any agent — OpenCode, Codex CLI, Antigravity, Claude Code, Cursor, Copilot, Junie.

Quick Start

Zero-install

cd your-project
npx @npmdubey/agent-skills link

No install, no clone, no PATH setup.

Install globally

npm install -g @npmdubey/agent-skills
cd your-project
agent-skills link

On a new machine

npx @npmdubey/agent-skills init
# or:
curl -fsSL https://raw.githubusercontent.com/UtkarshDubeyGIT/agent-skills/main/init.sh | bash

Platform Coverage

Running link generates adapters for all platforms in your project:

| Platform | Config File | How It Reads Your Rules | |---|---|---| | OpenCode | AGENTS.md | Reads natively | | Codex CLI | AGENTS.md | Reads natively | | Antigravity App | AGENTS.md | Reads natively + SKILL.md | | Antigravity CLI | AGENTS.md | Reads natively + SKILL.md | | Claude Code | CLAUDE.md | Delegates to AGENTS.md | | Cursor | .cursor/rules/*.mdc | Delegates to AGENTS.md | | Copilot | .github/copilot-instructions.md | Delegates to AGENTS.md | | Junie | .junie/guidelines.md | Delegates to AGENTS.md |

Every adapter points back to the same canonical source — AGENTS.md. One source of truth, eight platforms.

your-project/
├── AGENTS.md                    → OpenCode, Codex CLI, Antigravity
├── CLAUDE.md                    → Claude Code
├── .cursor/rules/               → Cursor
├── .github/copilot-instructions.md → Copilot
└── .junie/guidelines.md         → Junie

Skills

Reusable workflows any agent can follow:

| Command | What It Does | |---|---| | /grill-me | Alignment interview — agent asks, summarizes, builds | | /tdd | Red-Green-Refactor — test first, implement, clean up | | /handoff | Compresses conversation into a handoff doc for another agent | | /diagnosing-bugs | Reproduce → Minimize → Fix → Verify |

Agents read these as markdown files from skills/. They're referenced in AGENTS.md.

Structure

agent-skills/
├── AGENTS.md              # Canonical behavioral rules
├── CLAUDE.md              # Claude Code adapter
├── link.sh                # Shell link script
├── init.sh                # Bootstrap script
├── package.json           # npm package
├── bin/agent-skills.js    # CLI — link, init
├── skills-lock.json       # Skills CLI lockfile
│
├── skills/                # Composable workflows
│   ├── grill-me.md        # Alignment interview
│   ├── tdd.md             # TDD loop
│   ├── handoff.md         # Context handoff
│   └── diagnosing-bugs.md # Bug diagnosis
│
├── UI/                    # Shadcn reference + skill
│   ├── SHADCN-REFERENCE.md
│   └── SHADCN-SKILL.md
│
└── .agents/skills/        # Skills from ecosystem (via skills CLI)
    ├── web-design-guidelines/     # Vercel — UI review & compliance
    ├── design-taste-frontend/     # Anti-slop frontend design
    ├── frontend-design/           # Anthropic — visual design guidance
    ├── high-end-visual-design/    # High-end agency design patterns
    ├── firecrawl-website-design-clone/ # Extract design systems
    ├── sleek-design-mobile-apps/  # Mobile app design via Sleek
    ├── find-skills/               # Vercel — discover new skills
    ├── agent-browser/             # Vercel — browser automation CLI
    ├── webapp-testing/            # Anthropic — Playwright testing
    ├── test-driven-development/   # Obra — comprehensive TDD
    ├── data-visualization/        # Anthropic — Python charts
    └── humanize/                  # Custom — de-AI text, restore human voice

Skills

Workflow

| Command | What It Does | |---|---| | /grill-me | Alignment interview — agent asks, summarizes, builds | | /tdd | Red-Green-Refactor — test first, implement, clean up | | /tdd-super | Comprehensive TDD workflow (obra/superpowers) | | /handoff | Compresses conversation into a handoff doc | | /diagnosing-bugs | Reproduce → Minimize → Fix → Verify | | /find-skills | Discover & install new agent skills |

Design

| Command | What It Does | |---|---| | /design-review | Vercel web interface guidelines compliance audit | | /design-frontend | Anti-slop frontend design for landing pages & portfolios | | /design-high-end | High-end agency design patterns (fonts, shadows, animations) | | /design-anthropic | Anthropic's distinctive visual design guidance | | /design-clone | Extract full design system from any website via Firecrawl | | /design-mobile | Mobile app design via Sleek |

Writing & Editing

| Command | What It Does | |---|---| | /humanize | De-AI text: remove LLM tells, restore human voice |

Testing & Automation

| Command | What It Does | |---|---| | /webapp-testing | Playwright web app testing toolkit (Anthropic) | | /agent-browser | Browser automation CLI for agents (Vercel) |

Data & Visualization

| Command | What It Does | |---|---| | /data-viz | Python charts: matplotlib, seaborn, plotly — Anthropic |

Design Philosophy

Inspired by Andrej Karpathy (minimal, self-contained, teaching-oriented) and Matt Pocock (composable skills, alignment before building, strong feedback loops).

  • One canonical source — maintain AGENTS.md, adapters auto-generated
  • Composable skills — small, transparent, single-purpose markdown files
  • Works everywhere — no platform lock-in
  • Living artifact — evolves with the landscape. Start minimal, compound.

Inspiration