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

omni-coder

v0.1.0

Published

Multi-agent coding CLI combining Claude, Gemini, and Codex into a single TUI

Readme

0mni

A TUI coding agent that combines Claude, Gemini, and Codex into a single CLI. Uses your locally installed coding agents as the runtime — no API keys needed.

┌─────────────────────────────────────────┐
│ 0mni v0.1.0 · ● claude-sonnet-4-6      │
├─────────────────────────────────────────┤
│                                         │
│ You: Fix the login bug in auth.ts       │
│                                         │
│ ● Claude: I'll look at auth.ts...       │
│ → read_file src/auth.ts                 │
│ → edit_file src/auth.ts                 │
│                                         │
│ Done. Fixed the null check on line 42.  │
│                                         │
├─────────────────────────────────────────┤
│ > _                                     │
└─────────────────────────────────────────┘

Install

npm install -g omni-cli

Or run directly:

npx omni-cli "fix the failing tests"

Prerequisites

You need at least one of these coding agents installed and authenticated:

0mni uses your existing CLI authentication. No separate API keys required.

Usage

# Interactive TUI
omni

# Start with a prompt
omni "explain this codebase"

# Force a specific provider
omni --provider claude "fix the bug"
omni -p gemini "search for the error"
omni -p codex "refactor the auth module"

# Auto-route to best provider per task
omni --auto "find and fix the performance issue"

# Specify a model
omni -m claude-opus-4-6 "design the new API"

# Auto-approve all tool calls
omni --yolo "fix all lint errors"

Slash Commands

Inside the TUI, use these commands:

| Command | Description | |---------|-------------| | /claude | Switch to Claude | | /gemini | Switch to Gemini | | /codex | Switch to Codex | | /auto | Toggle auto-routing | | /model <name> | Set a specific model | | /clear | Clear conversation | | /cost | Show token usage and cost | | /help | Show all commands |

Auto-Routing

When --auto is enabled, omni classifies your task and routes to the best provider:

| Task Type | Provider | Why | |-----------|----------|-----| | Complex reasoning, debugging | Claude | Best at multi-step reasoning | | Code generation, review | Claude | Strong code understanding | | Search, web queries | Gemini | Built-in Google Search grounding | | Multimodal (images) | Gemini | Best multimodal support | | Refactoring | Codex | Optimized for code transforms | | Simple Q&A | Claude Haiku | Fast and cheap |

How It Works

0mni is a TUI wrapper that spawns your installed coding agents as subprocesses:

0mni TUI (React + Ink)
    │
    ├── claude -p "prompt" --output-format stream-json
    ├── gemini -p "prompt" --output-format stream-json
    └── codex exec "prompt" --json

Each CLI handles its own:

  • Tool execution (file editing, shell commands, search)
  • Authentication (OAuth, API keys)
  • Sandboxing and permissions

omni parses the streaming JSON output and displays it in a unified terminal UI.

Skills

0mni supports skills.sh for extensibility:

# Install skills
omni skills add vercel-labs/agent-skills
omni skills add anthropic/skills

# List installed skills
omni skills list

Configuration

Create .omni/config.toml in your project or ~/.config/omni/config.toml globally:

defaultProvider = "claude"
autoRoute = false
yolo = false

[models]
claude = "claude-sonnet-4-6"
gemini = "gemini-2.5-flash"
codex = "gpt-5.4"

License

MIT