Overview
vd is a single-binary vendoring package manager for the skills that power your coding agents. Skills live in your repo as plain files — vd fetches them from any upstream, locks them with a SHA, and dispatches them to every agent in your stack.
Install
Section titled “Install”# Homebrew (recommended)brew install vanducng/tap/vd
# or with the install scriptcurl -fsSL https://raw.githubusercontent.com/vanducng/vd-cli/main/install.sh | shPre-built binaries (darwin/linux/windows × amd64/arm64) and a from-source build are covered in the usage guide.
To update an existing install: brew update && brew upgrade vanducng/tap/vd for Homebrew, or vd upgrade for standalone binaries (downloads the latest release and self-replaces; Homebrew installs are deferred back to brew).
Quick start
Section titled “Quick start”vd init # bootstrap skills.toml at the repo rootvd add browserbase/skills/browser --as browser # track an upstream skillvd sync # vendor it locally (fetch, hash, lock)vd build # emit manifests for every configured agentvd install codex # (optional) install into Codex user scopevd install droid # (optional) install into Droid user scopevd install pi # (optional) install into Pi user scopeSupported agents
Section titled “Supported agents”vd build emits the manifest each agent stack expects:
| Agent | What vd build emits |
|---|---|
| Claude Code | .claude-plugin/marketplace.json + plugin.json |
| OpenAI Codex | .agents/skills/<name> repo-scope symlinks; vd install codex for user scope |
| Factory Droid | .factory/skills/<name> repo entries (relative symlinks on Unix, copies on Windows); vd install droid for user scope |
| Pi | .pi/skills/<name> repo entries (relative symlinks on Unix, copies on Windows); vd install pi for user scope |
Droid and Pi support covers skills only, not plugins, hooks, extensions, or observability.
What’s inside
Section titled “What’s inside” Usage guide Install, the end-to-end workflow, and how vd fits into your repo.
Command reference Every vd command, its flags, and what it does.
Configuration The skills.toml manifest and skills.lock schema.
Migration & FAQ Upgrade notes and answers to common questions.