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

@vibe-orchestrator/executor

v0.1.0

Published

Local executor for Vibe Orchestrator - spawns AI agents on your machine

Readme

@vibe-orchestrator/executor

Local executor for Vibe Orchestrator. Runs on your dev machine, spawns AI coding agents, and streams results back to the VPS server over WebSocket.

Installation

npm install -g vibe-executor

Or run from source:

cd packages/executor
bun run dev

CLI Commands

vibe-executor setup

Interactive configuration. Prompts for server URL and API key, saves to ~/.vibe-executor/config.json.

vibe-executor setup
# Server URL: https://your-vps.example.com
# API Key: a1b2c3d4...
# Configuration saved.

vibe-executor start

Connect to the orchestrator server and begin accepting agent spawn commands.

vibe-executor start           # foreground mode
vibe-executor start --daemon  # background mode (writes PID file)

On connect, the executor sends its runtime capabilities (which CLIs are installed) to the server.

vibe-executor stop

Stop a running daemon executor.

vibe-executor stop
# Sent SIGTERM to executor (PID 12345).

vibe-executor status

Check configuration and executor running state.

vibe-executor status
# Configuration: found
#   Server URL: https://your-vps.example.com
# Executor: running (PID 12345)

vibe-executor setup-ide

Automatically write MCP configuration files for supported IDEs. Backs up existing configs before modifying.

vibe-executor setup-ide
# Wrote Claude Code config: ~/.claude/.mcp.json
# Wrote Cursor config: ~/.cursor/mcp.json
# Wrote Antigravity config: ~/.antigravity/mcp.json

Runtime Detection

On startup, the executor checks which agent CLIs are available:

| Runtime | CLI Command | Detection | |---------|-------------|-----------| | Claude Code | claude | claude --version | | Gemini CLI | gemini | gemini --version | | Codex CLI | codex | codex --version |

Available runtimes are reported to the server. The server only dispatches tasks to runtimes the executor supports.

How Agents Are Spawned

When the server sends a spawn_agent message, the executor:

  1. Validates the working directory exists
  2. Spawns the appropriate CLI with task description and system prompt
  3. Streams stdout/stderr back to the server as agent_log messages
  4. Reports completion or error when the process exits

Agent CLI invocations:

# Claude Code
claude --system-prompt "..." --print "task description"

# Gemini CLI
gemini --yolo -p "task description"

# Codex CLI
codex --approval-mode auto-edit "task description"

MCP server configs can be injected so spawned agents can call back to the orchestrator.

Configuration

Stored at ~/.vibe-executor/config.json:

{
  "serverUrl": "https://your-vps.example.com",
  "apiKey": "your-api-key",
  "registeredProjects": {}
}

Daemon Mode

With --daemon, the executor writes its PID to ~/.vibe-executor/executor.pid and runs in the background. Use vibe-executor stop to send SIGTERM.

Troubleshooting

"No configuration found" -- Run vibe-executor setup first.

"Disconnected ... Reconnecting" -- The WebSocket connection was lost. The executor auto-reconnects with backoff.

Agent spawn fails -- Check that the runtime CLI is installed and in your PATH. Run vibe-executor status to verify.

Working directory does not exist -- The server sends a workingDir with each spawn. Make sure the project's repo_path points to a valid local directory.