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

vibora

v1.15.0

Published

The Vibe Engineer's Cockpit

Readme

Vibora

vibora

The Vibe Engineer's Cockpit. A terminal-first tool for orchestrating AI coding agents across isolated git worktrees.

Philosophy

  • Claude Code first — Built for developers who prefer working in the terminal with CLI agents. Vibora is designed with Claude Code in mind, though it works with other CLI agents (Codex, Gemini CLI, etc.). No abstraction layer, no wrapper APIs—agents run in terminals as-is.
  • Opinionated with few opinions — Provides structure without dictating workflow.
  • Git worktree isolation — Tasks create isolated git worktrees, with architecture supporting evolution toward more general task types.
  • Persistent terminals — Named terminals organized in tabs for work that doesn't fit neatly into task worktrees.
  • Task terminals view — See all terminal sessions across all tasks and worktrees in a single parallel view.

Quick Start

Requires Node.js and Claude Code.

Install via curl (recommended)

curl -fsSL https://raw.githubusercontent.com/knowsuchagency/vibora/main/install.sh | bash

This installs vibora, the Claude Code plugin, and starts the server.

Install via npm

npx vibora@latest up

If using npm, install the Claude Code plugin separately for automatic task status sync:

claude plugin marketplace add knowsuchagency/vibora
claude plugin install vibora@vibora --scope user

Server Commands

vibora up       # Start server daemon
vibora down     # Stop the server
vibora status   # Check if running

Open http://localhost:3333 in your browser.

Configuration

Settings are stored in .vibora/settings.json. The vibora directory is resolved in this order:

  1. VIBORA_DIR environment variable (explicit override)
  2. .vibora in current working directory (per-worktree isolation)
  3. ~/.vibora (default)

| Setting | Env Var | Default | |---------|---------|---------| | port | PORT | 3333 | | defaultGitReposDir | VIBORA_GIT_REPOS_DIR | ~ | | hostname | VIBORA_HOSTNAME | (empty) | | sshPort | VIBORA_SSH_PORT | 22 | | basicAuthUsername | VIBORA_BASIC_AUTH_USERNAME | null | | basicAuthPassword | VIBORA_BASIC_AUTH_PASSWORD | null | | linearApiKey | LINEAR_API_KEY | null | | githubPat | GITHUB_PAT | null | | language | — | null (auto-detect) |

Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI or CLI and stored in settings.json.

Precedence: environment variable → settings.json → default

Linear Integration

Vibora can sync task status with Linear tickets. Configure linearApiKey in settings or set the LINEAR_API_KEY environment variable. When a task is linked to a Linear ticket, status changes in Vibora automatically update the corresponding Linear ticket.

Basic Auth

Set basicAuthUsername and basicAuthPassword (via settings or environment variables) to require authentication. Useful when exposing Vibora over a network.

Claude Code Plugin

The vibora plugin for Claude Code enables automatic task status sync:

  • Task → IN_REVIEW when Claude stops (waiting for your input)
  • Task → IN_PROGRESS when you respond to Claude

The plugin also provides slash commands (/review, /pr, /notify, /linear, /task-info). The plugin is automatically installed in task worktrees when tasks are created, and Claude sessions are tied to task IDs for session continuity.

To install the plugin globally:

claude plugin marketplace add knowsuchagency/vibora
claude plugin install vibora@vibora --scope user

CLI

The CLI lets AI agents (like Claude Code) working inside task worktrees query and update task status.

Server Management

vibora up                        # Start server daemon
vibora down                      # Stop server
vibora status                    # Check server status
vibora health                    # Check server health

Current Task (auto-detected from worktree)

vibora current-task              # Get current task info
vibora current-task in-progress  # Mark as IN_PROGRESS
vibora current-task review       # Mark as IN_REVIEW
vibora current-task done         # Mark as DONE
vibora current-task cancel       # Mark as CANCELED
vibora current-task pr <url>     # Associate a PR with current task
vibora current-task linear <url> # Link to a Linear ticket

Task Management

vibora tasks list                # List all tasks
vibora tasks get <id>            # Get task by ID
vibora tasks create              # Create a new task
vibora tasks update <id>         # Update a task
vibora tasks move <id>           # Move task to different status
vibora tasks delete <id>         # Delete a task

Git Operations

vibora git status                # Git status for current worktree
vibora git diff                  # Git diff for current worktree
vibora git branches              # List branches in a repo

Worktrees

vibora worktrees list            # List all worktrees
vibora worktrees delete          # Delete a worktree

Configuration

vibora config get <key>          # Get a config value
vibora config set <key> <value>  # Set a config value

Notifications

vibora notifications             # Show notification settings
vibora notifications enable      # Enable notifications
vibora notifications disable     # Disable notifications
vibora notifications test <ch>   # Test a channel (sound, slack, discord, pushover)
vibora notifications set <ch> <key> <value>
                                 # Set a channel config

vibora notify <title> [message]  # Send a notification to all enabled channels

Global Options

--port=<port>     # Server port (default: 3333)
--url=<url>       # Override full server URL
--pretty          # Pretty-print JSON output

Internationalization

Available in English and Chinese. Set the language setting or let it auto-detect from your browser.

z.ai Integration

Works with z.ai for Claude Code proxy integration. Configure via the Settings UI.

Development

See DEVELOPMENT.md for development setup, architecture, and contributing guidelines.

License

PolyForm Shield 1.0.0