Skip to main content
Get Reliant running, chat with your codebase, and run your first workflow.

1. Connect an AI provider

Open Settings → AI.
  1. Select your provider: Claude Code, Codex, Anthropic, OpenAI, OpenRouter, and others.
  2. Authenticate:
    • Most providers: enter an API key, then click Test Connection and Add Provider.
    • Claude Code or Codex: click Login and complete OAuth in your browser.
Using the web UI instead of the desktop app? Run reliant auth serve in your terminal first — OAuth needs a localhost helper. See Provider Authentication for details.

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”
This is the default agent workflow running. Your message goes to the LLM, the LLM calls tools (read files, search code, make edits, run commands), results go back to the LLM, and it loops until the task is done. So far this is like any other ADE.

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: Select a workflow, type your request, and watch multiple agents collaborate on the task.

5. Build your own workflow

Create a YAML file in your project to define a custom process:
.reliant/workflows/review-and-refactor.yaml
This workflow: criticizes the code → refactors based on its own critique → runs tests to verify nothing broke. Three steps, zero manual intervention. See Creating Custom Workflows for the full guide.

The interface

Execution modes

Control how much autonomy the agent has with Auto (full autonomy), Manual (approve each action), or Plan (read-only exploration). You can switch modes mid-conversation — a common pattern is to start in Plan mode to analyze, then switch to Auto to execute. See Execution Modes for details.

Optional: memory files

Memory files provide persistent context to the AI across conversations. Global: ~/.reliant/reliant.md
Project-specific: reliant.md in your project root
Learn more: Memories & Context

Next steps