Menu
Install from Marketplace View on GitHub
100% free · all local · open source

Stop waiting.
Start parallelizing.

Manage multiple, isolated AI coding sessions directly inside VS Code. Claude Code and Codex CLI out of the box. No context contamination. No broken git states.

lanes — VS Code

Capabilities

Everything you need for parallel AI coding

Built for developers who run multiple AI coding agents without the chaos of conflicting file changes.

True Git Isolation

Each session runs in its own Git Worktree. File changes in one lane never leak into another. Switch contexts without stash/pop headaches.

Session Resume

Closing VS Code? No problem. Lanes remembers your active sessions and resumes them exactly where you left off using --resume.

Real-Time Status

See at a glance which agents are waiting, working, or have errors. Auto-configured hooks keep you informed.

Git Changes Viewer

Review all changes with a built-in diff viewer. Compare against any branch and add code review comments before merging.

Easy Session Setup

Create sessions with a form: choose your agent, set a name, starting prompt, attach files, select source branch and permission mode.

One-Click Cleanup

Done with a session? Delete the worktree and terminal with one click. Your git branch stays intact and ready to merge.

And more

Open sessions in new windows
Permission mode selector
Previous sessions with saved prompts
Container-ready with worktree repair
Multi-agent support
File attachments via drag-and-drop
Tmux terminal backend
Local settings propagation

Workflow

How it works

1

Create a session

Open the Lanes sidebar, choose your agent (Claude Code or Codex CLI), fill in a session name like fix-login-bug, your starting prompt, and optionally attach files.

2

Automatic isolation

Lanes creates a hidden Git worktree (.worktrees/fix-login-bug), spawns a dedicated terminal, and launches Claude with your prompt.

3

Work in parallel

Create as many sessions as you need. Each agent works on its own isolated copy of the codebase. No conflicts, no context contamination.

4

Review & merge

Use the built-in Git Changes viewer to review all modifications. Delete the session when satisfied — worktree removed, branch preserved, ready to merge.

Automation

Structured workflow system

MCP-based workflows that guide Claude through structured phases: Plan → Implement → Test → Review. Built on Anthropic's research for long-running agent reliability.

workflow.yaml
name: Feature Development Workflow
description: Structured workflow with plan, implement, test, review

agents:
    coder:
        description: Responsible for implementing features
    test-engineer:
        description: Responsible for writing and executing tests

loops:
    implement:
        - id: programming
          agent: coder
          instructions: Implement feature...
        - id: testing
          agent: test-engineer
          instructions: Write tests...

steps:
  - id: plan
    type: action
    instructions: Analyze goal and break into features...

  - id: implement
    type: loop

  - id: review
    type: action
    instructions: Review all changes...

Structured Phases

Plan → implement → test → review with clear checkpoints

Agent Specialization

Dedicated agents for coding, testing, and reviewing

Progress Tracking

MCP integration tracks state across context windows

Setup

Prerequisites

You'll need at least one coding agent installed.

Install Claude Code

$ npm install -g @anthropic-ai/claude-code
$ claude login

Lanes is free. Use your own Claude Code subscription (Pro, Team, or Enterprise).

Install Codex CLI Optional

$ npm install -g @openai/codex

Use your own OpenAI API key to run Codex CLI sessions alongside Claude Code.

Ready to parallelize?

Install Lanes from the VS Code Marketplace and start running multiple agents today.

Install Lanes