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

zenoai

v0.1.6

Published

Drop a senior engineer into any codebase. Instantly.

Readme


Zeno is an AI-powered CLI tool that analyses your JavaScript or TypeScript project and tells you exactly what is messy, what is risky, and where to start.

One command. No setup. No hand-holding.

🔍 Silent run. Zeno reads your codebase autonomously and returns a plain-English health report in under 2 minutes.

🔒 Your key stays local. API keys are stored only on your machine — never sent to our servers.


📰 News

  • 2026-04-14 🚀 Released v0.1.5 — fix recursive directory walking using readdirSync with isFile()
  • 2026-04-14 🚀 Released v0.1.4 — recursive file walking fix, symlink support, low-file-count warning
  • 2026-04-14 🚀 Released v0.1.3 — risk table with legibility scores, suggested actions, HTML export
  • 2026-04-13 🚀 Released v0.1.2 — ASCII banner, human-readable errors
  • 2026-04-13 🚀 Released v0.1.1 — multi-provider support (Anthropic, Gemini, OpenRouter, OpenAI)
  • 2026-04-12 🎉 Released v0.1.0 — first public release, SDE persona, Eyeball it action

✨ Key Features

🧠 Persona-driven — Choose the SDE lens for code quality and complexity analysis

Lightning fast — Static analysis runs locally, one AI call returns the full report

🔌 Model agnostic — Works with Anthropic, Gemini, OpenRouter, or OpenAI

🔒 Privacy first — Your code never leaves your machine. Only a compact structural summary is sent to the AI

🛠️ Zero config — No config files, no IDE plugins, no setup. Just npx zenoai


🚀 Quick Start

npx zenoai

No global install needed. Just run it inside any JS/TS project.


🔄 How it works


📊 Sample output

━━━  ZENO — CODEBASE HEALTH REPORT  ━━━

Health Score: 4/10

Top risky files:
  src/auth/index.ts      — handles auth, DB calls, and session logic in one file
  src/api/routes.ts      — 14 functions, no test file, high coupling
  src/utils/helpers.ts   — 312 lines, mixed concerns, imported everywhere

Observations:
  1. Auth and database logic are tangled — high risk if either changes
  2. 60% of your files have no test coverage
  3. Your utility layer is doing too much

🔌 Supported AI providers

Zeno works with your existing API key. Pick the provider you already have access to:

| Provider | Model | Get a key | |----------|-------|-----------| | Anthropic | claude-haiku-4-5-20251001 | console.anthropic.com | | Google AI Studio | gemini-2.5-pro | aistudio.google.com | | OpenRouter | deepseek/deepseek-v3.2 | openrouter.ai | | OpenAI | gpt-4o | platform.openai.com |

Your key is saved to ~/.zenoai/config.json on first run. It never leaves your machine.


📋 Requirements

  • Node.js 18 or higher
  • A JavaScript or TypeScript project
  • An API key from any supported provider

🔁 Reset your API key

rm ~/.zenoai/config.json
npx zenoai

🗺️ Roadmap

| Phase | Status | Description | |-------|--------|-------------| | Phase 1 — Eyeball it | ✅ Live | Read-only codebase health report | | Phase 2 — Fix it | 🔄 Coming soon | Autonomous refactoring with tests-first safety | | Phase 3 — Scale it | 🔜 Planned | No API key needed, Zeno handles everything |


📄 License

MIT © namahc