Installation
Download
Section titled “Download”Claudette is available as a pre-built binary from GitHub Releases.
| Platform | Architecture | Format |
|---|---|---|
| macOS | Apple Silicon (aarch64) | .dmg |
| macOS | Intel (x86_64) | .dmg |
| Linux | x86_64 | .AppImage, .deb |
- Download the appropriate binary for your platform from the latest release
- macOS: Open the
.dmgand drag Claudette to your Applications folder - Linux: Run the
.AppImagedirectly or install the.debpackage
Prerequisites
Section titled “Prerequisites”Before using Claudette, ensure you have Claude Code installed and authenticated:
# Install Claude Code if you haven't already# See: https://docs.anthropic.com/en/docs/claude-code
# Authenticate with your Anthropic accountclaude /loginBuild from Source
Section titled “Build from Source”If you prefer to build from source, you’ll need:
- Rust (stable toolchain, edition 2024)
- Bun (JavaScript runtime and package manager)
- Tauri CLI:
cargo install tauri-cli --version "^2"
Platform dependencies:
xcode-select --installsudo apt install libwebkit2gtk-4.1-dev build-essential curl wget file \ libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-devBuild steps:
# Clone the repositorygit clone https://github.com/utensils/Claudette.gitcd Claudette
# Install frontend dependenciescd src/ui && bun install && cd ../..
# Build optimized release binarycargo tauri buildThe compiled binary will be in src-tauri/target/release/.