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

@barnaby.build/barnaby

v0.0.253

Published

Barnaby: local agent loops without API keys.

Readme

Barnaby

Barnaby is a desktop IDE for orchestrating multiple AI coding agents locally.

Run Codex, Claude, Gemini, and OpenRouter-backed models side-by-side from a single workspace, with separate panels, shared project context, and an optional orchestrator for longer-running agent workflows.

Barnaby lets developers treat AI agents like a team: design with one, code with another, review with a third.


Screenshot

Barnaby UI

Additional screenshots:


Features

  • Run multiple AI agent sessions simultaneously
  • Compare models side-by-side in split or grid layouts
  • Orchestrate workflows between agents from a shared workspace
  • Works with existing CLI tools such as Codex, Claude Code, and Gemini CLI
  • Supports OpenRouter for API-based model access when CLI quotas are exhausted
  • Local-first architecture: your code stays on your machine
  • Multi-window agent and workspace management
  • Built for developers, with explorer, Git, settings, and streaming chat timelines

Why Barnaby?

Most AI coding tools operate one agent at a time.

Barnaby is designed for parallel, role-based workflows where different agents handle different parts of the job while staying anchored to the same codebase.

Example workflow:

  • Architecture agent: designs the solution
  • Coding agent: implements the change
  • Review agent: validates behavior and catches regressions

All running in parallel from one desktop workspace.

Barnaby is also pragmatic about provider choice. You can use the CLI tools you already pay for and sign into, or route requests through OpenRouter when you need broader model coverage.


Installation

Barnaby currently runs by cloning the repository locally.

Requirements:

  • Node.js >=20 <27 (Node 22 LTS recommended)
  • npm
  • Optional provider setup:
    • Codex CLI
    • Claude CLI / Claude Code
    • Gemini CLI
    • OpenRouter API key

Clone and run in development:

git clone https://github.com/incendiosoftware/Barnaby.git
cd Barnaby
npm install
npm run dev

Build a desktop package:

npm run build

Releases:

  • https://github.com/incendiosoftware/Barnaby/releases

CLI sanity check after installing providers:

codex --version
claude --version
gemini --version

If the postinstall step reports that a native rebuild was skipped, the embedded terminal will usually still work via prebuilt binaries. Source rebuilds are only needed on platforms where prebuilds are unavailable.


Architecture

Barnaby acts as a local orchestration layer for AI agent processes and provider integrations.

Barnaby Desktop UI
        |
        v
  Workspace + Panel Manager
        |
        v
 Provider / Agent Runtime Layer
   |         |         |         |
   v         v         v         v
 Codex    Claude    Gemini   OpenRouter
  CLI       CLI       CLI        API

At a high level:

  • src/ contains the React renderer UI for panels, workspace tools, chat, and layout management
  • electron/main/ manages desktop runtime concerns, provider clients, permissions, updates, and local orchestration
  • electron/preload/ exposes the desktop bridge between the Electron main process and the renderer
  • The optional orchestrator plugin extends Barnaby with autonomous agent loops, shared state, and goal persistence

Barnaby is local-first by design. Agent processes run on your machine, workspace context stays in your environment, and provider authentication remains with the CLI tools or API keys you configure.


Roadmap

Current capabilities:

  • Multi-agent workspace
  • CLI integration for Codex, Claude, and Gemini
  • OpenRouter model access
  • Local orchestration and workspace-aware context
  • Windowed desktop UI with split layouts and workspace tooling

Planned improvements:

  • Richer agent collaboration workflows
  • Better remote and background agent control
  • Plugin ecosystem expansion
  • Stronger automation and orchestration primitives
  • More onboarding polish and demos for new users

Contributing

Contributions and feedback are welcome.

Open an issue or submit a pull request if you want to help improve Barnaby.

Additional docs:


License

MIT