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

multicode

v0.0.6

Published

Terminal UI for managing multiple repositories with Claude Code integration

Readme

Multicode

A terminal UI for managing multiple Git repositories with integrated Claude Code support. Work on several projects simultaneously, each with its own Claude Code session, git worktrees, and persistent conversation history.

Multicode Screenshot

Features

  • Multi-Project Tabs - Open multiple repositories as tabs, switch instantly with 1-9 keys
  • Embedded Claude Code - Full Claude Code terminal per project with session persistence
  • Git Worktree Management - Create, switch, and manage worktrees without leaving the app
  • Session Resume - Claude conversations persist across restarts via --resume
  • Activity Indicators - See which tab has active Claude thinking/tool execution
  • Script Runner - Quick access to dev and build scripts per project

Installation

Quick Start (Recommended)

bunx multicode

That's it! Requires Bun to be installed.

Install Globally

bun install -g multicode
multicode

From Source

git clone https://github.com/twdnhfr/multicode.git
cd multicode
bun install
bun run dev

First Run

On first launch, press Ctrl+S to open setup:

  1. Set your repository folder (e.g., ~/projects)
  2. Set your worktree base path (where new worktrees are created)
  3. Claude CLI path is auto-detected

Keyboard Shortcuts

Global

| Key | Action | |-----|--------| | Ctrl+O | Open repository picker | | Ctrl+S | Open setup | | Ctrl+Q | Quit | | Tab | Cycle focus between areas | | 1-9 | Switch to tab/worktree by number |

When focused on Tabs

| Key | Action | |-----|--------| | x | Close current tab | | c | Open Claude Code |

When focused on Worktrees

| Key | Action | |-----|--------| | w | Open worktree manager |

When focused on File Tree

| Key | Action | |-----|--------| | ↑/↓ | Navigate | | Enter | Expand/collapse folder | | Ctrl+F | File search | | . | Toggle hidden files |

When focused on Terminal

| Key | Action | |-----|--------| | Escape | Return focus to file tree |

Layout

┌─[1:project-a]─[2:project-b]─[3:project-c]────────────────────────┐
├─[1:main↑0↓0]─[2:feature-x↑2↓0]───────────────────────────────────┤
│ 📁 project-a    │                                                │
│ ├── src/        │   Claude Code Terminal                         │
│ ├── tests/      │                                                │
│ └── ...         │   > How can I help you today?                  │
│                 │                                                │
├─────────────────┴────────────────────────────────────────────────┤
│ [t] OTLP:4319 │ Scripts: [d] dev [b] build                       │
└──────────────────────────────────────────────────────────────────┘

Session Persistence

Multicode automatically saves and restores:

  • Open tabs and their repositories
  • Active worktree per tab
  • Claude session IDs for conversation resume
  • Last active tab

Sessions are stored in ~/.multicoderc.

How It Works

Claude Integration

Each tab maintains its own Claude session ID. When you open Claude Code:

  • First time: Creates new session with --session-id
  • Subsequent opens: Resumes with --resume
  • If session expired: Automatically creates new session

OTLP Telemetry

Multicode runs an OTLP receiver on port 4319 to receive telemetry from Claude Code. This enables:

  • Real-time activity indicators (⚡ for tools, ◉ for thinking)
  • Session ID matching to show status on correct tab

Git Worktrees

Create isolated worktrees for parallel development:

  1. Focus worktree bar and press w
  2. Enter branch name
  3. New worktree is created and switched to

Each worktree shows sync status (↑ahead ↓behind).

Requirements

Configuration

Config file: ~/.multicoderc

{
  "repoDirectory": "/Users/you/projects",
  "claudePath": "/usr/local/bin/claude",
  "worktreeBasePath": "/Users/you/worktrees",
  "openTabs": [...],
  "activeTabIndex": 0
}

Contributing

This project is open source and we'd love your help! Whether it's:

  • 🐛 Reporting bugs
  • 💡 Suggesting new features
  • 🔧 Submitting pull requests
  • 📖 Improving documentation

Feel free to open an issue or submit a PR. All contributions are welcome!

License

MIT