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

@c4ccz/zero

v1.0.1

Published

ZERO - Unified AI Coding Assistant. Merges 9 open-source AI coding projects into one powerful tool.

Downloads

141

Readme

⚡ ZERO - Unified AI Coding Assistant

A unified AI coding assistant that merges 9 open-source AI coding projects into one powerful tool.

🚀 Quick Start

# Install globally
npm install -g zero-ai

# Or with Bun
bun install -g zero-ai

📦 What's Included

ZERO combines the best features from 9 major AI coding projects:

  • Gemini CLI (Google) - Model Router, Policy Engine, ReAct Loop
  • Qwen Code (Alibaba) - Confirmation Bus, Provider Presets
  • Pi (earendil-works) - Multi-Agent Orchestrator, IPC Protocol
  • OpenCode (SST) - Git Service, Permissions, HTTP Server
  • Aider - EditBlock Editing, Linter, RepoMap, History
  • Crush (Charm) - Session Service, PubSub, Prompt Engine, LSP
  • Cline - Agent Config Loader, Sub-Agents, Tool Approval
  • Goose (Block) - MCP Integration, Skills, Provider Types
  • KiloCode - Memory Prompts, Indexing, Plugin Architecture

🎯 Features

🤖 Agent System

  • ReAct loop agent engine
  • Multi-agent orchestration
  • YAML/Markdown agent configs
  • Sub-agent delegation

🔧 17 Built-in Tools

  • File operations (read/write/edit)
  • Code search (grep/ripgrep)
  • Shell execution (sandboxed)
  • Git integration (30+ operations)
  • Web fetch/search
  • Code linting (TS/Py/Go/Rust)
  • Repository mapping
  • EditBlock editing (SEARCH/REPLACE)
  • Image processing
  • LSP integration

🌐 10 LLM Providers

  • OpenAI (GPT-4o, o1, o3-mini)
  • Anthropic (Claude Sonnet 4, Haiku)
  • Google (Gemini 2.5 Pro/Flash)
  • Ollama (local models)
  • DeepSeek, Grok, OpenRouter
  • Together AI, Fireworks
  • Custom OpenAI-compatible

⚙️ Core Systems

  • Model Router (strategy chains)
  • Message Bus (pub/sub)
  • Permission System
  • Session Management (todos + cost tracking)
  • Memory System (persistent)
  • MCP Integration
  • Streaming Support
  • HTTP API Server
  • History Manager
  • Skills System
  • Custom Commands

💻 Usage

Interactive Mode

zero

One-shot Mode

zero "Create a REST API with Express"

SDK Usage

import { Zero } from 'zero-ai/sdk';

const zero = new Zero({
  provider: 'openai',
  model: 'gpt-4o',
  apiKey: process.env.OPENAI_API_KEY,
});

const result = await zero.chat('Hello!');
console.log(result.text);

🧪 Testing

# Run all tests (100 tests, 100% pass rate)
bun test

📊 Stats

  • 100 tests - All passing
  • 7,764 lines of TypeScript code
  • 38 source files
  • 9 projects merged
  • 4 languages unified (Python/Go/Rust → TypeScript)

📄 License

MIT License

🙏 Acknowledgments

Built upon the incredible work of: