Quick Start
Get Chloe running in your project in under 5 minutes.
Prerequisites
- Claude Pro/Max subscription
- Claude Code CLI -
npm install -g @anthropic-ai/claude-code - A project directory where you want to use Chloe
Installation
One-Line Install
The fastest way to get started:
curl -fsSL getchloe.sh/install.sh | bashThis downloads the latest release and installs it to your path.
Starting Your First Session
Initialize Your Project
Navigate to your project directory and initialize Chloe:
cd your-project
chloe initThis creates a .chloe/ directory to store your tasks and configurations. The directory is automatically added to .gitignore.
Launch Chloe
Start Chloe:
chloeYou’ll see the main interface with four tabs:
- Tasks - Your Kanban board
- Instances - Terminal panes
- Roadmap - Project planning
- Worktree - Git worktree management
Create Your First Task
- Press
ato add a new task - Type your task description
- Press
Enterto save
The task appears in the “To Do” column.
Open a Terminal Instance
- Press
2to switch to the Instances tab - Press
cto create a new terminal pane - Start Claude Code or any other command
Link Task to Instance
- Press
1to go back to Tasks - Navigate to your task with
h/j/k/lor arrow keys - Press
Enterto move it to “In Progress” - The task is now linked to your active instance
Data Storage
Chloe stores all state in .chloe/state.json in your project directory:
- Tasks and their statuses
- Instance configurations
- Roadmap items
- View settings
What’s Next?
- Learn all the Keybinds
- See Common Workflows for practical examples
Last updated on