Installation
Craft Agents is a native desktop application. It runs locally on your machine, stores credentials encrypted on disk, and connects to external services only when you configure sources.
System Requirements
Section titled “System Requirements”| Platform | Architectures | Notes |
|---|---|---|
| macOS | Apple Silicon (arm64) | macOS 11+. Intel Macs are not supported from v0.10.1 onward (v0.10.0 was the final Intel build). |
| Windows | x64 | Windows 10+ |
| Linux | x64 | AppImage format, requires FUSE |
Manual Install (Recommended)
Section titled “Manual Install (Recommended)”Apple Silicon (M1/M2/M3/M4):
https://thecraftagents.com/electron/latest/Craft-Agents-arm64.dmg- Download the
.dmg - Open the DMG and drag Craft Agent to Applications
- Launch from Applications or Spotlight (
CMD+Space, type “Craft Agent”)
Download:
https://thecraftagents.com/electron/latest/Craft-Agents-x64.exe- Download and run the installer
- Follow the installation prompts (installs to
%LOCALAPPDATA%\Programs\Craft Agent) - Launch from Start menu or desktop shortcut
Download:
https://thecraftagents.com/electron/latest/Craft-Agents-x64.AppImage- Download the AppImage
- Make it executable:
chmod +x Craft-Agents-x64.AppImage - Run:
./Craft-Agents-x64.AppImage
Script Install
Section titled “Script Install”For automated installation with checksum verification:
curl -fsSL https://thecraftagents.com/install-app.sh | bashThis downloads, verifies, and installs Craft Agents automatically.
irm https://thecraftagents.com/install-app.ps1 | iexRun in PowerShell. Downloads, verifies checksum, and runs the installer.
Build from Source
Section titled “Build from Source”Craft Agents is open source. To build from source:
Prerequisites
Section titled “Prerequisites”Clone and Build
Section titled “Clone and Build”# Clone the repositorygit clone https://github.com/lukilabs/craft-agents-oss.gitcd craft-agents-oss
# Install dependenciesbun install
# Development mode (hot reload)bun run electron:dev
# Production build (build and run)bun run electron:startBuild Installers
Section titled “Build Installers”# Apple Siliconbash apps/electron/scripts/build-dmg.sh arm64Output: apps/electron/release/Craft-Agents-arm64.dmg
powershell -ExecutionPolicy Bypass -File apps/electron/scripts/build-win.ps1Output: apps/electron/release/Craft-Agents-x64.exe
bash apps/electron/scripts/build-linux.sh x64Output: apps/electron/release/Craft-Agents-x64.AppImage
Launch
Section titled “Launch”After installation:
- macOS — Applications folder or Spotlight (
CMD+Space, type “Craft Agent”) - Windows — Start menu, desktop shortcut, or
craft-agentsin terminal - Linux — Run
craft-agentsfrom terminal (if installed via script) or run the AppImage directly
First launch opens the setup wizard.
Next Steps
Section titled “Next Steps”Add Sources
Connect GitHub, Linear, APIs, and local files to extend what the agent can access.
Optimize command output with RTK
Install RTK and enable Settings → AI → Performance → Token Optimization for command-heavy coding sessions.