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

@qaengineer/cli

v0.2.0

Published

AI-powered end-to-end testing framework - CLI tool

Downloads

21

Readme

🤖 QAengineer.ai

Write tests in plain English. Let AI handle the rest.

npm version License: MIT PRs Welcome

Ship with confidence. Catch bugs before your users do.

🚀 Quick Start✨ Features📚 Examples🔧 Configuration


🌟 What is QAengineer.ai?

QAengineer.ai transforms end-to-end testing by letting you write tests in natural language. No more complex selectors, no more brittle test code—just describe what you want to test, and let AI handle the execution.

# Test Example

go to https://www.google.com and make sure the page is loaded successfully.

That's it. That's a test. ✨

🚀 Quick Start

1. Initialize your project

npx @qaengineer/cli init

This creates a .qaengineer folder with example tests and configuration.

2. Run your tests

npx @qaengineer/cli run --apiKey=your_key --provider=openai --model=gpt-4

3. Add to your package.json (optional)

{
  "scripts": {
    "qa": "@qaengineer/cli run --apiKey=$OPENAI_API_KEY --provider=openai --model=gpt-4",
    "qa:init": "@qaengineer/cli init"
  }
}

✨ Features

  • 🗣️ Natural Language Tests - Write tests in plain English
  • 🤖 AI-Powered Execution - Let AI handle the technical details
  • 🔧 Multiple AI Providers - OpenAI, Anthropic, and more
  • 🎯 Smart Test Discovery - Automatically finds and runs all .md test files
  • 📊 Detailed Reporting - Clear success/failure reports with troubleshooting
  • 🔄 CI/CD Ready - Works seamlessly in any CI/CD pipeline
  • 🏠 Local Development - Run tests locally with fast feedback

📚 Examples

Basic Navigation Test

# Homepage Load Test

Navigate to https://example.com and verify the page loads successfully.
Check that the main heading is visible.

Form Interaction Test

# Contact Form Test

Go to https://example.com/contact
Fill out the contact form with:

- Name: "John Doe"
- Email: "[email protected]"
- Message: "Hello, this is a test message"
  Submit the form and verify success message appears.

E-commerce Flow Test

# Product Purchase Flow

Visit the online store at https://shop.example.com
Search for "laptop"
Click on the first product
Add it to cart
Proceed to checkout
Verify the cart contains the selected item

🔧 Configuration

Supported AI Providers

| Provider | Models | Setup | | ------------- | --------------------------------------- | ---------------------------------------- | | OpenAI | gpt-4, gpt-4-turbo, gpt-3.5-turbo | --provider=openai --apiKey=your_key | | Anthropic | claude-3-sonnet, claude-3-haiku | --provider=anthropic --apiKey=your_key |

Environment Variables

# .env file
OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_anthropic_key

Configuration File

Create a config.md file in your .qaengineer folder for shared setup:

<!-- config.md -->

# Shared Configuration

Before running any tests:

1. Navigate to https://app.example.com
2. Login with username: [email protected]
3. Wait for dashboard to load

All tests should start from the authenticated dashboard.

🏗️ Project Structure

your-project/
├── .qaengineer/
│   ├── config.md          # Shared configuration
│   ├── homepage-test.md   # Test files
│   ├── login-test.md
│   └── checkout-test.md
├── package.json
└── ...

🔍 How It Works

  1. 📝 Write Tests - Create .md files with natural language descriptions
  2. 🤖 AI Processing - AI interprets your tests and converts them to actions
  3. 🎭 Playwright Execution - Tests run via Playwright for reliable automation
  4. 📊 Smart Reporting - Get detailed results with troubleshooting suggestions

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT License - see the LICENSE file for details.

🔗 Links


Made with ❤️ by the QAengineer.ai team

Star ⭐ this repo if you find it helpful!