All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
2.0.0 - 2025-01-24
This is a major release that rewrites the core CLI from TypeScript/Node.js to Go, delivering substantial performance improvements and better user experience.
- Native Go binary - Complete rewrite of the CLI in Go, eliminating Node.js runtime dependency
- Single binary distribution - Self-contained executable with no external dependencies
- Cross-platform support - Pre-built binaries for Darwin/Linux on AMD64/ARM64 architectures
- GitHub Actions release workflow - Automated builds and releases
- Install script - One-line installation via curl
coders tui- Interactive terminal UI built with Bubbleteacoders spawn- Spawn new coding sessionscoders list- List all sessions with JSON output supportcoders attach- Attach to running sessionscoders kill- Terminate sessionscoders promise- Publish completion promisescoders resume- Resume completed sessionscoders orchestrator- Manage orchestrator sessioncoders init- Initialize coders in a projectcoders heartbeat- Session monitoring and health checkscoders version- Display version information
- Loop runner (
/coders:loop) - Automatically spawn tasks from todolist with recursive execution - Ollama backend support - Run sessions using Ollama with
--ollamaflag - Configuration file support - YAML configuration for customization
- Structured logging - Zerolog integration for better debugging
- Automatic crash recovery - Sessions auto-restart on error
- Live preview panel - Two-way communication in TUI with real-time session output
- Health check system - Monitor session liveness and status
- Interactive navigation - Vim-style keybindings (j/k) and arrow keys
- Session management - Spawn, attach, kill, resume directly from TUI
- Status visualization - Real-time status updates with color-coded indicators
- Bulk operations - Kill all completed sessions with
Ckey - Smart quit behavior - Auto-switch to orchestrator when quitting TUI
- Session filtering - Filter by status (active/completed/error)
- ~20x faster startup - Go binary starts in ~2ms vs Node.js ~40ms
- Instant command response - No runtime initialization overhead
- Dirty tracking - Only re-render changed components
- Style pre-caching - Lipgloss styles cached to avoid recomputation
- String builder usage - Efficient string concatenation for progress bars and status
- ANSI-aware width caching - Cached calculations for terminal width handling
- Pre-calculated sort keys - Optimized session list sorting
- Non-blocking Redis - Async Redis client initialization
- Spawn args pre-allocation - Reduced memory allocations
- Optimized liveness checking - Faster process detection with combined checks
- Faster polling - Improved spawn CLI detection
- Removed TypeScript TUI - Replaced with faster Go implementation
- Binary distribution model - Plugin now bundles pre-built Go binaries for all platforms
- Build process - Makefile-based build system with comprehensive targets
packages/
├── go/ # Go CLI implementation
│ ├── cmd/coders/ # CLI entry points
│ ├── internal/ # Internal packages
│ │ ├── tui/ # Bubbletea TUI
│ │ ├── tmux/ # Tmux integration
│ │ ├── redis/ # Redis client
│ │ └── types/ # Shared types
│ └── Makefile # Build system
└── plugin/ # Claude Code plugin (TypeScript)
└── bin/ # Pre-built Go binaries
make build- Build for current platformmake build-all- Cross-compile for all platformsmake test- Run test suite with coveragemake watch- Auto-rebuild on changesmake lint- Code quality checks
- No breaking changes to commands - All existing commands work identically
- Automatic binary selection - Plugin automatically uses correct binary for your platform
- Update via plugin system - Run
/plugin:update codersto get the latest version
- Go 1.21+ required - For building from source
- Makefile build targets - See
make helpfor all available commands - Cross-compilation - Build for all platforms with single command
- Go standard library
- Bubbletea - TUI framework
- Lipgloss - Terminal styling
- Cobra - CLI framework
- Zerolog - Structured logging
- Redis client (go-redis)
1.3.0 - 2025-01-15
- Promise system for tracking coder session completion
/coders:promisescommand to check completion status- Dashboard improvements with session sorting and textarea input
- Claude Code usage statistics in TUI
- Sessions now automatically report completion promises
- Dashboard sorts sessions by creation time
1.2.0 - 2024-12-20
- Hybrid
--system-promptsupport for better customization - Comprehensive test coverage for prompt handling
1.1.0 - 2024-12-15
- Initial release of TypeScript-based CLI
- Basic TUI implementation
- Session spawning and management
- Redis integration for state management
- Multi-agent support (Claude, Gemini, Codex, OpenCode)