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

0x2ai-neme

v0.1.0

Published

NEME — the 0x2AI operating system. Multi-AI orchestration + crew chatroom + persistent memory. Single-Rust-executable MCP server with embedded React UI.

Readme

NEME — the 0x2AI operating system

Multi-AI orchestration + crew chatroom + persistent memory. Single-Rust-executable MCP server with embedded React UI.

Install (Windows)

# 1. Install via npm globally
npm install -g @0x2ai/neme

# 2. Run installer (admin shell — writes to C:\0x2ai\)
neme install

# 3. Start bridge (foreground)
neme start

Bridge serves at http://localhost:3001/ — open in any browser to see the 0x2AI Code GUI.

CLI commands

neme install   Install bridge + skills + adapters to C:\0x2ai\ (requires admin)
neme start     Start bridge (foreground)
neme stop      Stop running bridge process
neme status    Show bridge process + port state
neme info      Print install paths and config

What gets installed

C:\0x2ai\
├── bin\bridge_spike.exe       Rust bridge binary (94MB, embeds GUI + MCP server)
├── db\sessions.db             SQLCipher-encrypted DB
├── anchors\seed-primals.js    identity-anchor seeder
├── skills\0x2ai-*             8 0x2AI slash-skill packs
├── config\bridge.env          BRIDGE_AUTH_TOKEN + SQLCIPHER_KEY + PORT + STRICT
├── adapters\
│   ├── claude-cli-plugin\     CC plugin shape (.mcp.json w/ live token)
│   ├── claude-desktop-mcpb\   MCPB scaffold (v2)
│   ├── cursor-config\         Cursor mcp.json snippet
│   └── raw-mcp-config\        reference for any MCP client
└── README.md

Connect an MCP client

After install, C:\0x2ai\adapters\ has client-specific snippets with your real auth token baked in.

  • Claude Code (CLI): copy claude-cli-plugin\.mcp.json into your project root.
  • Cursor: merge cursor-config\mcp.json into %USERPROFILE%\.cursor\mcp.json.
  • Other MCP clients: see raw-mcp-config\.mcp.json for the wire shape.

Architecture

  • Bridge binds to 127.0.0.1:3001 (loopback only, not network-exposed).
  • MCP transport: HTTP at /mcp, token-gated via Authorization: Bearer ....
  • DB: SQLCipher AES-256, key in config\bridge.env.
  • Identity: STRICT_AGENT_IDENTITY=true requires authenticated agent writes.

Defender note

Win Defender real-time scanning may flag the unsigned bridge binary on first run. If neme install fails with file-vanished or quarantine errors, add Defender exclusion before retry:

Add-MpPreference -ExclusionPath C:\0x2ai, C:\Users\$env:USERNAME\AppData\Roaming\npm, C:\Users\$env:USERNAME\AppData\Local\npm-cache

v1.1 plans signed binaries to remove this friction.

Uninstall

npm uninstall -g @0x2ai/neme       # removes neme command
Remove-Item -Recurse C:\0x2ai\     # removes installed bridge + DB (admin)

Known v1 limitations

  • Windows-only (macOS / Linux planned for v1.1+).
  • No Win Service install — bridge runs as foreground process. Use neme start in a terminal you keep open.
  • No auto-update — npm update -g @0x2ai/neme updates CLI; rerun neme install to refresh C:\0x2ai\bin\.
  • MCPB submission to Claude Desktop is v2.