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

qa-ai-repo

v0.8.0

Published

Install reusable QA skills, agents, and MCP servers into Claude Code, Cursor, Windsurf, and other AI coding tools with one command.

Readme

qa-ai-repo

Reusable QA skills, agents, and MCP servers, organized by objective and installable into any AI coding tool with one command.

npx qa-ai-repo list
npx qa-ai-repo add playwright-e2e

What it does

Each QA objective is a top-level folder containing only the pieces it needs:

playwright-e2e/
├── objective.json      # title + description (optional)
├── skills/             # Claude-style SKILL.md skills
├── agents/             # Claude-style subagent definitions
└── mcp/                # MCP server definitions (one JSON per server)

The CLI reads an objective and writes each piece into the right place for whichever AI tool you target — converting formats where needed:

| Source | Claude Code | Cursor | Windsurf | Generic | |---------------|---------------------------------|---------------------------------|------------------------------|------------------| | skills/* | .claude/skills/<name>/ | .cursor/rules/<name>.mdc | .windsurf/rules/<name>.md | AGENTS.md | | agents/*.md | .claude/agents/<name>.md | .cursor/rules/<name>.mdc | .windsurf/rules/<name>.md | AGENTS.md | | mcp/*.json | .mcp.json (merged) | .cursor/mcp.json (merged) | global mcp_config.json | printed to add |

Usage

npx qa-ai-repo list                              # list objectives
npx qa-ai-repo add <objective>                   # install into detected tools
npx qa-ai-repo add <objective> --tool cursor     # target specific tool(s)
npx qa-ai-repo add <objective> --tool all        # every supported tool
npx qa-ai-repo add <objective> --dry-run         # preview, write nothing
npx qa-ai-repo detect                            # show detected tools

--tool accepts a comma list of claude, cursor, windsurf, agents, or all. With no --tool, the CLI auto-detects tools in the current project (.claude / .cursor / .windsurf) and falls back to claude,cursor.

MCP servers are merged into existing config files, so add is safe to run repeatedly and across multiple objectives.

Add a new objective

cp -r _template my-objective        # scaffold
# edit my-objective/objective.json and drop files into skills/ agents/ mcp/
# remove any of the three folders the objective doesn't use
npx qa-ai-repo add my-objective     # try it locally

Local development

node bin/qa-ai.js list              # run without publishing
npm link                            # then `qa-ai list` works anywhere

Publishing

Objective folders ship automatically (see .npmignore); no need to enumerate them.

Automated (recommended). A GitHub Actions workflow (.github/workflows/release.yml) publishes to npm whenever you cut a Release:

  1. Add a repo secret NPM_TOKEN (an npm Automation access token): Settings → Secrets and variables → Actions → New repository secret.
  2. Bump version in package.json and commit.
  3. Create a GitHub Release (tag e.g. v0.1.0). The workflow smoke-tests the CLI and publishes; it skips automatically if that version is already on npm.

The workflow publishes with npm provenance (verified build attestation), enabled by --provenance + the id-token: write permission. This requires a public repo.

Manual. npm login then npm publish from the repo root.