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

nexting-hermes-bridge

v0.1.0

Published

Connect Nexting hardware to any OpenAI-compatible local AI (Hermes Agent, Ollama, vLLM, LM Studio, etc.)

Readme

nexting-hermes-bridge

Connect Nexting hardware to any OpenAI-compatible local AI (Hermes Agent, Ollama, vLLM, LM Studio, etc.)

Prerequisites

  • Node.js v18+
  • A local AI with OpenAI-compatible API running (e.g. Hermes Agent)
  • Nexting iOS app installed and logged in

Quick Start

1. Install

npm install -g nexting-hermes-bridge

Or run directly without installing:

npx nexting-hermes-bridge

2. Start your local AI

Hermes Agent:

Make sure your ~/.hermes/config.yaml has the API server enabled:

platforms:
  api_server:
    enabled: true
    host: "127.0.0.1"
    port: 8642

Then start the gateway:

hermes gateway run

Verify it's running:

curl http://localhost:8642/v1/models

Ollama (alternative):

ollama serve
# Default endpoint: http://localhost:11434

3. Pair with your iPhone

nexting-hermes-bridge login

This will:

  • Create a relay instance on the Nexting cloud
  • Display a 6-digit pairing code and QR code
  • Wait for you to enter the code in the Nexting iOS app

Open the Nexting iOS app → Settings → select "MyHermes" mode → enter the pairing code.

4. Start the bridge

nexting-hermes-bridge start

The bridge will:

  • Connect to the Nexting cloud relay
  • Forward messages from your iPhone to your local AI
  • Stream responses back to your iPhone
  • Handle device tool calls (calendar, reminders, etc.)

Done. Speak into your Nexting device and your local AI will respond.

Options

# Use a different AI endpoint (default: http://localhost:8642)
nexting-hermes-bridge start --endpoint http://localhost:11434

# Specify model name
nexting-hermes-bridge start --model llama3

# Specify API key (if your endpoint requires one)
nexting-hermes-bridge start --api-key sk-xxx

# Check current config
nexting-hermes-bridge status

# Clear config and start over
nexting-hermes-bridge logout

How it works

Nexting Device → BLE → iPhone (STT) → Cloud Relay → nexting-hermes-bridge → Local AI API
                                                   ↑
                                            Your computer

The bridge runs on your computer. It connects to the Nexting cloud as a relay endpoint (same infrastructure as MyOpenClaw). The cloud only tunnels encrypted messages — your AI conversations stay between your iPhone and your local machine.

Developing

cd bridge
npm install

# Run in dev mode
npx tsx src/index.ts login
npx tsx src/index.ts start

# Type check
npx tsc --noEmit

# Build
npm run build

Config

Config is stored at ~/.nexting/config.json:

{
  "relayToken": "...",
  "relayUrl": "wss://api.nexting.ai",
  "endpoint": "http://localhost:8642",
  "model": "hermes-agent",
  "subdomain": "h-xxxxxxxx"
}

Device state (skills, context) is persisted at ~/.nexting/device-state.json.