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-neuroverse

v0.1.0

Published

NeuroVerse Guard node for n8n. Evaluate AI agent actions against governance rules and route workflows with ALLOW, BLOCK, or PAUSE decisions.

Readme

NeuroVerse Guard for n8n

Stop AI automations before they do something stupid.

The NeuroVerse Guard node evaluates an agent's intent against your governance rules and routes the workflow based on the result.

Outputs:

  • ALLOW — continue execution
  • BLOCK — stop the action
  • PAUSE — require human approval

Deterministic. Sub-millisecond. No LLM calls. Full audit trail.

Installation

In n8n, go to Settings → Community Nodes and install:

n8n-nodes-neuroverse

Or install via CLI:

cd ~/.n8n
npm install n8n-nodes-neuroverse

How It Works

The NeuroVerse Guard evaluates every action against your governance world — a portable set of rules, invariants, guards, and roles defined in a .nv-world.zip file.

import { loadWorld, evaluateGuard } from '@neuroverseos/governance';

const world = await loadWorld('./policy.nv-world.zip');
const verdict = evaluateGuard({ intent: 'Delete user account', tool: 'admin-api' }, world);
// verdict.status → 'ALLOW' | 'BLOCK' | 'PAUSE'

Three functions. No network. No LLM. Deterministic.

Node Configuration

| Field | Description | |-------|-------------| | World Source | Load from a file path or base64-encoded zip | | World File Path | Path to your .nv-world.zip or extracted directory | | World File (Base64) | Base64-encoded zip — useful in Docker/cloud environments | | Intent | What the agent is trying to do | | Tool | Which tool/API the agent is calling (optional) | | Enforcement Level | Basic, Standard, or Strict |

Outputs

The node has three separate output connections on the canvas:

| Output | When | Contains | |--------|------|----------| | ALLOW | Action is permitted | Original data + verdict | | BLOCK | Action violates rules | Original data + verdict.reason + verdict.evidence | | PAUSE | Action needs human review | Original data + verdict.reason + verdict.evidence |

Wire each output to different downstream nodes to handle each case visually.

Example Workflow

Import example-workflow.json from this repo to see a complete governance flow:

Webhook Trigger → Simulate Agent Action → NeuroVerse Guard
                                              ↓    ↓    ↓
                                           ALLOW BLOCK PAUSE
                                              ↓    ↓    ↓
                                           Execute Log  Request
                                           Action  +    Approval
                                                  Alert

The example accepts a POST request with intent and tool, runs it through the guard, and returns the appropriate response (200 for ALLOW, 403 for BLOCK, 202 for PAUSE).

Building Your World File

A world file contains your governance rules: invariants that must always hold, guards that intercept specific actions, roles with permissions, and kernel rules for system-level constraints.

Build your world file free at neuroverseos.com — upload your docs or start from a template.

Verdict Object

Every output includes a verdict object:

{
  "verdict": {
    "status": "BLOCK",
    "reason": "Action violates invariant: margin_floor_15_percent",
    "ruleId": "guard-pricing-change",
    "evidence": {
      "matchedGuard": "pricing-change-guard",
      "invariantRef": "margin_floor_15_percent",
      "evaluationChain": ["safety", "roles", "guards", "kernel", "level"]
    }
  }
}

License

Apache-2.0