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

multiarena

v0.2.2

Published

Terminal-native multi-model content generation — N models collaborate to produce the best document, analysis, script, or strategy

Downloads

122

Readme

multiarena

English | 中文

Stop relying on a single AI's opinion. multiarena lets you talk to multiple LLMs at once — Claude, GPT, Gemini, DeepSeek, and more — compare their answers, and let them debate each other to produce the best result.


The Problem

Every AI model has blind spots. Ask one model to write a brand story, and you get a decent draft. Ask one model to analyze a decision, and you get one perspective. The best work comes from multiple viewpoints — but switching between chat tabs is painful.

The Solution

multiarena puts multiple models in the same room. Broadcast a question, see every model's answer side-by-side. Switch to team mode, and models collaborate in relay — drafting, revising, polishing — to produce a document that's been through 4 pairs of eyes, not just one.


What You Can Do

| Task | How multiarena helps | |------|---------------------| | Write better copy | 3 models draft a brand story → debate each other's choices → deliver a polished piece | | Analyze decisions | Ask all models to evaluate a proposal → compare their reasoning → spot consensus and blind spots | | Review documents | Models take turns critiquing your draft from different angles (skeptic, pragmatist, user advocate) | | Brainstorm ideas | Broadcast a prompt → 4 models each contribute unique angles → merge into one document |


Web UI

Clean, intuitive interface for non-technical users. Zero config — start with a setup wizard.

┌──────────────────────────────────────────────────────────┐
│  ⚡ multiarena                           [⚙] [🌙] [EN]  │
│──────────────────────────────────────────────────────────│
│                                                          │
│               Good afternoon, Tim 👋                      │
│          What would you like to do today?                 │
│                                                          │
│  ┌── ✍️ Write ────┐ ┌── 📊 Analyze ────┐               │
│  │ Brand story    │ │ Compare options  │               │
│  │ Ad copy        │ │ Analysis report  │               │
│  │ Product intro  │ │ Data insights    │               │
│  └───────────────┘ └──────────────────┘               │
│                                                          │
│  ┌── 💡 Ideate ───┐ ┌── 🔍 Review ─────┐               │
│  │ Product name   │ │ Find gaps         │               │
│  │ Slogan         │ │ Improve wording   │               │
│  │ Campaign ideas │ │ Polish            │               │
│  └───────────────┘ └──────────────────┘               │
│                                                          │
│  ┌──────────────────────────────────────────────────┐   │
│  │  Write a brand story for my specialty coffee     │   │
│  │  roastery, for our website About page…           │   │
│  └──────────────────────────────────────────────────┘   │
│                              [Start AI Team →]           │
└──────────────────────────────────────────────────────────┘

multiarena (no args needed)

CLI

Terminal-native for developers. Keyboard-driven, fast, stays in your workflow.

┌─ claude ──────────────────┐ ┌─ gpt ─────────────────────┐
│                           │ │                           │
│  Let me analyze this      │ │  I'd evaluate this from   │
│  approach in detail:      │ │  three angles:            │
│                           │ │                           │
│  Strengths:               │ │  1. Technical feasibility │
│  1. Clean four-layer arch │ │  2. Maintenance cost      │
│  2. Simple Provider API   │ │  3. Room for expansion    │
│                           │ │                           │
│  2K/200K · 15 lines · done│ │  1K/128K · 12 lines · done│
└───────────────────────────┘ └───────────────────────────┘
──────────────────────────────────────────────────────────
 claude ●  gpt ●  — Tab:model d:compare m:mute q:quit
[all] > ▊

multiarena terminal

Team deliberation: models challenge each other. Draft → Revise → Polish → Review — 4 perspectives fight over every sentence. The result survives real scrutiny.


Quick Start

npm install -g multiarena
multiarena                # Opens Web UI in your browser
multiarena terminal       # Terminal mode (for CLI lovers)

No config? No problem. The Web UI has a setup wizard. Or create .multiarenarc:

[models.claude]
provider = "anthropic"
model = "claude-sonnet-4-6"
api_key = "${ANTHROPIC_API_KEY}"

[models.gpt]
provider = "openai"
model = "gpt-4o"
api_key = "${OPENAI_API_KEY}"

[defaults]
active = ["claude", "gpt"]

Installation

npm install -g multiarena          # Recommended
git clone [email protected]:timgunnar/multiarena.git  # From source

Supported Models

Anthropic (Claude) · OpenAI (GPT-4o) · Google (Gemini) · DeepSeek · MiniMax · Ollama (local)

CLI

multiarena              # Web UI (no args needed)
multiarena terminal     # Terminal mode
multiarena -r <id>      # Resume session
multiarena -l           # List sessions
multiarena -h           # Help

License

MIT


📖 User Guide — Full documentation: architecture, configuration, Web UI, session management, troubleshooting