Quickstart
Get started with Intent once you have access.
Intent is currently available to design partners. Once you have access, you can initialize Intent in your project and start capturing decisions in minutes.
Get Access
Intent is in early access. To get started:
- Become a design partner — Schedule a call and we'll get you set up
- Receive your credentials — We'll provide installation instructions and access tokens
- Install the CLI — Follow the personalized setup we send you
Already a design partner? Continue below.
Install the CLI
After receiving access, install the Intent CLI using the instructions provided to you:
# Installation command provided in your onboarding
intent version # Verify installationInitialize a Project
Navigate to your project directory and initialize Intent:
cd your-project
intent initThis creates the .intent/ directory and starts the background daemon. The daemon runs automatically and watches for file changes and AI sessions.
What intent init Creates
.intent/
├── config.json # Project configuration
├── episodes.db # Episode metadata
├── active-episode # Current episode name
├── episodes/
│ └── main/ # Default episode
│ ├── db/
│ │ └── journal.db # Event log
│ └── crdt-storage/ # Version history per file
├── service.log # Daemon logs
├── service.pid # Process ID
└── service.sock # Unix socket for CLI communicationConfigure Your LLM
Intent uses an LLM for decision enrichment—generating summaries of intent, approach, and impact for each exchange. Configure your Anthropic API key:
intent configure llmThis enables automatic enrichment of captured sessions.
Verify It's Working
Check the daemon status:
intent statusYou should see:
- Daemon: running
- Episode: main (active)
- Watcher: monitoring files
Start Using AI Tools
Now work with your AI coding tools as normal. Intent automatically captures sessions from:
- Claude Code
- Cursor CLI
- Codex CLI
- Gemini CLI
As you work, Intent:
- Monitors file changes in real-time
- Extracts file operations from AI sessions
- Correlates changes to the exchanges that created them
- Generates decision enrichments with augmented summaries
Explore Your History
After a coding session, launch the Intent TUI to explore what was captured:
intent -iThe TUI provides a visual interface to browse your decision history, view session timelines, and explore the reasoning behind your code changes.