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

@vorionsys/n8n-nodes-cognigate

v0.1.0

Published

n8n community node for Cognigate — AI agent trust scoring, capability enforcement, and audit proof via the BASIS standard

Downloads

103

Readme

@vorionsys/n8n-nodes-cognigate

n8n community node for Cognigate — AI agent trust scoring, capability enforcement, and cryptographic audit proof via the BASIS standard.

Cognigate

Installation

In n8n Desktop / Self-Hosted

  1. Go to Settings → Community Nodes
  2. Enter @vorionsys/n8n-nodes-cognigate
  3. Click Install

Via npm

cd ~/.n8n
npm install @vorionsys/n8n-nodes-cognigate

Credentials

| Field | Description | |-------|-------------| | Base URL | Your Cognigate instance URL (default: https://cognigate.dev) | | API Key | Pipeline API key — used for intent, enforce, proof, trust endpoints | | Admin Key | (optional) Admin API key — required only for admin & compliance trigger operations |

Generate an API key at your Cognigate dashboard or via POST /v1/auth/keys.

Resources & Operations

Intent — Goal Processing

| Operation | Description | |-----------|-------------| | Create | Normalize an agent goal into a structured plan with risk scoring | | Get | Retrieve a previously processed intent by ID |

Enforce — Policy Validation

| Operation | Description | |-----------|-------------| | Validate | Validate a plan against BASIS policies (lite / standard / strict rigor) | | List Policies | List all available enforcement policies | | Get Policy | Get details for a specific policy |

Proof — Cryptographic Audit Ledger

| Operation | Description | |-----------|-------------| | Create | Create an immutable proof record from an enforcement verdict | | Get | Retrieve a proof record by ID | | Query | Query proof records with filters (entity, decision, date range) | | Stats | Get proof ledger statistics and chain integrity | | Verify | Verify proof integrity and hash-chain linkage |

Agent — Agent CRUD

| Operation | Description | |-----------|-------------| | Register | Register a new AI agent with capabilities and observation tier | | List | List all registered agents (filter by tier) | | Get | Get agent details | | Update | Update agent name or capabilities | | Revoke | Revoke an agent |

Trust — Trust Lifecycle

| Operation | Description | |-----------|-------------| | Admit | Admit an agent into the trust system | | Get Status | Get current trust score, tier, and capabilities | | Record Signal | Record success / failure / violation / neutral signals | | Revoke | Revoke agent trust with reason | | History | Get trust signal history | | List Tiers | Get all 8 tier definitions (T0–T7) |

Health — Instance Monitoring

| Operation | Description | |-----------|-------------| | Full Check | Full health check with subsystem status | | Liveness | Lightweight k8s liveness probe | | Readiness | Readiness check |

Reference — Read-Only Lookups

| Operation | Description | |-----------|-------------| | List Tiers | All 8 trust tiers (T0–T7) with score ranges | | Lookup Tier | Lookup tier by numeric trust score (0–1000) | | Capabilities | All 24 capability codes with tier requirements | | Errors | All error codes with retry guidance | | Rate Limits | Rate limits per trust tier | | Versions | API version registry |

Compliance — Continuous Monitoring (CA-7)

| Operation | Description | |-----------|-------------| | Health | All control health across all frameworks | | Framework Health | Framework-specific control health | | Snapshot | Point-in-time compliance snapshot | | Dashboard | Aggregated compliance dashboard | | Evidence | Evidence for a specific control ID | | Trigger Monitor | Trigger full compliance check (admin key required) |

Supported frameworks: NIST 800-53, EU AI Act, ISO 42001, SOC 2, NIST AI RMF, CMMC 2.0

Example: Full Governance Pipeline

Chain three Cognigate nodes to implement INTENT → ENFORCE → PROOF:

  1. Intent: Create — Parse the agent's goal into a structured plan with risk analysis
  2. Enforce: Validate — Pass the plan through BASIS policy evaluation
  3. Proof: Create — Record the enforcement verdict as an immutable audit proof

This gives you a complete governance pipeline with cryptographic evidence for every agent action.

Development

cd packages/n8n-nodes-cognigate
npm install
npm run build

Testing locally with n8n

# Link the package
cd packages/n8n-nodes-cognigate
npm link

# In your n8n installation
cd ~/.n8n
npm link @vorionsys/n8n-nodes-cognigate

License

Apache-2.0 — see LICENSE for details.

Links