docs: fix oh-my-opencode integration (use categories, simplify model names)#349
docs: fix oh-my-opencode integration (use categories, simplify model names)#349sunbos wants to merge 1 commit intoNoeFabris:devfrom
Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Greptile OverviewGreptile SummaryThis PR corrects Oh-My-OpenCode integration documentation by fixing two critical configuration issues:
The changes are applied consistently to both the "Using with Oh-My-OpenCode" section (line 384) and the "Plugin Compatibility - oh-my-opencode" section (line 526). The Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant OhMyOpenCode as Oh-My-OpenCode
participant Config as oh-my-opencode.json
participant AntigravityAuth as Antigravity Auth Plugin
participant GoogleAPI as Google Gemini API
Note over User,GoogleAPI: Configuration Setup
User->>Config: Configure with categories
Note over Config: categories: {<br/> visual-engineering: gemini-3-pro<br/> writing: gemini-3-flash<br/>}
Note over Config: agents: {<br/> multimodal-looker: gemini-3-flash<br/>}
Config->>OhMyOpenCode: Load configuration
Note over User,GoogleAPI: Dynamic Role Assignment
OhMyOpenCode->>Config: Read categories for dynamic roles
OhMyOpenCode->>Config: Read agents for static agents
Note over OhMyOpenCode: Categories apply to dynamic roles<br/>(visual-engineering, writing)<br/>Agents apply to static agents<br/>(multimodal-looker)
Note over User,GoogleAPI: Model Request Flow
User->>OhMyOpenCode: Request visual-engineering task
OhMyOpenCode->>AntigravityAuth: Use google/gemini-3-pro
AntigravityAuth->>GoogleAPI: Authenticate with OAuth
GoogleAPI-->>AntigravityAuth: Return response
AntigravityAuth-->>OhMyOpenCode: Forward response
OhMyOpenCode-->>User: Task completed
|
|
@sunbos could you check and resolve the conflicts pls? |
Description
Fixes incorrect configuration examples for Oh-My-OpenCode integration.
Changes
agentsconfiguration for dynamic roles (frontend-ui-ux-engineer,document-writer) with the correctcategoriesconfiguration (visual-engineering,writing).antigravity-prefix from model names to align with the new v1.4.4 naming convention (e.g.,google/gemini-3-pro).Why this change?
agents. They must be configured viacategoriesto take effect.Supersedes #346.