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

@pratikpsl/agent-skills

v1.3.0

Published

CLI to scaffold and manage AI agent skills across projects — like shadcn/ui, but for Cursor, Claude, Codex, Copilot, Antigravity, and more

Readme

@pratikpsl/agent-skills

Scaffold and manage AI agent skills across any project — for Cursor, Claude, Codex, Copilot, Antigravity, and Cline.

@pratikpsl/agent-skills is a single npm package: a TypeScript CLI plus bundled templates under templates/. No runtime network fetch — templates ship inside the package, so setup works offline after install.


Quickstart

From any project root (Node 18+ or Bun):

Shared Agent Skills (Universal Skills & Personas)

Running with an agent name or shared automatically installs shared skills (AgentSkills/skills/review, AgentSkills/skills/principles, AgentSkills/skills/standards, AgentSkills/skills/security), agent personas (AgentSkills/agents/architect.md, AgentSkills/agents/reviewer.md), and the agent's entry point:

# Install shared skills + specific IDE / Agent entry point
npx @pratikpsl/agent-skills antigravity # → .agents/rules/GEMINI.md + AgentSkills/
npx @pratikpsl/agent-skills cursor      # → .cursor/rules/instructions.md + AgentSkills/
npx @pratikpsl/agent-skills claude      # → AGENTS.md + AgentSkills/
npx @pratikpsl/agent-skills code        # → AGENTS.md + AgentSkills/
npx @pratikpsl/agent-skills codex       # → AGENTS.md + AgentSkills/
npx @pratikpsl/agent-skills copilot     # → .github/copilot-instructions.md + AgentSkills/
npx @pratikpsl/agent-skills cline       # → .clinerules + AgentSkills/

# Install shared skills across all IDE entry points
npx @pratikpsl/agent-skills shared

Compact Single-File Instructions

To scaffold compact single-file agent instructions without the AgentSkills/ folder:

npx @pratikpsl/agent-skills default
npx @pratikpsl/agent-skills default --agent antigravity

.NET / C# Template

# Install .NET agent skills + all IDE entry points
npx @pratikpsl/agent-skills dotnet

# Install .NET agent skills + specific agent entry point only
npx @pratikpsl/agent-skills dotnet --agent code
npx @pratikpsl/agent-skills dotnet --agent cursor

React / TypeScript Template

# Install React agent skills + all IDE entry points
npx @pratikpsl/agent-skills react

# Install React agent skills + specific agent entry point only
npx @pratikpsl/agent-skills react --agent cursor
npx @pratikpsl/agent-skills react --agent claude

Python Template

# Install Python agent skills + all IDE entry points
npx @pratikpsl/agent-skills python

# Install Python agent skills + specific agent entry point only
npx @pratikpsl/agent-skills python --agent cursor
npx @pratikpsl/agent-skills python --agent claude

Rust Template

# Install Rust agent skills + all IDE entry points
npx @pratikpsl/agent-skills rust

# Install Rust agent skills + specific agent entry point only
npx @pratikpsl/agent-skills rust --agent cursor
npx @pratikpsl/agent-skills rust --agent claude

(You can also use bunx @pratikpsl/agent-skills in Bun environments).


CLI Options

Usage: agent-skills [options] [template]

Arguments:
  template              Template: default, dotnet, python, react, rust, shared; agent names install shared guidance

Options:
  -V, --version         output the version number
  --agent <name>        Install one agent entry point: antigravity, claude, cline, code, codex, copilot, cursor
  --force               Overwrite installed files (default: false)
  --hardlink            Hardlink matching entry points (default: true)
  --no-hardlink         Do not hardlink matching entry points
  --path <dir>          Target project root (default: current working directory)
  -h, --help            display help for command

Bundled Templates

| Template | Path | Description | | --- | --- | --- | | shared | templates/shared/ | Base operating contract, core skills (principles, standards, security, review), review & architecture agents (architect.md, reviewer.md) | | dotnet | templates/dotnet/ | .NET/C# skills, architecture & developer agents (architect.md, developer.md), memory | | python | templates/python/ | Python skills (PEP 8, uv, typing, testing, performance), architecture & developer agents (architect.md, developer.md) | | react | templates/react/ | React & TypeScript skills, frontend testing, developer agent (developer.md) | | rust | templates/rust/ | Rust skills (ownership, best-practices, testing, performance), architecture & developer agents (architect.md, developer.md) | | default | templates/default/ | Compact single-file agent instructions without AgentSkills folder |


Repository Layout

coding-skills-ai/
├── src/
│   ├── bin/agent-skills.ts     # CLI binary entry
│   ├── cli/index.ts            # Commander CLI program
│   └── core/
│       ├── ide-map.ts          # IDE entry point definitions and parser
│       ├── install-template.ts # Installation & merging engine
│       └── resolve-template.ts # Bundled template resolver
├── templates/
│   ├── default/                # Single-file instructions
│   ├── dotnet/                 # .NET template
│   ├── python/                 # Python template
│   ├── react/                  # React template
│   ├── rust/                   # Rust template
│   └── shared/                 # Shared operating contract & memory
├── tests/                      # Vitest test suite
├── bun.lock                    # Reproducible lockfile
├── package.json
├── tsconfig.json
├── vitest.config.ts
├── SECURITY.md
├── LICENSE                     # Apache-2.0
└── README.md

Local Development

bun install
bun run build
bun test

Security

Please see SECURITY.md for our security policy and reporting procedures.


License

Apache License 2.0 — see LICENSE.