First Session
A detailed walkthrough of your first Conduit session.
Launch and Initial Setup
Start Conduit from your terminal:
conduit
The Interface
You’ll see:
- Sidebar (left) — Projects and workspaces tree
- Tab Bar (top) — Open sessions
- Chat Area (center) — Conversation with the agent
- Input Box (bottom) — Where you type prompts
- Status Bar (bottom) — Token usage, mode, branch info
First-Time Detection
On first run, Conduit checks for:
- Git — Required for all operations
- Agents — Looks for
claude,codex, andgeminiin your PATH
If an agent isn’t found, you can configure its path in settings (s from sidebar).
Creating Your First Project
Open the Project Picker
Press Ctrl+N. The picker shows:
- Recent repositories you’ve worked with
- Fuzzy search as you type
- Option to add a new repository
Select or Add a Repository
For an existing repo:
- Type to filter the list
- Use
Ctrl+K/Ctrl+Jto navigate - Press
Enterto select
To add a new repo:
- Press
Ctrl+A - Enter the path to your repository
- The repo is added to your projects
Workspace Creation
When you select a project, Conduit creates a workspace tied to your current git branch. This workspace stores:
- Session history
- Branch association
- Metadata
Interacting with the Agent
Send Your First Prompt
Type a message and press Enter:
What files are in this project?
The agent will:
- Analyze your request
- Execute tools (file reads, searches, etc.)
- Stream the response to you
Understanding the Response
You’ll see:
- Tool Calls — Commands the agent executes (file reads, writes, bash commands)
- Thinking — The agent’s reasoning (if visible)
- Response — The final answer
Follow-Up Questions
Continue the conversation naturally:
Can you explain how the main function works?
The agent maintains context from previous messages.
Managing Your Session
Scroll Through History
Page Up/Page Down— Scroll the chatg/G— Jump to top/bottom (in scroll mode)Esc— Return to the bottom
Interrupt the Agent
If an agent is taking too long:
- Press
Ctrl+Conce to clear the input - Press
Ctrl+Ctwice quickly to interrupt the agent
Switch Modes
Press Tab to toggle between:
- Build Mode — Full capabilities
- Plan Mode — Read-only analysis
Plan mode is enforced by Claude Code; for Codex and Gemini it’s a best-effort prompt reminder.
Saving and Resuming
Automatic Saving
Sessions are automatically saved to the database. When you close Conduit, your conversation is preserved.
Resume a Session
- Open Conduit
- Navigate to your project in the sidebar
- Select the workspace — your session continues where you left off
Import External Sessions
Press Alt+I to import sessions from:
- Claude Code sessions (from
~/.claude/) - Codex sessions
Closing Up
Close a Tab
Press Alt+Shift+W to close the current tab.
Quit Conduit
Press Ctrl+Q to exit. Your session is automatically saved.
Tips for Effective Sessions
- Be specific — Clear prompts get better results
- Use Plan mode first — Analyze before making changes
- Check the status bar — Monitor token usage and costs
- Multiple tabs — Run different tasks in parallel
- Use the command palette —
Ctrl+Pfor quick access to actions
Next Steps
- Core Concepts — Understand projects, workspaces, sessions
- Keyboard Shortcuts — Master the interface
- Configuration — Customize your experience