Desktop app for managing multiple Claude Code sessions in parallel.
Opslane lets you work on multiple projects simultaneously with Claude AI assistance. Each session runs in an isolated Docker container, allowing you to experiment, iterate, and develop features without affecting your local repositories.
Claude can work on different features across multiple projects, review changes in real-time, and selectively apply them to your local codebase when ready.
- π Multi-Session Management - Work on multiple projects simultaneously with isolated sessions
- π Live Diff Viewer - Review all file changes with syntax highlighting before applying
- π Two-Way Sync - Optional bidirectional file synchronization between container and local repo
- π¦ Docker Isolation - Each session runs in its own container with resource limits
- π Session Archiving - Preserve completed sessions for future reference
- Node.js 18+
- Rust 1.77+
- Docker Desktop (running)
- Claude Code CLI with OAuth credentials configured
git clone https://github.com/opslane/opslane.git
cd opslane
npm install
npm run tauri:devThe app will launch with hot reload enabled for development.
- Click "New Session" in the app
- Select a local Git repository
- Describe your task (e.g., "Add user authentication")
- Choose a Claude model (Sonnet, Opus, or Haiku)
- Click "Start Session"
Claude will begin working in an isolated container while you monitor progress in real-time.
- Create Session - Select project directory, describe task, choose Claude model
- Claude Works - AI reads files, edits code, runs commands in isolated container
- Review Changes - View diffs in real-time with syntax highlighting
- Sync to Local - Apply container changes to your local repository when ready
- Archive - Preserve session history for future reference
Each session is completely isolated - experiments in one session never affect others or your local files until you explicitly sync changes.
- Backend: Tauri 2.0 (Rust)
- Frontend: React 19 + TypeScript
- Database: SQLite
- Styling: Tailwind CSS 4
- Build Tool: Vite 5
# Start development server with hot reload
npm run tauri:dev
# Run frontend only (UI development)
npm run dev
# Type checking
npm run typecheck
# Linting
npm run lint
# Build for production
npm run tauri:buildSee CONTRIBUTING.md for detailed development guidelines, including how to add Tauri commands and submit pull requests.
- Product Requirements - Product vision and goals
- Architecture - System architecture and design
- Design Principles - Core design philosophy
- UX Design - User experience and interaction design
- Database Schema - Data models and migrations
- Milestones - Implementation roadmap
opslane/
βββ src/ # React frontend
β βββ components/ # UI components
β βββ hooks/ # Custom React hooks
β βββ lib/ # Utilities and helpers
β βββ types/ # TypeScript types
βββ src-tauri/ # Rust backend
β βββ migrations/ # SQLite migrations
β βββ src/
β βββ commands/ # Tauri IPC commands
β βββ services/ # Business logic
β βββ models/ # Data structures
βββ specs/ # Product documentation
Having issues? Check the Troubleshooting Guide for solutions to common problems:
- Docker not running
- Port conflicts
- Rust compilation errors
- Hot reload issues
- Session creation failures
- π Documentation
- π Issue Tracker
- π¬ Discord community - TODO
We welcome contributions! Please see CONTRIBUTING.md for guidelines on:
- Development setup
- Code style and standards
- Adding new features
- Submitting pull requests
MIT License - see LICENSE file for details.