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

llmtrio

v0.1.1

Published

Multi-LLM orchestration tool. Run Claude, Codex, and Gemini in parallel with a real-time dashboard.

Readme


Why LLMTrio?

Each LLM has strengths. Claude reasons deeply. Codex writes fast code. Gemini researches broadly. LLMTrio routes each task to the best model — automatically — and runs them in parallel.

One prompt in, production-ready output out.

Quick Start

npx llmtrio

Or clone and run:

git clone https://github.com/jee599/LLMTrio.git
cd LLMTrio
./trio

The dashboard opens in your browser. Install CLIs, authenticate, and start workflows — all from the UI. No terminal needed after the first command.

How It Works

You → "Build a REST API with auth"
          ↓
    ┌─────────────────────────────────────┐
    │           LLMTrio Engine            │
    │                                     │
    │  Discover → Define → Develop → Deliver
    └──┬──────────┬──────────┬────────────┘
       │          │          │
   Claude 🟠   Codex 🔵   Gemini 🟣
   Architecture  Code       Research
   Code Review   Testing    Documentation
  1. Enter a prompt — LLMTrio breaks it into tasks
  2. Auto-routes — Each task goes to the best model
  3. Parallel execution — All agents work simultaneously
  4. Real-time dashboard — Watch progress, costs, and outputs live

Default Model Routing

| Task | Agent | Model | |------|-------|-------| | Architecture | Claude | Opus 4.6 | | Code Review | Claude | Opus 4.6 | | Implementation | Codex | GPT-5.4 | | Testing | Codex | GPT-5.4 | | Research | Gemini | 3.1 Pro | | Documentation | Gemini | 3.1 Pro |

Fully configurable in .trio/routing.json.

Dashboard Features

  • Agent Status — Live output, current task, health indicators
  • Kanban Board — Drag-and-drop tasks, priorities, dependencies, search & filter
  • Cost Tracking — Per-agent and total spend with budget limits
  • Model Routing — Change which model handles which task type
  • Zero-Terminal Setup — Install & login CLI tools directly from browser

CLI Commands

./trio                        # Open dashboard (default)
./trio start "prompt"         # Start full 4-phase workflow
./trio task claude "prompt"   # Run single agent task
./trio login                  # Check CLI auth status
./trio status                 # Show workflow state
./trio stop                   # Stop all processes

4-Phase Workflow

| Phase | What Happens | |-------|-------------| | Discover | Requirements analysis, tech research | | Define | Architecture design, task breakdown | | Develop | Implementation, testing | | Deliver | Code review, documentation |

Architecture

Browser (dashboard.html)
    ↕ SSE + HTTP
Dashboard Server (localhost:3333)
    ↕ fs.watch + JSON
File System (.trio/)  ←→  Command Watcher  →  CLI Agents
  • Zero dependencies — Node.js built-in modules only
  • No build step — Single HTML file frontend
  • No database — JSON files in .trio/ for all state
  • Resilient — Dashboard can close/reopen without losing state

Project Structure

LLMTrio/
├── trio                        # CLI entry point
├── package.json                # npx support
├── scripts/
│   ├── octopus-core.js         # Multi-agent orchestration engine
│   ├── dashboard-server.js     # HTTP + SSE server (Node.js only)
│   ├── dashboard.html          # Frontend (single file, no build)
│   ├── command-watcher.sh      # Command queue processor
│   └── model-checker.sh        # Model update checker
├── config/
│   ├── default-routing.json    # Default task → model routing
│   └── default-budget.json     # Default budget limits
└── .trio/                      # Runtime data (gitignored)

Requirements

  • Node.js v18+

That's it. CLI tools (Claude Code, Codex, Gemini CLI) can be installed from the dashboard.

License

MIT