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

n8n-nodes-agilepulse

v0.2.2

Published

n8n community node for AgilePulse — send and receive WhatsApp messages through a multi-tenant Baileys gateway with built-in anti-ban (rate limits, warm-up, replyOnly, auto-pause).

Readme

n8n-nodes-agilepulse

Custom n8n community node for AgilePulse — multi-tenant WhatsApp gateway with built-in anti-ban (rate limits, warm-up curves, replyOnly, auto-pause), HMAC-signed webhooks, and S3/local media storage.

What it gives you in n8n

Two nodes:

  • AgilePulse WhatsApp (action) — send messages, manage groups, configure webhooks, query session info.
  • AgilePulse Trigger — receive WhatsApp events (incoming messages, connection updates, QR refreshes, etc.) and start workflows automatically. The trigger registers its webhook URL against AgilePulse on activation and clears it on deactivation.

Action node — 4 resources and 22 operations:

  • Message: sendText (with quote), sendMedia (img/video/doc/audio), sendAudio (PTT voice), sendReaction, sendLocation, sendContact, markAsRead, edit, delete, presence
  • Group: list joined, get info, create, add/remove participants, get invite link, leave
  • Webhook: set / find / getSecret / rotateSecret
  • Session: connectionInfo, status, contacts, reconnect

Plus reusable AgilePulse API credentials (base URL + apikey, with /api/health connection test).

Install

From n8n UI (once published to npm)

  1. Settings → Community Nodes → Install
  2. Type n8n-nodes-agilepulse
  3. Click Install. Restart n8n.

Locally for development

cd n8n-nodes-agilepulse
npm install
npm run build
# In your n8n install, link or copy the dist/ output into custom nodes folder.
# See https://docs.n8n.io/integrations/creating-nodes/test/run-node-locally/

Configure credentials

In n8n: Credentials → Add → AgilePulse API:

  • Base URL: http://localhost:4000 (or your production URL, no trailing slash)
  • API Key: paste either your master key or a session-scoped key (find session keys in AgilePulse dashboard → session → Integration tab → "API Key")

n8n will auto-test by calling GET /api/health.

Use the node

  1. Add the AgilePulse WhatsApp node to your workflow
  2. Pick a Resource (Message / Group / Webhook / Session)
  3. Pick an Operation
  4. Set Session to either the slug (agile) or UUID — both resolve correctly
  5. Fill the operation-specific fields (To, Text, Media URL, etc.)

Receiving messages (incoming flow)

This node only handles outbound calls. To receive WhatsApp events in n8n:

  1. Use the built-in Webhook trigger node, copy its production URL
  2. Use this node with Webhook → Set operation to register that URL in AgilePulse
  3. Trigger on every inbound WhatsApp message

A ready-to-import workflow is in examples/n8n/agilepulse-echo-bot.json.

Publish to npm (when ready)

npm version 0.1.0
npm publish --access public

The package name n8n-nodes-agilepulse matches the n8n community node convention so it auto-shows in the registry.