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

strykr-qa-bot

v0.1.1

Published

Automated QA for Strykr AI trading platform. Pre-built test suites for crypto signals, stocks, news, AI chat. Drop-in CI/CD testing. Works with Cursor, Claude, Playwright.

Readme

strykr-qa-bot

Strykr-specific QA automation extending web-qa-bot.

Pre-built test suites for https://app.strykr.ai covering all pages, filters, and functionality.

Features

  • Pre-built Test Suites - Ready-to-run tests for all Strykr pages
  • Known Issue Tracking - Documented bugs with severity and status
  • Strykr-specific Assertions - Custom validators for signal cards, AI responses
  • PRISM API Health Checks - Endpoint monitoring
  • Screenshot Capture - Visual evidence for all test steps

Quick Start

# Clone the repo
git clone https://github.com/NextFrontierBuilds/strykr-qa-bot.git
cd strykr-qa-bot

# Install dependencies
npm install

# Run all test suites
npm test

# Run specific suite
npm run test:crypto
npm run test:homepage

Test Suites

| Suite | Description | |-------|-------------| | homepage.yaml | Market status, navigation, widgets | | crypto-signals.yaml | Crypto filters, signal cards, actions | | stock-signals.yaml | Stock/ETF/Forex filters, actions | | news.yaml | News routing, filters, interactions | | events.yaml | Economic events, impact filters | | ai-chat.yaml | AI input, responses, quality |

Running Tests

All Suites

npm test
# or
npx web-qa-bot run ./test-suites --config strykr-qa.yaml

Individual Suite

npx web-qa-bot run ./test-suites/crypto-signals.yaml

Smoke Test

npm run smoke
# Quick health check of the site

Known Issues

The config/known-issues.yaml tracks documented bugs:

| ID | Severity | Description | |----|----------|-------------| | details-modal-empty | High | Details modal opens but content empty | | direct-url-blank-news | Medium | /news blank on direct URL navigation | | direct-url-blank-events | Medium | /economic-events blank on direct URL | | events-widget-race-condition | Low | Homepage events widget intermittent |

Tests that hit known issues are marked as "known-issue" rather than "fail".

Configuration

Edit strykr-qa.yaml to customize:

baseUrl: https://app.strykr.ai

browser:
  headless: false
  timeout: 30000
  screenshotDir: ./screenshots

suites:
  - test-suites/homepage.yaml
  - test-suites/crypto-signals.yaml
  # ...

knownIssuesFile: ./config/known-issues.yaml

Strykr-Specific Assertions

expectSignalCard

Validates signal card components:

await strykr.expectSignalCard({
  hasSymbol: true,
  hasPrice: true,
  hasChart: true,
  hasActions: true,
  type: 'crypto',
  direction: 'long'
});

expectAIResponse

Validates AI response quality:

await strykr.expectAIResponse({
  hasPrice: true,
  hasTechnicals: true,
  minLength: 200,
  hasSentiment: true
});

checkPrismEndpoints

Health check PRISM API endpoints:

const health = await strykr.checkPrismEndpoints();
// Returns Map<endpoint, isHealthy>

Test Coverage

Filters Tested

  • Direction: Long / Short
  • Crypto chains: EVM / Solana
  • Asset types: Stocks / ETFs / Forex
  • News categories: Crypto / Stocks / All
  • News sentiment: Bullish / Bearish
  • Event impact: High / Medium / Low
  • Event time: Today / This Week

Actions Tested

  • Listen (TTS playback)
  • Ask Strykr AI (pre-filled queries)
  • Details modal (known issue: empty content)
  • Share options

Navigation Tested

  • Sidebar navigation (works)
  • Direct URL navigation (issues on /news, /economic-events)

AI Chat Tested

  • Direct input queries
  • Pre-filled queries from signals
  • Response quality (length, content)
  • Loading states
  • Error handling

Reports

Generate a test report:

npx web-qa-bot report ./results --output report.md

Reports include:

  • Pass/Fail/Known-issue status
  • Screenshots
  • Console errors
  • Timing metrics

Project Structure

strykr-qa-bot/
├── test-suites/
│   ├── homepage.yaml
│   ├── crypto-signals.yaml
│   ├── stock-signals.yaml
│   ├── news.yaml
│   ├── events.yaml
│   └── ai-chat.yaml
├── src/
│   ├── index.ts
│   ├── strykr-bot.ts
│   └── assertions.ts
├── config/
│   └── known-issues.yaml
├── strykr-qa.yaml
├── package.json
├── README.md
└── SKILL.md

Contributing

  1. Add new tests to appropriate suite YAML
  2. Document new known issues in config/known-issues.yaml
  3. Add custom assertions to src/assertions.ts

License

MIT

Links