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

@nimrobo/superconnector-cli

v0.2.1

Published

Command-line tools for Superconnector.

Readme

Superconnector CLI

npm version npm downloads license node

@nimrobo/superconnector-cli — command-line companion for Superconnector. The CLI currently provides a local config UI for the @nimrobo/superconnector SDK.

Install

npm install -g @nimrobo/superconnector-cli

Or run without a global install:

npx @nimrobo/superconnector-cli config

Requirements:

  • Node.js >=20
  • The SDK package is installed as a dependency of this CLI package
  • Agent CLIs such as claude, opencode, or codex should be installed and authenticated before selecting them

Usage

superconnector config

The command starts a local web UI bound to 127.0.0.1, prints the URL, and opens the browser on macOS by default.

Options:

superconnector config --port 3917
superconnector config --no-open
  • --port <n> binds the config server to a specific port. Without it, the CLI uses an ephemeral port.
  • --no-open prints the URL without opening a browser.

Press Ctrl+C to stop the config server.

What the UI Configures

The config UI can write global and local Superconnector config:

  • preferred adapter: claude-code, opencode, or codex
  • default permission mode: read or acceptEdits
  • per-adapter model ids

Global config applies to every workspace. Local config applies only to the current workspace and overrides global config.

Config locations:

  • Global: ~/.superconnector/config.json
  • Local: <cwd>/.superconnector/config.json
  • Registry and session logs: ~/.superconnector
  • Override global root with SUPERCONNECTOR_HOME

Example config:

{
  "preferredAdapter": "claude-code",
  "permissionMode": "read",
  "models": {
    "claude-code": "sonnet",
    "codex": "gpt-5.3-codex"
  }
}

Relationship to the SDK

Use @nimrobo/superconnector in application code:

import { createSuperconnector } from '@nimrobo/superconnector';

Use @nimrobo/superconnector-cli for user or developer configuration:

superconnector config

The CLI is not required at runtime when your app passes explicit SDK options, but it is useful when users should choose adapters, permission defaults, or model ids outside the application.

Security Notes

The config server binds to localhost and uses a random URL token for API calls. Treat the CLI as a local developer/user tool and run it from the workspace whose local config you want to edit.

License

MIT