1. Connect an AI provider
Open Settings → AI.- Select your provider: Anthropic, OpenAI, OpenRouter, Codex, and others.
- Authenticate:
- Most providers: enter an API key, then click Test Connection and Add Provider.
- Codex provider: click Login with Codex and complete OAuth in your browser.
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”
4. Run a built-in workflow
This is where Reliant gets different. Instead of manually driving each step, pick a workflow and let agents execute a defined process. Click the workflow selector (defaults to “Agent”) and try one of these:| Workflow | When to use it | What happens |
|---|---|---|
| gsd | You have a clear feature to build | Discuss → research → plan → parallel implementation → verify |
| superpowers | You want test-driven development | Brainstorm → plan → write failing tests → implement → review |
| simplify-first | You’re working in messy code | Analyze simplifications → refactor → verify → then build |
| spec-driven | You want to nail requirements first | Write spec → plan approach → implement |
| get-it-right | Complex change in a large codebase | Attempt → evaluate → improve/restart → diagnose → final implementation |
5. Build your own workflow
Create a YAML file in your project to define a custom process:.reliant/workflows/review-and-refactor.yaml
The interface
| Area | Purpose |
|---|---|
| Navigation Bar | Chats, Worktrees, Workflows, Settings |
| Sidebar | Context for the selected navigation item |
| Chat Area | Message input at bottom, history above |
Execution modes
Control how much autonomy the agent has:| Mode | Behavior |
|---|---|
| Auto | Executes tools without asking. Press Escape to cancel. |
| Manual | Asks for approval before each tool execution. |
| Plan | Read-only tools only — explores but doesn’t change anything. |
Optional: memory files
Memory files provide persistent context to the AI across conversations. Global:~/.reliant/reliant.md
reliant.md in your project root
Next steps
- Key Concepts — Understand the essential terms
- Workflows Overview — How workflows power Reliant
- Workflow Control — Pause, resume, and live parameter updates
- Creating Custom Workflows — Build your own
- Use Cases — Real-world workflow examples