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

neuphlo-runner

v0.4.3

Published

Local agent runner for Neuphlo — bridges Claude Code, Codex, Gemini, and Cursor CLI with Neuphlo cloud

Readme

neuphlo-runner

Local agent runner for Neuphlo. Bridges the Neuphlo backend with locally-installed AI CLIs (Claude Code, Codex, Gemini, Cursor) so workspace AI can use your existing subscription credentials — no API keys required.

Install

npm install -g neuphlo-runner
# or
pnpm install -g neuphlo-runner

You also need at least one of the upstream CLIs installed and signed in on the same machine:

  • Claude Codeclaude on PATH, signed in via claude login
  • Codexcodex on PATH, signed in via codex login
  • Gemini CLIgemini on PATH, signed in via gemini auth
  • Cursorcursor on PATH, signed in

Run

neuphlo-runner --adapter claude-code --port 3100 --cwd ~/projects/some-repo

Flags:

| Flag | Default | Notes | |---|---|---| | --adapter / -a | claude-code | One of claude-code, codex, gemini, cursor | | --port / -p | 3100 | HTTP port the runner listens on | | --cwd / -d | process.cwd() | Working directory the CLI runs against | | --token | (none) | Shared secret. If set, all /execute and /infer requests must send Authorization: Bearer <token> |

Expose to Neuphlo

The runner listens on localhost. Expose it via your preferred tunnel:

cloudflared tunnel --url http://localhost:3100
# or
ngrok http 3100

Add the tunnel URL to Neuphlo → Preferences → AI → Providers → Claude Code / Codex / Gemini / Cursor.

Endpoints

| Endpoint | Used for | |---|---| | GET /health | Liveness + CLI version probe | | GET /models | Lists models the adapter supports | | POST /infer | One turn. Cowork uses this — tools execute on the Neuphlo backend against the session's Principal, never on this machine | | POST /execute | Legacy agent-mode (the CLI runs its own loop). Used by code-mode jobs |

Security

The runner spawns the upstream CLI inside an ephemeral HOME directory containing only Neuphlo's host-callback MCP plus symlinks to the user's subscription credentials. Every tool call is POSTed back to the Neuphlo backend with a short-lived (15 min) JWT and executed against the chat's workspace Principal — so workspace-mismatch silent mutations are structurally impossible regardless of which CLI is in use.

License

MIT