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

0g-aura

v0.1.0

Published

Decentralized AI coding agent on 0G Compute

Readme

0g-aura

Decentralized AI coding agent powered by 0G Compute. Describe what you want to build, edit, or fix — aura streams responses from verifiable GPU providers and applies file changes directly to your project.

Install

npm install -g 0g-aura

Or with npx (no install):

npx 0g-aura

Or clone and link locally:

git clone <repo-url>
cd 0g-aura
npm install
npm run build
npm link

Setup

aura init

This walks you through wallet setup interactively:

  1. Create a new wallet or import an existing private key
  2. Choose where to save (./.env or ~/.aura/.env for global)
  3. Checks your A0GI balance automatically

You need A0GI tokens to pay for decentralized compute. Get them at portal.0g.ai.

Usage

# Start in current directory with default model
aura

# Choose a model
aura -m deepseek-chat-v3-0324

# Target a specific project directory
aura -d ./my-project

# Skip apply confirmations
aura --no-confirm

Inside the TUI, type a prompt and press Enter. Aura will:

  1. Read your project files for context
  2. Stream a response from a 0G compute provider in real-time
  3. Show a diff of proposed changes
  4. Ask for confirmation before writing files

CLI Flags

| Flag | Description | |------|-------------| | -m, --model <name> | Model to use (default: GLM-5-FP8) | | -d, --dir <path> | Project directory (default: cwd) | | --no-confirm | Apply changes without confirmation | | -V, --version | Show version | | -h, --help | Show help |

Slash Commands

| Command | Description | |---------|-------------| | /help | Show all commands | | /model <name> | Switch AI model | | /add <path> | Add a file to prompt context | | /remove <path\|all> | Remove file(s) from context | | /files | Show detected project tree | | /status | Check 0G Compute connectivity | | /balance | Check wallet A0GI balance | | /undo | Revert the last applied file changes | | /export [file] | Save conversation to markdown | | /cost | Show session token usage | | /clear | Clear conversation history | | /quit | Exit |

Keyboard Shortcuts

| Key | Action | |-----|--------| | Enter | Send prompt / confirm apply | | Esc | Clear input / reject apply | | Up/Down | Recall previous prompts | | Shift+Up/Down | Scroll conversation | | PageUp/PageDown | Scroll fast | | Home/End | Jump to oldest/latest | | Ctrl+C | Exit |

Models

| Model | Description | |-------|-------------| | GLM-5-FP8 | Default, fast general-purpose | | deepseek-chat-v3-0324 | DeepSeek v3 | | gpt-oss-120b | 120B open-source | | qwen3-vl-30b-a3b-instruct | Qwen3 multimodal |

Configuration

| Environment Variable | Default | Description | |---------------------|---------|-------------| | ZG_PRIVATE_KEY | (required) | 0G wallet private key | | ZG_RPC_URL | https://evmrpc.0g.ai | 0G RPC endpoint | | ZG_AUTO_DISCOVER_PROVIDER | true | Auto-discover compute providers | | ZG_PROVIDER_ADDRESS | — | Pin a specific provider (skips discovery) |

Config is loaded from ./.env first, then ~/.aura/.env as fallback. Run aura init to create one.

How It Works

Aura connects to the 0G decentralized compute network through the @0glabs/0g-serving-broker SDK. When you send a prompt:

  1. Context assembly — scans your project tree and reads key files (with automatic token budget management)
  2. Provider discovery — finds an available GPU provider serving your chosen model (or uses a pinned address)
  3. Streaming inference — sends your conversation + project context to the provider and streams the response in real-time
  4. Parsing — extracts file changes and shell commands from the model output
  5. Apply — shows a diff preview, then writes files and runs commands on confirmation (with /undo support)

All inference runs on decentralized, verifiable GPU providers — no centralized API keys needed, just an 0G wallet with A0GI tokens.

License

MIT