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

@felipefontoura/paperclip-adapter-hermes-gateway

v0.1.3

Published

Paperclip external adapter for the Hermes Agent — talks to Hermes over the OpenAI-compatible HTTP API server, with no CLI inside the Paperclip container.

Downloads

774

Readme

@felipefontoura/paperclip-adapter-hermes-gateway

Connects your Paperclip agents to a Hermes Agent over HTTP. No Hermes CLI inside Paperclip, no bind mounts, no upstream patches.

Works together with @felipefontoura/paperclip-skills-bridge, which exposes your Paperclip skills to Hermes.

How it works

Paperclip agent ── HTTPS ──▶ Hermes Agent  (chat completions)
       │
       └────── HTTPS ──▶ paperclip-skills-bridge ──▶ Paperclip API  (skills)

Three independent HTTPS calls, three independent bearers. The bridge is optional — without it the agent just talks to Hermes with whatever instructions you wrote in AGENTS.md.

Install

  1. Open Company Settings → Instance Settings → Adapters in Paperclip.
  2. Click Install Adapternpm package.
  3. Fill in:
    • Package Name: @felipefontoura/paperclip-adapter-hermes-gateway
    • Version: latest (or pin to 0.1.0)
  4. Click Install, then restart Paperclip when prompted.

After the restart, Hermes (gateway) appears in the Adapter type dropdown when you create or edit an agent.

Configure an agent

In the agent's Configuration tab:

  1. Adapter type: select Hermes (gateway).

  2. Model: the model name your Hermes server exposes (e.g. hermes-agent, glm-5.1). Leave blank to use the Hermes default.

  3. Timeout (sec): how long the adapter waits for Hermes (default 120, clamped to 1–1800).

  4. Environment variables: add these four entries (use Seal for secrets):

    | Key | Value | Required | |---|---|---| | HERMES_URL | OpenAI-compatible base URL of your Hermes server, e.g. https://hermes.example.com/v1 | yes | | HERMES_API_KEY | Matches API_SERVER_KEY on the Hermes container | yes | | SKILLS_BRIDGE_URL | Base URL of the skills bridge, e.g. https://skills.example.com | only if you want skills | | SKILLS_BRIDGE_TOKEN | The bridge's BRIDGE_AUTH_TOKEN (or per-tenant token) | only if you set SKILLS_BRIDGE_URL |

That's it. Click Run Heartbeat in the agent header and Hermes answers.

The bridge URL doesn't need to include your company UUID — the adapter discovers it automatically and appends /companies/<id> for you.

Where the company UUID lives (you usually don't need it)

If you ever do need the UUID (e.g. you're administering the bridge), ask the bridge:

curl https://skills.example.com/whoami -H "Authorization: Bearer $SKILLS_BRIDGE_TOKEN"
# → {"companyId":"af724ed6-612e-466b-b733-dd00e0371236"}

Roadmap

  • v0.1.0 — Single + multi-tenant bridge, SSRF guard, references support, ETag passthrough, auto-discovery of the company UUID.
  • v0.2.0 — In-memory cache for the skills index, richer UI fields once Paperclip supports them upstream.
  • v0.3.0 — Streaming responses, session resume.

License

MIT — see LICENSE.