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

@rebel0x/navo

v0.1.2

Published

Switch Codex between native and OpenCode models safely with a local connection and dashboard.

Readme

Navo

Use Codex with Codex native models or OpenCode Go models, with local proof of where requests went.

npm version CI License: MIT

Navo is a local bridge for Codex App and Codex CLI. It configures Codex to call a local Responses API adapter on 127.0.0.1, forwards requests to documented OpenCode Go endpoints, and records privacy-safe routing metadata. Your OpenCode API key stays on your machine.

Navo control dashboard

Start

Run without installing globally:

npx -y @rebel0x/navo@latest ui

Or install once:

npm install -g @rebel0x/navo
navo ui

The dashboard opens at:

http://127.0.0.1:17854

Requirements

  • macOS for Codex App controls and Keychain storage.
  • Node.js 20 or newer.
  • Codex App or Codex CLI.
  • An OpenCode Go API key for OpenCode mode.

What Navo Does

  • Switches Codex between native Codex mode and OpenCode mode.
  • Runs a local Responses API adapter at http://127.0.0.1:17853/v1.
  • Routes GLM, Kimi, DeepSeek, and MiMo models to OpenCode Go Chat Completions.
  • Routes MiniMax and Qwen models to OpenCode Go Messages.
  • Forces existing Navo-backed chats to the selected OpenCode model on the next request.
  • Writes backups before changing ~/.codex/config.toml.
  • Logs routing proof without prompts, headers, or API keys.

Common Commands

navo ui                         # start or focus the local dashboard
navo on                         # configure Codex for OpenCode mode
navo off                        # restore normal Codex config
navo model                      # pick an OpenCode model
navo codex-model gpt-5.5        # switch back to Codex native mode
navo status                     # show current config and bridge state
navo verify --fresh             # require recent OpenCode proof
navo logs --lines 30            # inspect privacy-safe routing logs
navo backups                    # list config backups

Verify OpenCode Traffic

Do not ask the assistant which model it is using. Check the local proof:

navo probe-routing
navo verify --fresh
navo logs --lines 20

Good proof includes upstream_host=opencode.ai and one of these upstream paths:

upstream_path=/chat/completions
upstream_path=/messages

Activity rows show fields like requested_model, model, route, status, and upstream_model. They do not include request text, request headers, API keys, or upstream prompt echoes.

Supported OpenCode Go Models

Chat Completions:

deepseek-v4-flash
deepseek-v4-pro
glm-5.1
glm-5
kimi-k2.7-code
kimi-k2.6
mimo-v2.5-pro
mimo-v2.5

Messages:

minimax-m3
minimax-m2.7
minimax-m2.5
qwen3.7-max
qwen3.7-plus
qwen3.6-plus

Navo does not show context-window values unless they are available from OpenCode documentation.

How It Works

Codex custom providers speak the Responses API wire format:

wire_api = "responses"

OpenCode Go exposes documented OpenAI-compatible and Anthropic-compatible endpoints. Navo sits between them:

Codex -> 127.0.0.1:17853/v1 -> OpenCode Go

Codex keeps its normal project files and chat history. Chats already backed by Navo can keep their context while Navo changes the upstream model. Native Codex chats do not hit Navo until Codex reloads the provider, so open a new Codex chat after switching from native mode to OpenCode mode.

Safety

  • The dashboard binds to 127.0.0.1 only.
  • API keys are stored in macOS Keychain, with a private 0600 file fallback.
  • Config backups are written before changes.
  • Dashboard state-changing requests require a local session token.
  • Logs intentionally exclude prompts, message content, headers, and keys.

Docs

Open Source

Navo is MIT licensed. Issues and pull requests are welcome.

If Navo saves you setup time, star the GitHub repo so more Codex and OpenCode users can find it.