Last active
January 28, 2026 13:48
-
-
Save zsnmwy/457499f65a6d25c382ee78cc2ae44152 to your computer and use it in GitHub Desktop.
~/.config/opencode/oh-my-opencode.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json", | |
| "google_auth": false, | |
| "tmux": { | |
| "enabled": true, | |
| "layout": "main-vertical", | |
| "main_pane_size": 60, | |
| "main_pane_min_width": 120, | |
| "agent_pane_min_width": 40 | |
| }, | |
| "agents": { | |
| "sisyphus": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "sisyphus-junior": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "prometheus": { | |
| "disable": false, | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "plan": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "oracle": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "atlas": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "OpenCode-Builder": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "metis": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "momus": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "librarian": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "medium" | |
| }, | |
| "explore": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "low" | |
| }, | |
| "frontend-ui-ux-engineer": { | |
| "model": "google/gemini-3-pro-preview" | |
| }, | |
| "document-writer": { | |
| "model": "google/gemini-3-flash-preview" | |
| }, | |
| "multimodal-looker": { | |
| "model": "google/gemini-3-flash-preview" | |
| }, | |
| "General": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "medium" | |
| } | |
| }, | |
| "categories": { | |
| "general": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| }, | |
| "visual-engineering": { | |
| "model": "google/gemini-3-pro-preview" | |
| }, | |
| "artistry": { | |
| "model": "google/gemini-3-pro-preview" | |
| }, | |
| "writing": { | |
| "model": "google/gemini-3-flash-preview" | |
| }, | |
| "quick": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "none" | |
| }, | |
| "unspecified-low": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "medium" | |
| }, | |
| "unspecified-high": { | |
| "model": "openai/gpt-5.2-codex", | |
| "variant": "xhigh" | |
| } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tmux Shell
后台任务可以单独显示在面板里面,当跑完之后,又回自己关闭。
这个能力依托于 opencode 的远程attach。
版本要求在
v3.1.0之后,可以将版本直接设置成latesthttps://github.com/code-yeongyu/oh-my-opencode/releases/tag/v3.1.0
~/.config/opencode/oh-my-opencode.json{ "tmux": { "enabled": true, "layout": "main-vertical", "main_pane_size": 60, "main_pane_min_width": 120, "agent_pane_min_width": 40 } }下面的脚本可以加入到
.zshrc或者.bashrc中,输入oc即可享受该 feature。