Installation
Agentic Kanban requires VS Code 1.95 or newer (with the chat participant engine standard).
1. GitHub Release VSIX (Recommended)
Section titled “1. GitHub Release VSIX (Recommended)”Download the latest agentic-kanban-<version>.vsix package from GitHub Releases, then install it from your terminal:
code --install-extension agentic-kanban-<version>.vsixAlternatively, inside VS Code:
- Open the Extensions View (
Ctrl+Shift+XorCmd+Shift+X). - Click the
...menu in the top-right corner. - Select Install from VSIX….
- Choose the downloaded
.vsixfile.
2. Build From Source
Section titled “2. Build From Source”If you want to build the extension from source:
- Clone the repository:
Terminal window git clone https://github.com/milzamsz/vscode-agentic-kanban.gitcd vscode-agentic-kanban - Install dependencies:
Terminal window npm ci - Compile the code:
Terminal window npm run build - Package the VSIX:
Terminal window npx @vscode/vsce package - Install the generated VSIX file:
Terminal window code --install-extension agentic-kanban-<version>.vsix