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

ornnlab

v0.1.3

Published

OrnnLab npm launcher for the Harbor-powered local agent evaluation WebUI.

Readme

OrnnLab

OrnnLab is being redesigned as a Harbor-powered local WebUI for agent registration, experiment management, reports, and leaderboard review.

Current source of truth:

  • Version document index: docs/release/ornnlab-0.1.3-docs.md
  • Version PRD: docs/v0.1.3/prd.md
  • Version technical design: docs/v0.1.3/technical-design.md
  • Version engineering plan: docs/v0.1.3/engineering-plan.md
  • Install quickstart: docs/playbooks/install-quickstart.md
  • Release and rollback checklist: docs/release/checklist.md
  • Harbor upgrade procedure: docs/playbooks/harbor-upgrade-procedure.md
  • Rust legacy workspace decision: docs/archive/stubs/rust-legacy-fate.md
  • Documentation archive: docs/archive/2026-06-15-pre-harbor-webui-redesign/README.md

The active product direction is no longer a self-owned Rust benchmark runtime. Harbor owns benchmark execution, environment lifecycle, agent execution, verification, and raw job artifacts. OrnnLab owns the local product layer: declarative agent registration, experiment/run management, diagnostics, report summaries, and leaderboard views.

Install With npm

The npm launcher is published under the ornnlab package name. It is the public install path for the active source-based WebUI workflow.

npm install -g ornnlab
ornnlab

The npm install command still requires an existing Node/npm entrypoint. After that, the launcher checks git, uv, Node.js, npm, and optional Docker capability. Missing required tools are installed automatically when the platform has a supported package manager or installer path. Docker is optional for first launch and can be installed or skipped during setup.

The launcher stores its managed source checkout under ~/.ornnlab/launcher/source by default. OrnnLab product data remains under ~/.ornnlab/data. When the app starts, the terminal prints the frontend URL:

Frontend: http://127.0.0.1:5173/

For version authority and release documentation rules, see docs/release/version-governance.md.

Current Status

This repository still contains the previous Rust workspace and npm reservation package materials. They are legacy/reference assets. The active implementation path is the new Python/FastAPI backend and Vue frontend.

Implemented rewrite foundation:

  • ornnlab web / python -m ornnlab web backend entrypoint
  • /api/system/status, agents, experiments, events, benchmarks, leaderboard
  • SQLite migration and local ~/.ornnlab/data data directory initialization
  • AgentProfile v2 validation and Harbor agent config compilation
  • fake HarborEngine path for deterministic local tests
  • managed Harbor subprocess execution with cancellation cleanup evidence
  • Docker orphan doctor scan with dry-run cleanup plans
  • local ornnlab backup export / ornnlab backup import archives
  • safe ornnlab cleanup plan / ornnlab cleanup archive for stale local artifacts
  • Vue operations-console scaffold under frontend/
  • Python/Web gate script: scripts/test-after-change-web.sh
  • GitHub Actions CI for Python Web, frontend Web, and opt-in real Harbor Docker smoke

Planned Local App

The intended MVP stack is:

  • Python + FastAPI backend
  • Vue 3 + TypeScript frontend
  • SQLite metadata index
  • File-based artifacts under ~/.ornnlab/data
  • Harbor 0.13.x as the execution engine
  • Server-Sent Events for status and log streams

Development launch command:

uv sync --group dev
uv run ornnlab web

Frontend development command:

npm --prefix frontend ci
npm --prefix frontend run dev -- --host 127.0.0.1

See docs/playbooks/install-quickstart.md for the full fresh-checkout flow.

Existing npm Package History

The previous scoped npm package reserved the harnesslab command name:

npx @ceasarxuu/harnesslab --help
npx @ceasarxuu/harnesslab --version

The active npm install path is now ornnlab. The harnesslab Python console script remains as a compatibility alias during the transition.