Skip to content

Installation

Agentic Kanban requires VS Code 1.95 or newer (with the chat participant engine standard).


Download the latest agentic-kanban-<version>.vsix package from GitHub Releases, then install it from your terminal:

Terminal window
code --install-extension agentic-kanban-<version>.vsix

Alternatively, inside VS Code:

  1. Open the Extensions View (Ctrl+Shift+X or Cmd+Shift+X).
  2. Click the ... menu in the top-right corner.
  3. Select Install from VSIX….
  4. Choose the downloaded .vsix file.

If you want to build the extension from source:

  1. Clone the repository:
    Terminal window
    git clone https://github.com/milzamsz/vscode-agentic-kanban.git
    cd vscode-agentic-kanban
  2. Install dependencies:
    Terminal window
    npm ci
  3. Compile the code:
    Terminal window
    npm run build
  4. Package the VSIX:
    Terminal window
    npx @vscode/vsce package
  5. Install the generated VSIX file:
    Terminal window
    code --install-extension agentic-kanban-<version>.vsix