Skip to content

vd Usage Guide

vd manages skills in this repository from source import through local agent installation. Use this page as the quick operational guide; see commands.md for full flag-level reference.

vd CLI feature overview

Start by creating a manifest, registering skills, syncing them to disk, and building local agent targets:

Terminal window
vd init
vd add browserbase/skills/browser --as browser
vd sync
vd build

vd init creates skills.toml. vd add records an upstream skill source. vd sync vendors tracked skills into skills/<name>/, updates skills.lock, and runs vd build unless --no-build is set. vd build regenerates Claude plugin metadata and repo-scoped Codex symlinks.

FeatureCommandsPurpose
Manifest setupvd initCreate or refresh skills.toml from repository defaults.
Fetch skillsvd bootstrapClone vanducng/skills into ~/.vd/skills so a fresh install has skills to install from.
Upstream trackingvd add, vd sync, vd updateRegister skills, vendor them locally, and move tracked skills to upstream HEAD.
Version controlvd pin, vd detach, vd removeFreeze a skill at a SHA, stop tracking it, or remove it cleanly.
Inspectionvd list, vd diff, vd doctorReview tracked skills, compare local edits, and detect drift from skills.lock.
Target buildsvd build claude, vd build agentsGenerate .claude-plugin/ files and .agents/skills/ symlinks.
Agent installvd install codex, vd install claudeInstall local skills into Codex or Claude Code.
Cache controlvd cache cleanRemove .vd-cache/ and force future fetches to repopulate it.
Self-updatevd upgradeReplace the running binary with the latest release (brew update && brew upgrade vanducng/tap/vd for Homebrew).
Terminal window
vd list # show manifest skills and lock SHAs
vd doctor # report modified, missing, or untracked skill dirs
vd diff research # compare cached upstream vs skills/research/
vd update # update all tracked skills
vd pin browser abc1234 # pin browser to a specific commit
vd detach research # keep files but stop upstream tracking
vd remove browser --keep-files # untrack without deleting files
vd cache clean # remove the repo download cache

Use --root <path> or VD_ROOT=/path/to/repo when running vd outside the repository. Set VD_NO_UPDATE_CHECK=1 to disable release checks.

No skills repo of your own? Run vd bootstrap first to fetch the maintained skill set into ~/.vd/skills; vd install then resolves it automatically (and offers to bootstrap if nothing is found).

Codex installs use symlinks by default so local edits in skills/<name>/ are visible after restarting Codex:

Terminal window
vd install codex # symlink all skills to $HOME/.agents/skills
vd install codex research plan # install selected skills
vd install codex --scope repo # symlink into .agents/skills for this repo
vd install codex --copy --force # replace existing entries with copied snapshots
vd install # open the picker (single, comma-separated, or 'all')

Claude Code installs build the plugin bundle, register this repository as a marketplace, and install the configured plugin. Use --dev for per-skill symlinks into $HOME/.claude/skills instead:

Terminal window
vd install claude
vd install claude --dev # per-skill symlinks into ~/.claude/skills
vd install claude --dry-run

Before pulling upstream changes, check local state:

Terminal window
vd doctor
vd diff <skill>
vd update <skill>