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

zin-adk

v0.1.5

Published

ZAK — Zeron Agentic Kit, open-source ADK for building autonomous cybersecurity agents. Build, deploy, and govern autonomous cybersecurity agents.

Readme

zin-adk

npm version License Node.js

ZAK (Zeron Agentic Kit) — Node.js/TypeScript SDK for building autonomous cybersecurity agents.

Define security agents declaratively with YAML, enforce policy guardrails at runtime, and connect to LLM providers for autonomous reasoning.

Install

npm install zin-adk

With LLM provider support:

npm install zin-adk openai          # OpenAI / Azure OpenAI
npm install zin-adk @anthropic-ai/sdk  # Anthropic Claude

With SIF graph backend:

npm install zin-adk neo4j-driver

Quick Start

1. Create an Agent Definition

npx zak init --domain appsec --name my-scanner

This generates my-scanner.agent.yaml:

version: "1.0"
agent:
  name: my-scanner
  domain: appsec
  description: Application security scanning agent

capabilities:
  allowed_actions: [scan_code, read_file, write_report]

policy:
  max_actions_per_minute: 30
  require_approval_above: high

reasoning:
  mode: rule_based

2. Validate

npx zak validate my-scanner.agent.yaml

3. Use in Code

import {
  loadAgentYaml,
  PolicyEngine,
  AuditLogger,
  zakTool,
  AgentExecutor,
} from "zin-adk";

// Parse and validate an agent definition
const agent = await loadAgentYaml("my-scanner.agent.yaml");

// Policy engine enforces guardrails at runtime
const policy = new PolicyEngine();
const result = policy.evaluate(agent, "scan_code", { target: "repo" });
// result.allowed === true

// Register tools with automatic policy + audit integration
const scanCode = zakTool({
  name: "scan_code",
  description: "Scan source code for vulnerabilities",
  parameters: { target: { type: "string" } },
  execute: async (params) => {
    // your scanning logic
    return { vulnerabilities: [] };
  },
});

Features

| Feature | Description | |---------|-------------| | US-ADSL Schema | Declarative YAML agent definitions with Zod validation | | Policy Engine | 6-rule chain: deny-list, allow-list, autonomy, risk budget, environment, red-team | | Audit Logger | Structured JSON audit trail via pino | | Tool Substrate | zakTool() higher-order function with policy + audit integration | | Agent Executor | Full lifecycle management with pre/post hooks | | LLM ReAct Loop | Reason + Act pattern with streaming support | | SIF Graph | Security Intelligence Fabric with 7 node types, 7 edge types | | Risk Engine | Quantitative risk propagation with configurable formula | | Multi-tenant | Namespace isolation per tenant | | CLI | zak init, validate, run, agents, info |

CLI

npx zak init --domain <domain> --name <name>   # Scaffold agent YAML
npx zak validate <file.yaml>                    # Validate agent definition
npx zak run <file.yaml>                         # Execute agent
npx zak agents                                  # List registered agents
npx zak info                                    # Platform information

Available domains: generic, risk_quant, vuln_triage, appsec, compliance

Requirements

  • Node.js >= 20.0.0
  • TypeScript >= 5.5 (for development)

Links

License

Apache-2.0 — see LICENSE