Install
This page covers two layers:
- Install the standalone
vdCLI, which manages skills across agent hosts. - Install this skill catalog into Claude Code or Codex.
Current verified CLI release: vd-cli v3.13.7, published from vanducng/vd-cli on 2026-08-10.
Sources: README.md, skills.toml, vd install --help, gh release view v3.13.7 --repo vanducng/vd-cli.
Install The vd CLI
Section titled “Install The vd CLI”Homebrew is the recommended path:
brew install vanducng/tap/vdvd --versionApple Silicon and Intel tarballs are also published as vd_darwin_arm64.tar.gz and vd_darwin_x86_64.tar.gz.
Use Homebrew on Linux, Go, or a release tarball:
brew install vanducng/tap/vdgo install github.com/vanducng/vd-cli/v2/cmd/vd@latestRelease tarballs are published as vd_linux_x86_64.tar.gz and vd_linux_arm64.tar.gz.
Windows
Section titled “Windows”Windows x86_64 has a prebuilt zip:
$version = "v3.13.7"$asset = "vd_windows_x86_64.zip"Invoke-WebRequest "https://github.com/vanducng/vd-cli/releases/download/$version/$asset" -OutFile $assetExpand-Archive $asset -DestinationPath ".\vd" -Force.\vd\vd.exe --versionWindows ARM64 also has a prebuilt zip:
$version = "v3.13.7"$asset = "vd_windows_arm64.zip"Invoke-WebRequest "https://github.com/vanducng/vd-cli/releases/download/$version/$asset" -OutFile $assetExpand-Archive $asset -DestinationPath ".\vd" -Force.\vd\vd.exe --versionInstall The Skill Catalog
Section titled “Install The Skill Catalog”Claude Code: Plugin Mode
Section titled “Claude Code: Plugin Mode”Inside Claude Code:
/plugin marketplace add vanducng/skills/plugin install vd@vd-skillsUpdate later:
/plugin marketplace update vd-skills/plugin install vd@vd-skillsThe CLI can print and run the same flow:
vd install claude --dry-runvd install claudeClaude Code: Dev Symlinks
Section titled “Claude Code: Dev Symlinks”Use this when you are editing a skill and want Claude Code to read the working tree directly:
vd install claude --dev --dry-runvd install claude --devThis links each local skill into $HOME/.claude/skills.
Codex: User Scope
Section titled “Codex: User Scope”User-scope Codex install links every local skill into $HOME/.agents/skills:
vd install codex --dry-runvd install codexCodex: Repo Scope
Section titled “Codex: Repo Scope”Repo-scope Codex install links into .agents/skills inside this repo:
vd install codex --scope repo --dry-runvd install codex --scope repoInvocation Names
Section titled “Invocation Names”Verify The Install
Section titled “Verify The Install”vd --versionvd listvd doctorbash scripts/validate.sh