Skip to content

Installation

ToddSpect edited this page May 23, 2026 · 6 revisions

Todd of AIDLC logo

Installation

VS Code extension (recommended)

Method Steps
VSIX release Download from Releases → Install from VSIX → Reload window
Build from source npm installnpm run package:vsix → install packages/extension/toddspect-vscode.vsix

After install, Todd of AIDLC runs todd setup automatically (workspace init, AI-DLC rules; Kiro download optional).

CLI only (no extension)

cd toddspect
npm install
npm run build
node packages/cli/dist/index.js check getGoat
node packages/cli/dist/index.js chat -a copilot "Hello"

See Dual Mode for when to use CLI vs extension.

Workspace init

todd init [path]    # creates .toddspect/config.yaml and specs/
todd setup          # bootstrap + AI-DLC install
todd check getGoat  # agent readiness

Updating

  1. Build or download a new .vsix
  2. Install over the previous version (Install from VSIX)
  3. Developer: Reload Window

The bundled CLI inside the extension updates with each VSIX — no separate CLI upgrade.

Uninstall

Extensions view → Todd of AIDLC → Uninstall → Reload.

Workspace data (.toddspect/, VS Code secrets) remains on disk until you delete them.

Clone this wiki locally