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

@vibecontrols/vibe-plugin-plan-plannotator

v2026.527.2

Published

Plannotator plan provider for vibecontrols — wraps the upstream plannotator CLI, tunnels its UI, and configures per-AI-agent hooks.

Readme

@vibecontrols/vibe-plugin-plan-plannotator

Plannotator plan provider for the VibeControls agent. Wraps the upstream plannotator CLI:

  • Installs the plannotator binary on demand (sha256-pinned).
  • Spawns a per-session plannotator HTTP server on a dedicated port.
  • Reverse-proxies the local UI at /plan/:sessionId/*, stripping iframe-blocking headers so the agent's vibetunnels URL can embed it.
  • Configures AI-agent hooks (Claude Code, OpenCode, Codex, Pi, Gemini) so completed plans land in plannotator automatically.
  • Registers with the agent's ServiceRegistry under the "plan" type so the meta plugin @vibecontrols/vibe-plugin-plan can dispatch to it.

Install

vibe plugin install @vibecontrols/vibe-plugin-plan
vibe plugin install @vibecontrols/vibe-plugin-plan-plannotator
vibe plan-plannotator install               # downloads the binary

Or set VIBE_PLANNOTATOR_AUTOINSTALL=1 to auto-install on first plan request (not recommended for shared agents).

REST API

Mounted under /api/plan-plannotator on the agent (plus /plan/:sessionId/* as the reverse proxy).

| Method | Path | Description | | ------ | --------------------------------- | ------------------------------------------------ | | GET | /status | Binary install status + running sessions | | POST | /install | Run the sha256-pinned installer | | GET | /prereqs | Same as /status (matches meta-plugin contract) | | POST | /prereqs/install | Alias of /install | | POST | /stop?sessionId= | Stop a specific session, or all sessions | | GET | /agents/supported | Detect installed AI agents + hook status | | POST | /agents/:agent/configure-hook | Write the plannotator hook for an agent | | POST | /agents/:agent/unconfigure-hook | Remove the hook |

:agent is one of claude, opencode, codex, pi, gemini.

CLI

vibe plan-plannotator status
vibe plan-plannotator install
vibe plan-plannotator stop [--session <id>]
vibe plan-plannotator agents list
vibe plan-plannotator agents configure <agent>
vibe plan-plannotator agents unconfigure <agent>

Configuration

Environment variables (all optional):

| Name | Default | Meaning | | ----------------------------------- | -------- | ---------------------------------------------------------------- | | PLANNOTATOR_PORT | 19432 | Preferred port for plannotator. Falls back to a scan of +10. | | VIBE_PLANNOTATOR_AUTOINSTALL | unset | If 1, auto-install the binary on first session start. | | VIBE_PLANNOTATOR_INSTALL_UNPINNED | unset | If 1, bypass the sha256 pin on install.sh (NOT recommended). | | VIBE_PLANNOTATOR_IDLE_MS | 900000 | Kill a session after this many ms of inactivity. | | VIBE_PLANNOTATOR_IDLE_SCAN_MS | 60000 | Idle watchdog scan interval. |

Per-agent hook setup

  • Claude Code: writes a PreToolUse hook matched to ExitPlanMode in ~/.claude/hooks.json.
  • OpenCode: adds @plannotator/opencode to the plugin array in ~/.config/opencode/opencode.json.
  • Codex CLI: appends a [hooks.plannotator] block bracketed by marker comments in ~/.codex/config.toml.
  • Pi: drops ~/.pi/hooks/before_agent_start.d/vibe-plan-plannotator.sh.
  • Gemini CLI: drops ~/.gemini/hooks/vibe-plan-plannotator.sh.

All hooks are idempotent (re-running configure does not duplicate) and refuse to write outside $HOME.

Troubleshooting

  • Port 19432 in use: set PLANNOTATOR_PORT to another port. The provider scans the next 10 if the preferred port is busy.
  • Iframe blocked: confirm the agent's reverse proxy mounts cleanly by hitting ${tunnelUrl}/plan/ — expect a 404 placeholder, not a 502.
  • Hung session: vibe plan-plannotator stop --session <id> (or the 15 min idle watchdog will reap it).

Development

bun install
bun run sanity   # format:check + lint + type:check + test + build

License

Proprietary — Burdenoff Consultancy Services Pvt. Ltd. Plannotator itself is dual MIT/Apache-2.0; see https://plannotator.ai for upstream licensing.