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

neurabox

v0.6.0

Published

An airlock for AI-generated code — sandboxes agents, enforces policies, and audits changes.

Readme

NeuraBox

An airlock for AI-generated code.

AI coding agents write code fast. Reviewing it safely is slow. Scanners flag problems. Bots leave comments. Nothing actually stops non-compliant code from landing.

NeuraBox sits before the code touches your project — sandboxes the agent, enforces your policy, and only exports code that passes.

Not a scanner. Not a reviewer. A gate.


Demo

Watch the 2-minute demo


Quickstart

1. Install

npm install -g neurabox

2. Initialize a policy

neurabox --init

3. Run your agent

neurabox claude          # Claude Code
neurabox gemini          # Gemini CLI
neurabox aider           # Aider
neurabox python agent.py # Any agent/script

NeuraBox creates an isolated shadow workspace, injects a pre‑digested project context (architecture + dependencies), runs your agent, enforces policy checks, and asks for approval before exporting any changes.


Why NeuraBox?

| Approach | Problem | |----------|---------| | Git worktrees | No policy, no audit, no gate | | Hooks/scripts | Agent governs itself | | PR bots | Advisory only, after code lands | | Scanners | Find issues in code that already exists |

NeuraBox blocks before code exists in your codebase.


How it works

  1. Native OS sandbox — no Docker required (Windows Job Objects, Linux setpgid, macOS process groups)
  2. Token optimization — intercepts git/npm/npx to save 60–90% tokens
  3. Project graph — AST‑based context (architecture, dependencies, cross‑file connections)
  4. System directives — Enforces terse AI responses to generate less bloated code.
  5. Policy enforcement — your rules, your approval

Default policy (nb-policy.yaml)

blocks:
  - ".env"
  - "node_modules"

checks:
  - cname: "structure"
    command: "[ -d 'src/controllers' ]"
  - cname: "no-internet"
    command: "curl -m 2 google.com || echo 'Safe'"
  • blocks – files never exported
  • checks – shell commands that must pass

Audit log

Every session is logged to audit.log:

Privacy

  • No code, prompts, or files sent to any server except your AI provider.
  • One anonymous ping per session to count unique users

What's next?

  • Encrypted audit logs
  • Team policy sharing
  • Hardware isolation

Feedback

Reach out: [email protected] or open an issue.


OSS

  • RTK (https://github.com/rtk-ai/rtk)
  • GRAPHIFY (Modified) (https://github.com/safishamsi/graphify)
  • CAVEMAN (https://github.com/juliusbrussee/caveman)
  • Ponytail (https://github.com/DietrichGebert/ponytail)

Package: neurabox on npm

OSS:

License: Apache 2.0


---