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

@osovv/vvcode

v0.5.4

Published

Packaged CLI for launching OpenCode with vvcode runtime semantics.

Readme

vvcode

vvcode is a Bun-based CLI package for launching OpenCode with preset-driven runtime overlays.

Install

bun add -g @osovv/vvcode

For local development from this repo:

bun install
bun run cli -- --help

Config layout

Global config path:

~/.config/vvcode/config.jsonc

Project config path:

.vvcode/config.jsonc

The current behavior is:

  1. Global config is the source of shared presets and profiles.
  2. Project config is optional for launch if a project root already exists.
  3. vvcode init creates a minimal project config scaffold.
  4. vvcode preset add <name> copies a preset from global config into the project config.
  5. vvcode preset remove <name> removes a copied project preset and prunes unused copied profiles.

Quick start

Initialize a project-local config:

vvcode init

See which presets are available:

vvcode preset list

Copy a global preset into the current project:

vvcode preset add openai

Launch OpenCode with a preset:

vvcode opencode --preset openai

Or use the shorthand form:

vvcode --preset openai

Commands

Show help:

vvcode help
vvcode --help

Initialize project config:

vvcode init
vvcode init --project-root /path/to/project

Launch OpenCode:

vvcode opencode --preset <name>
vvcode --preset <name>

Any extra arguments after the vvcode launch flags are forwarded to opencode.

Examples:

vvcode --preset openai run "say hello"
vvcode --preset openai run "say hello" --format json
vvcode --preset openai -p "say hello"

-p and --prompt are vvcode shorthand for launching opencode run <message>.

By default vvcode starts the shell with:

opencode

You can override the shell command, for example:

OPENCODE_SHELL_COMMAND='bun x opencode-ai' vvcode --preset openai

Options:

  1. --preset for the preset name.
  2. --global-config, -c to override the global config file path.
  3. --project-root, -r to launch from a different project root.
  4. -p, --prompt to shorthand into opencode run <message> for non-interactive tests.

Manage presets:

vvcode preset list
vvcode preset add <preset-name>
vvcode preset remove <preset-name>

preset list prints one preset per line with its source label:

  1. global
  2. project
  3. project-overrides-global

Runtime artifacts

  • .vvcode/local/runtime/overlays/
  • .vvcode/local/runtime/traces/
  • .vvcode/local/runtime/failures/
  • .vvcode/memory/project/
  • .vvcode/memory/agent/
  • .vvcode/local/memory/session/
  • .vvcode/local/memory/subagent/

Packaging notes

  • Package name: @osovv/vvcode
  • CLI bin: vvcode
  • Published runtime entry: dist/vvcode.js
  • Build command: bun run build
  • Local dev command: bun run cli -- --help
  • prepack builds dist automatically before publish or pack
  • Scoped publish target: npm publish --access=public