Quick Start
Get Reliant running in three steps.
1. Configure Your API Key
Open Settings → AI (or press Cmd+,).
Using Claude Code subscription:
- Run
claude setup-tokenin your terminal - Copy the displayed API key
- Select Anthropic as provider
- Paste the key and click Test Connection
- Click + Add Provider
Using another provider:
- Select your provider (Anthropic, OpenAI, OpenRouter, etc.)
- Enter your API key
- Click Test Connection → + Add Provider
2. Open a Project
Click Open Existing Project and select your code folder. Reliant indexes your files automatically.
Or click Create New Project to start fresh.
3. Start Chatting
Type a message and press Enter:
- “Explain the structure of this project”
- “What does the main file do?”
- “Add input validation to the signup form”
Every chat runs through a workflow—an agent loop that can read, analyze, and modify your code. The default workflow handles most tasks automatically.
Understanding the Interface
Navigation Bar (far left):
- Chats — Your conversations
- Worktrees — Git branch management
- Workflows — Agent configurations
- Settings — Configuration
Sidebar — Context for the selected navigation item
Chat Area — Message input at bottom, conversation history above
Optional: Set Up Memory Files
Memory files provide persistent context to the AI.
Global (all projects): ~/.reliant/reliant.md
# My Coding Guidelines
- Always write tests
- Use descriptive variable namesProject-specific: reliant.md in your project root
# Project Context
- TypeScript/React project
- Uses Prisma for database
- Follow existing patterns in src/componentsLearn more: Memories
Next Steps
- Threads & Branching — How conversations work
- Workflow Control — Pause, resume, and parameter updates
- Workflows — Custom automation