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

@vibe80/vibe80

v0.2.5

Published

Vibe80 is an open-source, AI-assisted coding platform that orchestrates LLM agents over Git repositories through a real-time web interface. It acts as a bridge between developers and AI coding agents — currently supporting Codex (OpenAI) and Claude Code (

Readme

vibe80

Vibe80 is an open-source, AI-assisted coding platform that orchestrates LLM agents over Git repositories through a real-time web interface. It acts as a bridge between developers and AI coding agents — currently supporting Codex (OpenAI) and Claude Code (Anthropic) — providing a structured environment where these agents can read, write, and modify code within isolated, sandboxed workspaces.

Key Capabilities

  • Real-time AI chat — Stream-based conversation with AI agents that can read, write, and execute code in your repository.
  • Multi-provider support — Switch between Codex (OpenAI) and Claude Code (Anthropic) within the same session, with independent model and reasoning configuration per provider
  • Parallel worktrees — Create multiple isolated git worktrees (branches) within a session, each with its own AI agent, enabling parallel development tracks. Supports forking a worktree to inherit the conversation context
  • Web terminal — Full PTY-based terminal access to the repository environment via xterm.js
  • Mobile companion — Native Android (Jetpack Compose) and iOS (SwiftUI) apps built with Kotlin Multiplatform, with QR-code session handoff.
  • Sandboxing — Landlock LSM, seccomp, and network control restrict what AI agents can access on the filesystem and network

Prerequisites

  • Node.js >= 18
  • Git
  • codex installed & configured (optional)
  • claude code installed & configured (optional)

At least one of codex or claude code must be installed before starting.

Quick Start (local)

npm install -g @vibe80/vibe80

# Run with Codex support
vibe80 run --codex

# Run with Claude support
vibe80 run --claude

# Run without opening browser automatically
vibe80 run --codex --no-open

vibe80 run requires at least one provider flag: --codex or --claude.

The server starts on http://localhost:5179 and prints a one-shot authentication link at startup.

Docker

Docker with Codex

docker run \
  -e VIBE80_DEPLOYMENT_MODE=mono_user \
  -e VIBE80_MONO_ENABLE_CODEX=true \
  -v vibe80home:/home/vibe80 \
  -p 5179:5179 \
  vibe80/vibe80

Docker with Claude

docker run --rm -it \
  -e VIBE80_DEPLOYMENT_MODE=mono_user \
  -e VIBE80_MONO_ENABLE_CLAUDE=true \
  -v vibe80home:/home/vibe80 \
  -v $(realpath $(which claude)):/usr/bin/claude \
  -p 5179:5179 \
  vibe80/vibe80

Unlike Codex (Apache-2.0), Claude Code is proprietary and cannot be distributed in the image. That is why the host Claude binary is mounted into the container.

Mobile apps

  • Android APK: https://github.com/vibe80/vibe80/releases
  • iOS app: coming soon

Documentation

Full documentation: https://vibe80.io/docs

License

This project is licensed under the Apache License 2.0.