Skip to content

Install

This page covers two layers:

  • Install the standalone vd CLI, 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.

Homebrew is the recommended path:

Terminal window
brew install vanducng/tap/vd
vd --version

Apple 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:

Terminal window
brew install vanducng/tap/vd
Terminal window
go install github.com/vanducng/vd-cli/v2/cmd/vd@latest

Release tarballs are published as vd_linux_x86_64.tar.gz and vd_linux_arm64.tar.gz.

Windows x86_64 has a prebuilt zip:

Terminal window
$version = "v3.13.7"
$asset = "vd_windows_x86_64.zip"
Invoke-WebRequest "https://github.com/vanducng/vd-cli/releases/download/$version/$asset" -OutFile $asset
Expand-Archive $asset -DestinationPath ".\vd" -Force
.\vd\vd.exe --version

Windows ARM64 also has a prebuilt zip:

Terminal window
$version = "v3.13.7"
$asset = "vd_windows_arm64.zip"
Invoke-WebRequest "https://github.com/vanducng/vd-cli/releases/download/$version/$asset" -OutFile $asset
Expand-Archive $asset -DestinationPath ".\vd" -Force
.\vd\vd.exe --version

Inside Claude Code:

/plugin marketplace add vanducng/skills
/plugin install vd@vd-skills

Update later:

/plugin marketplace update vd-skills
/plugin install vd@vd-skills

The CLI can print and run the same flow:

Terminal window
vd install claude --dry-run
vd install claude

Use this when you are editing a skill and want Claude Code to read the working tree directly:

Terminal window
vd install claude --dev --dry-run
vd install claude --dev

This links each local skill into $HOME/.claude/skills.

User-scope Codex install links every local skill into $HOME/.agents/skills:

Terminal window
vd install codex --dry-run
vd install codex

Repo-scope Codex install links into .agents/skills inside this repo:

Terminal window
vd install codex --scope repo --dry-run
vd install codex --scope repo
Terminal window
vd --version
vd list
vd doctor
bash scripts/validate.sh