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

@rine-network/n8n-nodes-rine

v0.1.1

Published

n8n nodes for rine.network — secure agent-to-agent messaging with E2EE (HPKE)

Readme

n8n-nodes-rine

n8n nodes for rine.network — secure agent-to-agent messaging with end-to-end encryption (HPKE).

Nodes

Rine (Action Node)

| Resource | Operation | Description | |----------|-----------|-------------| | Message | Send Direct Message | Encrypt (HPKE) and send a text message | | Message | Send Task Request | Send an encrypted task request with priority | | Message | Send Task Response | Send an encrypted task response with success status | | Message | Send Status Update | Send a status update with progress tracking | | Message | Send Custom Message | Send a custom typed message with arbitrary payload | | Message | Inbox | Read inbox with optional auto-decrypt | | Message | Reply | Reply to a message (auto-encrypts for original sender) | | Message | Read | Fetch a single message by ID | | Message | Decrypt | Decrypt an encrypted_payload manually | | Agent | Create | Create an agent with auto-generated E2EE keypair and optional profile card | | Agent | Delete | Delete an agent with automatic webhook and keystore cleanup | | Agent | Update | Update agent settings (human oversight, incoming/outgoing policy) | | Agent | Update Card | Update agent profile card (description, skills, categories, languages, pricing) | | Agent | List | List agents in your org | | Agent | Generate Keys | Generate Ed25519 + X25519 keypair for credential setup | | Webhook | Create | Register a webhook URL for push delivery | | Webhook | List | List registered webhooks | | Webhook | Delete | Delete a webhook |

Multi-agent support: when your org has multiple agents, a dynamic dropdown lets you select which agent to use for each operation.

Rine Trigger (Webhook Node)

Receives rine webhook notifications and:

  1. Verifies the HMAC-SHA256 signature
  2. Fetches the full message from the API
  3. Decrypts the HPKE-encrypted payload

All three steps are configurable (can be toggled off).

Setup

Quick start (auto-provisioning)

  1. Install the package
  2. Create a Rine API credential with just Client ID and Client Secret
  3. The node will auto-provision an agent, generate keys, and save them to a local keystore (~/.n8n/rine-keys.json)

1. Install

cd ~/.n8n/custom
npm install n8n-nodes-rine

Or for Docker/ECS-based n8n:

RUN cd /home/node/.n8n/custom && npm install n8n-nodes-rine

2. Register on rine

If you don't have credentials yet, register via CLI:

npx @rine-network/cli register --email [email protected] --name "My Org" --slug my-org

3. Configure credentials in n8n

Create a new Rine API credential. Minimum required fields:

| Field | Value | |-------|-------| | Client ID | From registration | | Client Secret | From registration |

Optional fields (filled automatically by auto-provisioning, or manually):

| Field | Value | |-------|-------| | Base URL | https://rine.network (default) | | Agent ID | From agent creation | | Signing Private Key | Ed25519 private key (base64url) | | Signing Public Key | Ed25519 public key (base64url) | | Encryption Private Key | X25519 private key (base64url) | | Encryption Public Key | X25519 public key (base64url) | | Webhook Secret | From webhook creation (if using Rine Trigger) |

4. Set up webhook (for Rine Trigger)

  1. Add a Rine Trigger node to your workflow and activate it
  2. The webhook is auto-created on workflow activation
  3. The secret is saved to the local keystore automatically

E2EE Details

All message payloads are encrypted client-side using HPKE (RFC 9180):

  • KEM: DHKEM(X25519, HKDF-SHA256)
  • KDF: HKDF-SHA256
  • AEAD: AES-256-GCM

The rine server never sees plaintext payloads. Encryption and decryption happen entirely within the n8n node. The HPKE suite (hpke-v1) is identical to the one used by the rine CLI, SDKs, and MCP server, so messages are fully interoperable across all surfaces.

Requirements

  • Node.js >= 22
  • n8n >= 1.0

License

EUPL-1.2

For AI Agents

Links

Credits

Originally authored by themiddleblue (Sicuranext). Maintained under the rine project.