Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ workflow*/
!internal/workflow/
!pkg/workflow/
.claude/
test-results/

# Binaries for programs and plugins
*.exe
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Download the latest binary for your platform from the [releases page](https://gi
# If a fresh installation (configures default provider, default MCP servers, etc)
opun setup

# Initialize a chat session with the default provider -- or, specify the provider (chat {gemini,claude})
# Initialize a chat session with the default provider -- or, specify the provider (chat {gemini,claude,qwen})
opun chat

# Add a workflow, tool or prompt -- this is interactive, no need for flags (--{prompt,workflow} --path --name)
Expand Down Expand Up @@ -123,7 +123,7 @@ agents:
# First agent: Initial code analysis
- id: analyzer # Unique ID for referencing this agent
name: "Code Analyzer" # Human-readable name displayed during execution
provider: claude # AI provider: claude or gemini
provider: claude # AI provider: claude, gemini, or qwen
model: sonnet # Model variant (provider-specific)

# The prompt is the instruction sent to the AI agent
Expand Down Expand Up @@ -446,6 +446,7 @@ command: "rg --type-add 'code:*.{js,ts,go,py,java,rs,cpp,c,h}' -t code"
providers:
- claude
- gemini
- qwen

---

Expand Down Expand Up @@ -601,6 +602,7 @@ export MAX_FILE_SIZE="1000000"
# Provider-specific settings
export CLAUDE_MODEL="sonnet"
export GEMINI_TEMPERATURE="0.7"
export QWEN_MODEL="code"
```

**Using in Configurations**:
Expand Down
Loading
Loading