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

@favelasquez/agentskills

v0.3.5

Published

Detect your stack and install AI agent skills — one command.

Downloads

1,514

Readme

 █████╗  ██████╗ ███████╗███╗   ██╗████████╗
██╔══██╗██╔════╝ ██╔════╝████╗  ██║╚══██╔══╝
███████║██║  ███╗█████╗  ██╔██╗ ██║   ██║
██╔══██║██║   ██║██╔══╝  ██║╚██╗██║   ██║
██║  ██║╚██████╔╝███████╗██║ ╚████║   ██║
╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═══╝   ╚═╝

███████╗██╗  ██╗██╗██╗     ██╗     ███████╗
██╔════╝██║ ██╔╝██║██║     ██║     ██╔════╝
███████╗█████╔╝ ██║██║     ██║     ███████╗
╚════██║██╔═██╗ ██║██║     ██║     ╚════██║
███████║██║  ██╗██║███████╗███████╗███████║
╚══════╝╚═╝  ╚═╝╚═╝╚══════╝╚══════╝╚══════╝

Detect your project's tech stack and install AI agent skills in one command.

What it does

agentskills scans your project directory, identifies the technologies in use (Angular, Laravel, FastAPI, Docker, AG Grid, etc.), and installs the matching skill files into your AI agent's configuration folder. No manual copy-pasting, no hunting for skill repos.

Requirements

  • Node.js 18 or higher

Usage

npx @favelasquez/agentskills

That's it. The CLI will:

  1. Detect your stack
  2. Suggest matching skills
  3. Ask which agents to install for (Claude Code, Cursor, Copilot, etc.)
  4. Let you pick which skills to install
  5. Download and write the skill files

Options

| Flag | Description | |------|-------------| | --claude-code | Install for Claude Code | | --cursor | Install for Cursor | | --gemini | Install for Gemini CLI | | --copilot | Install for GitHub Copilot | | --cline | Install for Cline | | --codex | Install for Codex | | --dry-run, -d | Preview what would be installed without writing files | | -y, --yes | Skip confirmations, install all suggested skills | | --dir <path> | Scan a specific directory instead of the current folder | | --help, -h | Show help |

Examples

# Interactive mode — detect stack, pick agent and skills
npx @favelasquez/agentskills

# Install only for Claude Code, no prompts
npx @favelasquez/agentskills --claude-code -y

# Preview what would be installed for Cursor
npx @favelasquez/agentskills --cursor --dry-run

# Scan a different project folder
npx @favelasquez/agentskills --dir /path/to/project

Supported stacks

| Technology | Detected by | |------------|-------------| | Angular (v13+, v6–v12, legacy) | @angular/core + angular.json | | Laravel | artisan + composer.json | | FastAPI | requirements.txt / pyproject.toml | | C# / .NET | .csproj / .sln files | | AG Grid v32+ | ag-grid-community, ag-grid-angular, etc. | | AG Grid < v32 | Same packages, lower version | | Deepgram | @deepgram/sdk | | Twilio | twilio, @twilio/conversations | | Docker | Dockerfile, docker-compose.yml |

Universal skills

These are always suggested regardless of the detected stack:

  • commits — standardized commit messages
  • review-pr — pull request review workflow
  • resolve-conflicts — git conflict resolution
  • gitignore-cleaner — clean up .gitignore files
  • update-repo — repo update workflow
  • skill-creator — create new skills
  • stack-detector — stack detection helper
  • engram-expert — Engram memory expert
  • engram-install-setup — Engram installation and setup
  • engram-memory-assistant — Engram memory assistant

Agent install locations

| Agent | Skills folder | |-------|---------------| | Claude Code | .claude/skills/ | | Cursor | .cursor/rules/ | | Gemini CLI | .gemini/skills/ | | GitHub Copilot | .github/skills/{skill}/SKILL.md | | Cline | .clinerules/ | | Codex | .codex/skills/ |

Skills source

Skills are fetched directly from the favelasquez/repo-skills GitHub repository. No authentication is required.

Troubleshooting

EOVERRIDE — Override conflicts with direct dependency

npm error code EOVERRIDE
npm error Override for moment@^2.30.1 conflicts with direct dependency

This is not an agentskills issue. It means your project's package.json has an overrides entry that conflicts with one of its own direct dependencies. npm 8+ blocks the install entirely when this happens.

Workaround: run the command from outside your project directory and point it at the project with --dir:

cd ~
npx @favelasquez/agentskills --dir /path/to/your/project

SyntaxError: Unexpected token {

Your Node.js version is too old. agentskills requires Node.js 18 or higher.

Check your version with node -v and upgrade at nodejs.org.

Author

Creado por https://github.com/favelasquez

License

MIT