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

@nextclaw/nextclaw-hermes-acp-bridge

v0.1.11

Published

Hermes-specific ACP bridge helpers used by NextClaw runtime integrations.

Readme

NextClaw Hermes ACP Bridge

This package contains Hermes-specific ACP bridge helpers.

It is intentionally separate from the generic @nextclaw/nextclaw-ncp-runtime-stdio-client package so the stdio runtime stays protocol-generic while Hermes keeps its own integration layer.

Boundary

  • This package exists to adapt Hermes into NextClaw. It is the primary place for NextClaw-side bridge logic, launch-time injection, and compatibility handling around Hermes ACP integration.
  • Do not directly modify Hermes upstream source code when fixing NextClaw integration issues. In this repo, Hermes should be treated as an upstream dependency boundary.
  • If Hermes behavior needs to be adjusted for NextClaw, prefer one of these layers instead:
    • bridge logic inside packages/nextclaw-hermes-acp-bridge
    • NextClaw runtime adapter logic
    • startup environment injection / wrapper behavior
    • repo-local documentation and guardrails

Execution Model

  • Hermes ACP execution in NextClaw is request-scoped, not session-agent-scoped.
  • The long-lived ACP session keeps conversation history, cwd, selected model snapshot, lightweight session metadata, and the current execution agent.
  • Each prompt treats nextclaw_narp.providerRoute as execution truth. When the prompt route changes, NextClaw rebuilds the Hermes execution agent for that request and replaces the session's current execution agent with the new one.
  • providerRoute is the execution truth for Hermes ACP requests. NextClaw does not rely on ACP setSessionModel(modelId) to perform real cross-provider switching for Hermes.
  • Request-scoped execution agents must rebuild Hermes's cached system prompt from the current route. They must not inherit a previous model/provider prompt cache across cross-provider switches.