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

@aari/n8n-nodes-aari

v0.1.1

Published

AARI Execution Firewall — n8n community node

Readme

AARI Execution Firewall — n8n Community Node

npm License: MIT Free API key

Risk-score and gate AI agent actions before they run. Automatically blocks high-risk actions, reports outcomes, and builds a full audit trail — without writing any custom code.


What it does

Every action your n8n workflow takes — sending an email, writing to a database, calling an API — gets scored for risk (0–100) before it executes. You decide what gets blocked.

[Trigger] → [AARI Gate] → [Your action] → [AARI Complete]
                 ↓
          [Handle blocked]
  • Score 0–49 → ALLOW — executes normally
  • Score 50–74 → WARN — executes with an audit flag
  • Score 75+ → BLOCK — routed to the Blocked output, action never runs

Install

In your n8n instance:

Settings → Community Nodes → Install

@aari/n8n-nodes-aari

Or via npm if self-hosted:

npm install @aari/n8n-nodes-aari

Quick start

1. Get a free API key

api.getaari.com/signup — free · no credit card

2. Add credentials in n8n

Credentials → New → AARI API

  • API Key: your key
  • Server: https://api.getaari.com (default)

3. Build your workflow

Add two AARI nodes around your action:

| Node | Operation | When | |------|-----------|------| | AARI | Gate | Before your action | | AARI | Complete | After your action |


Workflow example

Webhook → AARI Gate → Send Email → AARI Complete (SUCCESS)
               ↓
          Stop workflow  ← AARI Complete (SKIPPED) — auto-reported

The Gate node has two outputs:

  • Allowed / Warn — connect your action here
  • Blocked — handle blocked actions here (log, notify, stop)

The Complete node closes the audit trail. Connect it after your action succeeds. For failures, use n8n's error workflow to call Complete with FAILURE.


Gate node parameters

| Parameter | Description | Example | |-----------|-------------|---------| | Action Type | What kind of action | email.send, db.delete, http.post | | Resource | What is being acted on | [email protected], postgres:prod:orders | | Mode | enforced blocks, advisory scores only | enforced | | Environment | Affects risk score (+15 for prod) | prod | | Agent ID | Identifies this workflow in the dashboard | my-workflow | | Parameters | JSON with action details | {"amount_cents": 9900} | | Run ID | Groups related actions. Use {{ $execution.id }} | auto |


Action types

Use specific action types for accurate risk scoring:

| Action type | Use for | |-------------|---------| | email.send | Sending emails | | http.post | Outbound API calls | | http.get | Outbound reads | | db.execute | Database queries | | db.delete | Database deletes | | db.schema | Schema changes | | payment.charge | Payment charges | | payment.refund | Refunds | | filesystem.write | File writes | | filesystem.rm | File deletes | | code.execute | Running code/scripts | | workflow.side_effect | Generic (lower accuracy) |


Fail-closed behavior

If the AARI server is unreachable, the Gate node applies a local decision:

  • High-risk types (db.delete, payment.charge, code.execute, etc.) → BLOCK
  • Everything else → ALLOW

Your workflows stay protected even during outages.


Dashboard

See all actions, decisions, scores, and agents at api.getaari.com/dashboard.


License

MIT