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

mobtrace

v0.1.0

Published

Diff-aware mobile regression evidence and diagnosis for coding agents.

Readme

MobTrace

MobTrace is a diff-aware mobile regression evidence and diagnosis CLI for AI coding agents and mobile developers.

It runs an existing Maestro journey, captures local evidence, inspects the current Git diff, and prints a deterministic diagnosis that points to the most likely investigation area.

The project is experimental and preparing for public v0.1. Start with docs/guides/usage.md, then use docs/README.md for full product, contract, engineering, and execution-plan documentation.

Requirements

  • Node.js 22.12 or newer
  • npm 10
  • Git
  • Maestro for real mobile journeys

First Run

Install from npm after publication:

npm install --save-dev mobtrace
npx mobtrace --help

For local development from this repository:

npm ci
npm run build
node dist/cli.js --help

Create a starter config in a mobile project:

mobtrace init
mobtrace doctor

init also creates or updates .gitignore with .mobtrace/ so retained run artifacts stay local. If you write the config manually, add this entry yourself:

.mobtrace/

Configure an existing Maestro flow in mobtrace.yaml:

version: 1
flows:
  login:
    path: .maestro/flows/login.yaml

See examples/minimal/mobtrace.yaml for a slightly fuller starting point with artifact and ownership hints.

For more detail, read docs/guides/usage.md.

Run and inspect:

mobtrace verify --flow login
mobtrace report latest --full

Machine-readable output is available with:

mobtrace verify --flow login --json
mobtrace report latest --json

Why Not Raw Maestro?

Maestro tells you whether the flow passed and where the automation failed. MobTrace keeps that evidence, then adds the missing debugging layer:

  • failure class and ownership area
  • source diff and changed-file correlation
  • suspicious file ranking
  • retained JSON and Markdown reports
  • stable exit codes for agents and automation

MobTrace does not replace Maestro. It sits above an existing flow and helps an agent or developer decide where to inspect first.

Support And Limitations

  • v0.1 is local-only: no artifact upload, telemetry, or hosted service.
  • Linux is the current runtime-verified host baseline.
  • macOS follows the POSIX code path but still needs real host runtime verification before it is described as runtime-verified.
  • Windows is unsupported.
  • Diagnosis is deterministic investigation guidance, not proof of root cause.
  • Raw runner logs, source diffs, and device logs can contain sensitive project data. Generated reports are redacted, but raw evidence is retained locally and marked as sensitive.
  • Retained artifacts default to .mobtrace/runs; keep .mobtrace/ ignored in consuming projects.

For common setup and runtime failures, read docs/guides/troubleshooting.md.

Development

Install dependencies:

npm ci

Run the canonical local verification:

npm run verify

For non-trivial changes, run the full local harness:

npm run verify:full

Build and invoke the CLI:

npm run build
node dist/cli.js --help
node dist/cli.js --version

Run the deterministic product validation fixture:

npm test -- test/product-validation.test.ts