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

imcodes

v2026.3.150

Published

A chat interface for AI coding agents — control Claude Code, Codex, Gemini CLI, OpenCode from browser and mobile

Downloads

9,082

Readme

IM.codes

A chat interface built for talking to AI coding agents. Not Slack, not Discord, not Telegram — something actually designed for the job.

Screenshots

Desktop

Mobile

Why

Every existing chat tool is built for humans talking to humans. When you're working with Claude Code, Codex, or Gemini CLI, you need terminal output, diff views, session management, multi-agent coordination — none of which fit into a 4096-char message box with emoji reactions.

I wanted a tool I could fully customize. Something that speaks the language of code, not social media. So I built one.

This is a personal project. I haven't written any code myself — it was built almost entirely by Claude Code, with significant contributions from Codex and Gemini CLI.

What it does

  • Remote agent control — Talk to your agents from a browser or phone. No SSH, no VPN.
  • Terminal + Chat modes — Switch between raw terminal (the native CLI experience) and a structured chat view.
  • Multi-server, multi-session — Manage agents across machines from one dashboard.
  • Real-time streaming — Live terminal output, no message limits, no rate throttling.
  • Sub-sessions — Spawn additional agents from within a session. Run parallel tasks with full visibility.
  • P2P multi-agent discussions — Route a topic through multiple agents in sequence. Each agent reads prior contributions and adds their own. Supports discuss, audit, review, and brainstorm modes. Works across Claude Code, Codex, and Gemini CLI — including sandboxed agents.
  • File upload & download — Upload files from browser or phone (including camera). Files are relayed to the daemon and referenced in chat with @path. Download project files directly from the built-in file browser.
  • Push notifications — Get notified on your phone when an agent needs attention.
  • OTA updates — Daemon self-upgrades via npm. Trigger from the web UI for one device or all devices at once.
  • Fully customizable — It's your UI. Add whatever you need — diff viewers, approval flows, custom scripts.

Architecture

You (browser / mobile)
        ↓ WebSocket
Server (self-hosted)
        ↓ WebSocket
Daemon (your machine, manages tmux)
        ↓ tmux
AI Agents (Claude Code / Codex / Gemini CLI / OpenCode)

The daemon runs on your dev machine and manages agent sessions through tmux. The server relays connections between your devices and the daemon. Everything stays on your infrastructure.

Install

npm install -g imcodes

Quick Start

Use the hosted version at app.im.codes, or self-host the server on your own infrastructure.

imcodes bind https://app.im.codes/bind/<api-key>

This binds your machine, starts the daemon, and registers it as a system service.

Requirements

  • macOS or Linux (tested on both). Windows users need WSL — native Windows is not supported since the project uses tmux to manage agent sessions.
  • Node.js >= 20
  • tmux
  • At least one AI coding agent: Claude Code, Codex, Gemini CLI, or OpenCode

License

MIT