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 v2.1.0, published from vanducng/vd-cli on 2026-05-24. The installed local binary reports vd 2.1.0.
Sources: README.md, skills.toml, vd install --help, gh release view v2.1.0 --repo vanducng/vd-cli.
Install The vd CLI¶
macOS¶
Homebrew is the recommended path:
Apple Silicon and Intel tarballs are also published as vd_darwin_arm64.tar.gz and vd_darwin_x86_64.tar.gz.
Linux¶
Use Homebrew on Linux, Go, or a release tarball:
Release tarballs are published as vd_linux_x86_64.tar.gz and vd_linux_arm64.tar.gz.
Windows¶
Windows x86_64 has a prebuilt zip:
$version = "v2.1.0"
$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
For Windows ARM64, use Go for now:
Install The Skill Catalog¶
Claude Code: Plugin Mode¶
Inside Claude Code:
Update later:
The CLI can print and run the same flow:
Claude Code: Dev Symlinks¶
Use this when you are editing a skill and want Claude Code to read the working tree directly:
This links each local skill into $HOME/.claude/skills.
Codex: User Scope¶
User-scope Codex install links every local skill into $HOME/.agents/skills:
Codex: Repo Scope¶
Repo-scope Codex install links into .agents/skills inside this repo:
Use repo scope when a project should carry the same skill set for every Codex session opened from that checkout.
Invocation Names¶
Documentation uses canonical IDs such as vd:research, vd:plan, and vd:ship. Claude Code and Codex expose different invocation prefixes in their UIs, but the skill identity is the same catalog namespace.