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

tenbo-dashboard

v0.13.0

Published

Local-first architecture dashboard and CLI tools for .tenbo/ repos

Readme

tenbo-dashboard

Local architecture dashboard and CLI tools for tenbo — an agentic project manager for AI-assisted coding.

Quick start

# Run in any project with a .tenbo/ directory
npx tenbo-dashboard

Opens a local dashboard at http://localhost:5174.

What it gives you

Three views over the same .tenbo/ files Claude maintains. Edits in either surface show up in the other on next refresh.

Roadmap — what to work on next

tenbo dashboard — kanban view

Kanban across now / next / later / done, grouped by scope and layer. Drag to reprioritize, click to edit. The same roadmap Claude reads when you ask "what should I build next?".

Docs — what the project actually does

tenbo dashboard — docs view

Project overview, principles, and glossary alongside per-layer narratives, intents (responsibilities + boundaries + invariants), and code maps (entry points + key files + extension recipes). Onboard new contributors — human or AI — in minutes instead of an hour of grep.

Health — where the codebase is quietly rotting

tenbo dashboard — health view

Surfaces the things that would otherwise become tech debt nobody mentions: oversized layers (hotspots), code-map references that no longer match real files (doc drift), unreferenced files, coupling violations, dead code. Each finding carries a severity, the file it points at, and a suggested fix.

Some health findings include generated graph evidence such as importers, exports, and layer ownership. This evidence is rebuilt from source and .tenbo/ metadata; it is not separate project memory.

CLI tools

The same package ships commands the skill uses behind the scenes — also runnable directly:

npx tenbo-dashboard item show sk-030 --json
npx tenbo-dashboard item set-status sk-030 done
npx tenbo-dashboard item add-note sk-030 "Implemented; live verification pending"
npx tenbo-dashboard item verify sk-030 --status pending_live --evidence "npm test -- --run"
npx tenbo-dashboard item link-commit sk-030 7fc09a5
npx tenbo-dashboard items --status done --verification pending_live --json
npx tenbo-dashboard next --json
npx tenbo-dashboard context feature --query "help me build X" --json
npx tenbo-dashboard impact --json     # Map git changes to affected layers/docs/items
npx tenbo-dashboard index --json      # Rebuild the derived source index
npx tenbo-dashboard validate          # Schema + consistency checks
npx tenbo-dashboard init-check        # Strict completeness check after fresh init
npx tenbo-dashboard metrics --all     # Recompute scope metrics + health findings
npx tenbo-dashboard next-id <prefix>  # Allocate next roadmap item ID
npx tenbo-dashboard --version         # Print the installed version

Installed packages also expose a shorter tenbo binary alias for the same commands.

context feature is the agent-facing read path. It returns likely scope/layers, matching roadmap items, active work, goal refs, recommended files, and freshness warnings as one JSON payload so agents do not have to re-read every roadmap file by hand.

What is tenbo?

An AI cofounder that gives your coding assistant persistent project memory — architecture docs, roadmaps, and health signals that survive across sessions. Available as a Claude Code skill and as a Cursor rule package; both editors share the same .tenbo/ data and the same companion dashboard. The dashboard is the optional visual companion; the skill / rule is the always-on conversational brain.

Install: github.com/poyi/tenbo (instructions for both Claude Code and Cursor)

License

MIT