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 🙏

© 2025 – Pkg Stats / Ryan Hefner

open-composer

v0.8.23

Published

A chat-first terminal UI orchestrator for multiple AI coding agents.

Downloads

1,062

Readme

Open Composer CLI

A chat-first terminal UI orchestrator for multiple AI coding agents.

Overview

Open Composer CLI is a TUI (Text User Interface) that orchestrates multiple AI agents in a single terminal environment. It provides a chat interface to interact with various coding agents while managing Git worktrees for isolated development.

Features

  • Chat Interface: Natural language interaction with AI agents
  • Multi-Agent Support: Claude Code, Codex Nation, Cursor Agent, and more
  • Git Worktree Integration: Isolated branch-specific workspaces
  • TUI Layout: Split-pane interface with sidebar, chat, and code editor
  • Agent Routing: Intelligent agent selection based on query context

Quick Start

# Run in development mode
bun run dev

# Build the CLI
bun run build

# Run tests
bun run test

Architecture

Components

  • ComposerApp: Main application component
  • ChatInterface: Central chat pane for agent communication
  • Sidebar: Displays worktrees, branches, and active agents
  • CodeEditor: File browser and code display
  • Layout: Overall TUI layout management

Core Libraries

  • WorktreeCli: Effect-based Git worktree operations
  • @open-composer/agent-router: Effect-based agent selection and query routing

Usage

The CLI launches a TUI with three main panes:

  1. Left Sidebar: Workspaces, branches, and agents
  2. Center Chat: Conversation with AI agents
  3. Right Panel: File tree and code editor

Type messages in the chat interface to interact with agents. The router automatically selects appropriate agents based on your query content.

CLI Commands

  • open-composer agents list — inspect available agents
  • open-composer agents activate <name> — enable an agent
  • open-composer agents deactivate <name> — disable an agent
  • open-composer gw list — inspect git worktrees

Agents

  • 🤖 claude-code: Code review & planning
  • 📝 codex-nation: Code generation
  • 🖱️ cursor-agent: UI/UX implementation
  • 🌐 open-code: Open-source snippet sourcing
  • kilo-code: Performance optimization

Development

Built with:

  • Ink: React for CLI interfaces
  • React: Component architecture
  • TypeScript: Type safety
  • Bun: Runtime and package manager