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

@aktibaba/qa-testing-skills

v1.0.4

Published

AI-powered QA testing prompts for any agent — Claude, Cursor, Copilot, Windsurf, ChatGPT, and more

Readme

QA Testing Skills

AI-powered QA testing prompts that work with any AI agent — Claude Code, Cursor, Windsurf, GitHub Copilot, ChatGPT, Gemini, or any LLM.

One command to install. Zero dependencies. Just markdown prompts that turn any AI into a QA architect.

Quick Start

npx @aktibaba/qa-testing-skills init

That's it. The CLI auto-detects your AI tool and installs the prompts in the right place.

Platform-specific install

npx @aktibaba/qa-testing-skills init claude      # → .claude/commands/
npx @aktibaba/qa-testing-skills init cursor      # → .cursor/rules/
npx @aktibaba/qa-testing-skills init windsurf    # → .windsurf/rules/
npx @aktibaba/qa-testing-skills init copilot     # → .github/copilot-instructions.md
npx @aktibaba/qa-testing-skills init generic     # → prompts/ (copy-paste anywhere)

Available Prompts

| Prompt | What it does | |--------|-------------| | qa-api | Design and generate API test suites (REST, GraphQL, gRPC) | | qa-ui | Browser automation and E2E tests (Playwright, Cypress, Selenium) | | qa-env | Docker-based reproducible test environments | | qa-int | Integration tests for service interactions, databases, queues | | qa-perf | Load testing, stress testing, benchmarks (k6, Locust, Artillery) | | qa-sec | Security testing — OWASP Top 10, scanning, vulnerability detection | | qa-ci | CI/CD pipeline with quality gates (GitHub Actions, GitLab CI, Jenkins) | | qa-reg | Regression suite organization — smoke, sanity, full regression tiers | | qa-rv | Test quality review — scored audit with actionable recommendations | | qa-unit | Unit testing — isolated function/method tests with mocking |

Usage Examples

Claude Code

# After running: npx @aktibaba/qa-testing-skills init claude
claude /qa-api        # Generate API tests for your project
claude /qa-ui         # Generate E2E tests
claude /qa-ci         # Setup CI pipeline with quality gates

Cursor / Windsurf

Prompts are auto-loaded as rules. Just ask:

"Use qa-api to generate tests for my Express API"

ChatGPT / Gemini / Any LLM

npx @aktibaba/qa-testing-skills init generic

Then copy-paste the relevant prompt file from prompts/ into your chat.

What Each Prompt Does

Every prompt follows the same pattern:

  1. Discovery — Scans your project, detects stack, framework, existing tests
  2. Strategy — Designs a risk-based test plan prioritized by business impact
  3. Generation — Creates test files, configs, and helpers ready to run
  4. Validation — Checks output against a quality checklist
  5. Report — Provides run commands, coverage summary, and recommendations

Supported Stacks

  • Languages: JavaScript/TypeScript, Python, Go, Java, C#, Ruby, PHP
  • Test Frameworks: Playwright, Cypress, Jest, pytest, JUnit, Go test, xUnit, RSpec, Mocha, Vitest, Selenium
  • CI/CD: GitHub Actions, GitLab CI, Jenkins, Azure Pipelines, CircleCI, Bitbucket Pipelines
  • Performance: k6, Locust, Artillery, JMeter, Gatling
  • Security: Semgrep, Trivy, Snyk, ZAP
  • Containers: Docker, Podman, nerdctl

How It Works

Each prompt is a self-contained markdown file that instructs any AI to act as a QA architect. No runtime, no dependencies, no API keys needed.

prompts/
├── qa-api.md      # API testing prompt
├── qa-ui.md       # UI/E2E testing prompt
├── qa-env.md      # Docker environment prompt
├── qa-int.md      # Integration testing prompt
├── qa-perf.md     # Performance testing prompt
├── qa-sec.md      # Security testing prompt
├── qa-ci.md       # CI/CD pipeline prompt
├── qa-reg.md      # Regression testing prompt
├── qa-rv.md       # Test review prompt
└── qa-unit.md     # Unit testing prompt

The CLI just copies these files to the right location for your AI tool. That's the whole trick.

License

MIT