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

@vuthanh86/qa-agent

v1.0.2

Published

Senior-QA AI orchestrator — generate test cases, audit ADO test plans, run end-to-end UI tests via agent-browser, with platform adapters for DSH, Claude Code, Gemini CLI, and Minimax Code.

Readme

qa-agent — Senior-QA AI Orchestrator

Platform-agnostic QA CLI that chains code-change → test cases → ADO audit → browser execution → report. Works with DSH, Claude Code, Gemini CLI, and Minimax Code.

Quick Start

npm install -g qa-agent

# Mode A — generate test cases from a diff
qa-agent run --scope "diff main...HEAD" --depth smoke --platform dsh

# Mode B — audit an existing ADO test plan
qa-agent run --plan-url "https://dev.azure.com/org/proj/_testPlans/execute?planId=123" --platform dsh

Two Modes

| Mode | Trigger | Flow | |---|---|---| | A | No --plan-url | codegen → draft → verify → translate → e2e → report | | B | --plan-url provided | read → audit → improve → finalize → e2e → report |

Platforms

| Flag | Platform | Requirement | |---|---|---| | --platform dsh | DeepSeek Harness | DSH running at localhost:3080 | | --platform claude-code | Claude Code (Anthropic) | claude on PATH | | --platform gemini | Gemini CLI (Google) | gemini on PATH | | --platform minimax | Minimax Code | minimax-code on PATH |

Omit --platform to auto-detect.

Commands

qa-agent run        # Full pipeline
qa-agent codegen    # git diff → test cases
qa-agent translate  # plan.md → scenario blocks
qa-agent report     # results → report + defects
qa-agent history    # QA history graph
qa-agent snapshot   # Browser snapshot save/restore/list
qa-agent help       # This help

Environment

export QA_BASE_URL="https://qa.app.contoso.com"
export QA_USER="qa-bot"
export QA_PASS="..."
export AZURE_DEVOPS_PAT="..."       # for ADO test plan audit
export ADO_ORG="contoso"
export ADO_PROJECT="pmi"

Output

plans/<timestamp>-qa-<slug>/
├── plan.md            # case table + impact map
├── scenarios.md       # ## Scenario blocks
├── results.json       # machine-readable results
├── results.md         # human-readable report
├── defects.md         # defect ledger
├── history.html       # pass-rate trend graph
└── evidence/          # per-step screenshots

Requirements

  • Node.js ≥ 18
  • Git
  • agent-browser (for e2e execution)
  • A platform adapter (DSH / Claude Code / Gemini / Minimax)