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

neural-cli-orchestrator

v2.0.3

Published

NCO Backend - Multi-AI CLI Orchestrator

Readme

NCO - Neural CLI Orchestrator

9 AI providers working as one. Discussion, parallel comparison, consensus, and autonomous agent modes.

Quick Start

npm install -g neural-cli-orchestrator
nco-setup

nco-setup will:

  1. Install system dependencies (Redis, tmux, jq)
  2. Configure AI providers (login or API key for each)
  3. Generate .env configuration
  4. Set up Claude Code integration (status line + MCP)
  5. Start services via PM2

Commands

nco-setup              # Interactive first-time setup
nco-setup --dry-run    # Simulate without changes
nco-setup --no-ai      # Skip AI provider installation
nco-setup --skip-claude # Skip Claude Code integration

nco-start              # Start NCO services
nco-stop               # Stop NCO services
nco-status             # Check service health

Alternative: install.sh

cd /opt/neural-cli-orchestrator
bash install.sh

Services

| Port | Service | |------|---------| | 6200 | API Gateway (REST) | | 6201 | WebSocket (real-time streaming) | | 6379 | Redis (message broker) |

AI Providers

| Provider | Auth | Role | |----------|------|------| | Claude Code | Login or API key | Commander | | Gemini / Gemini API | Login or API key | Advisors | | Codex (OpenAI) | Login or API key | Coder | | Aider | API key (shared) | Refactoring | | OpenCode | API key | Deputy | | Copilot | GitHub login | Assistant | | Ollama | None (local) | Observer | | Cursor Agent | Login | UI specialist |

API

# Health
curl http://localhost:6200/health

# Multi-AI Discussion
curl -X POST http://localhost:6200/api/chat/discussion \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Analyze this code", "providers": ["ollama", "gemini"]}'

# Parallel Comparison
curl -X POST http://localhost:6200/api/chat/parallel \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Write a debounce function", "providers": ["gemini-api", "ollama"]}'

# OpenAI-compatible
curl -X POST http://localhost:6200/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model": "gemini-api", "messages": [{"role": "user", "content": "Hello"}]}'

Claude Code Integration

After nco-setup, NCO is available in Claude Code via MCP:

Use nco_discussion to review the security of src/auth.ts

Documentation

Requirements

  • Node.js 20+
  • Redis 7+
  • Linux / WSL2
  • Build tools for native modules: python3 make gcc g++

License

Proprietary