Menu
Install from Marketplace View on GitHub

Documentation

Everything you need to get started with Lanes.

Installation

Lanes is available for VS Code, JetBrains IDEs, and as a standalone CLI. Choose your preferred platform below.

VS Code Stable

Install from the VS Code Marketplace or Open VSX Registry.

From source:

$ git clone https://github.com/FilipeJesus/lanes.git
$ cd lanes && npm install
$ npm run compile && npx vsce package
# Install the .vsix via "Extensions: Install from VSIX..."

JetBrains IDEs Beta

Supports IntelliJ IDEA, WebStorm, PyCharm, GoLand, and other JetBrains 2024.1+ IDEs. Currently available from source only.

$ git clone https://github.com/FilipeJesus/lanes.git
$ cd lanes && npm install && npm run compile
$ cd jetbrains-ide-plugin
$ ./gradlew buildPlugin
# Install from jetbrains-ide-plugin/build/distributions/

Standalone CLI Stable

Manage sessions directly from the terminal. No IDE required.

$ git clone https://github.com/FilipeJesus/lanes.git
$ cd lanes && npm install && npm run compile
$ npm link
$ lanes --help

Prerequisites (All Platforms)

  • A Git repository (git init if needed)
  • At least one coding agent installed:
    • Claude Codenpm install -g @anthropic-ai/claude-code
    • Codex CLI (optional) — npm install -g @openai/codex
    • Gemini CLI (optional) — npm install -g @google/gemini-cli
  • jq installed for status tracking

Note: Lanes supports macOS and Linux. Windows is not yet supported (WSL may work).