Compare commits
31 Commits
codex
...
c89fef8381
| Author | SHA1 | Date | |
|---|---|---|---|
| c89fef8381 | |||
| 74af1b6c76 | |||
| 7e41c54a0c | |||
| edb4d1504f | |||
| 9c5bfe4c86 | |||
| e441ac80b2 | |||
| fc042a48c5 | |||
| c893707c94 | |||
| 0c95def9f1 | |||
| fc15e5d63f | |||
| 5d8b068604 | |||
| e9fb5713b1 | |||
| 200c3fe5f8 | |||
| e7aeec46f2 | |||
| ff6d5f89be | |||
| f886e6b440 | |||
| 2d6c198df8 | |||
| 571f658c0c | |||
| a9a279f068 | |||
| 6d78aef5a4 | |||
| 888a0eb2b4 | |||
| b9653d78a6 | |||
| 6d8635c1ac | |||
| abea1e52c0 | |||
| 6f832d3d8c | |||
| 51e11f7582 | |||
| 4eadc3b3e9 | |||
| aa4a96626c | |||
| a0c1d889d8 | |||
| 0b77e65186 | |||
| 1be7ac925d |
11
.env.example
11
.env.example
@@ -1,5 +1,10 @@
|
||||
CPA_API_KEY=
|
||||
# Provider
|
||||
LITELLM_BASE_URL=https://ai.furtherverse.com
|
||||
LITELLM_API_KEY=
|
||||
|
||||
# MCP
|
||||
EXA_API_KEY=
|
||||
CONTEXT7_API_KEY=
|
||||
# Windows only
|
||||
OPENCODE_GIT_BASH_PATH=%USERPROFILE%\scoop\shims\bash.exe
|
||||
|
||||
# Windows
|
||||
OPENCODE_GIT_BASH_PATH=%USERPROFILE%\scoop\apps\git\current\bin\bash.exe
|
||||
|
||||
12
.vscode/settings.json
vendored
12
.vscode/settings.json
vendored
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.biome": "explicit",
|
||||
"source.organizeImports.biome": "explicit"
|
||||
},
|
||||
"editor.formatOnSave": true,
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "biomejs.biome"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "biomejs.biome"
|
||||
}
|
||||
},
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.biome": "explicit",
|
||||
"source.organizeImports.biome": "explicit"
|
||||
},
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
|
||||
@@ -11,7 +11,8 @@
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentStyle": "space",
|
||||
"indentWidth": 2
|
||||
"indentWidth": 2,
|
||||
"lineWidth": 120
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
|
||||
@@ -1,79 +1,26 @@
|
||||
// bunx oh-my-opencode doctor --verbose
|
||||
{
|
||||
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
||||
"agents": {
|
||||
// ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/AGENTS.md#agent-models
|
||||
"sisyphus": {
|
||||
"model": "cpa-anthropic/claude-opus-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
"hephaestus": {
|
||||
"model": "cpa-openai/gpt-5.3-codex",
|
||||
"variant": "medium"
|
||||
},
|
||||
"atlas": {
|
||||
"model": "cpa-anthropic/claude-sonnet-4-5"
|
||||
},
|
||||
"oracle": {
|
||||
"model": "cpa-openai/gpt-5.2",
|
||||
"variant": "high"
|
||||
},
|
||||
"librarian": {
|
||||
"model": "cpa-google/gemini-3-flash"
|
||||
},
|
||||
"explore": {
|
||||
"model": "cpa-google/gemini-3-flash"
|
||||
},
|
||||
"multimodal-looker": {
|
||||
"model": "cpa-google/gemini-3-flash"
|
||||
},
|
||||
"prometheus": {
|
||||
"model": "cpa-anthropic/claude-opus-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
"metis": {
|
||||
"model": "cpa-anthropic/claude-opus-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
"momus": {
|
||||
"model": "cpa-openai/gpt-5.2",
|
||||
"variant": "medium"
|
||||
},
|
||||
"sisyphus-junior": {
|
||||
"model": "cpa-anthropic/claude-sonnet-4-5"
|
||||
}
|
||||
"sisyphus": { "model": "anthropic/claude-opus-4-6", "variant": "high" },
|
||||
"hephaestus": { "model": "openai/gpt-5.3-codx", "variant": "medium" },
|
||||
"oracle": { "model": "openai/gpt-5.4", "variant": "high" },
|
||||
"librarian": { "model": "google/gemini-3-flash-preview" },
|
||||
"explore": { "model": "litellm/grok-code-fast-1" },
|
||||
"multimodal-looker": { "model": "openai/gpt-5.4", "variant": "medium" },
|
||||
"prometheus": { "model": "anthropic/claude-opus-4-6", "variant": "high" },
|
||||
"metis": { "model": "anthropic/claude-opus-4-6", "variant": "high" },
|
||||
"momus": { "model": "openai/gpt-5.4", "variant": "xhigh" },
|
||||
"atlas": { "model": "anthropic/claude-sonnet-4-6" }
|
||||
},
|
||||
"categories": {
|
||||
// ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/category-skill-guide.md#available-built-in-categories
|
||||
"visual-engineering": {
|
||||
"model": "cpa-google/gemini-3-pro",
|
||||
"variant": "high"
|
||||
},
|
||||
"ultrabrain": {
|
||||
"model": "cpa-openai/gpt-5.3-codex",
|
||||
"variant": "xhigh"
|
||||
},
|
||||
"deep": {
|
||||
"model": "cpa-openai/gpt-5.3-codex",
|
||||
"variant": "medium"
|
||||
},
|
||||
"artistry": {
|
||||
"model": "cpa-google/gemini-3-pro",
|
||||
"variant": "high"
|
||||
},
|
||||
"quick": {
|
||||
"model": "cpa-google/gemini-3-flash"
|
||||
},
|
||||
"unspecified-low": {
|
||||
"model": "cpa-anthropic/claude-sonnet-4-5"
|
||||
},
|
||||
"unspecified-high": {
|
||||
"model": "cpa-anthropic/claude-opus-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
"writing": {
|
||||
"model": "cpa-google/gemini-3-flash"
|
||||
}
|
||||
"visual-engineering": { "model": "google/gemini-3.1-pro-preview", "variant": "high" },
|
||||
"ultrabrain": { "model": "openai/gpt-5.3-codex", "variant": "xhigh" },
|
||||
"deep": { "model": "openai/gpt-5.3-codex", "variant": "medium" },
|
||||
"artistry": { "model": "google/gemini-3.1-pro-preview", "variant": "high" },
|
||||
"quick": { "model": "anthropic/claude-haiku-4-5" },
|
||||
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
|
||||
"unspecified-high": { "model": "openai/gpt-5.4", "variant": "high" },
|
||||
"writing": { "model": "google/gemini-3-flash-preview" }
|
||||
},
|
||||
"git_master": {
|
||||
"commit_footer": false,
|
||||
|
||||
197
opencode.jsonc
197
opencode.jsonc
@@ -1,105 +1,160 @@
|
||||
{
|
||||
"$schema": "https://opencode.ai/config.json",
|
||||
"autoupdate": false,
|
||||
"theme": "system",
|
||||
"model": "cpa-anthropic/claude-opus-4-6",
|
||||
"small_model": "cpa-google/gemini-3-flash",
|
||||
"model": "anthropic/claude-opus-4-6",
|
||||
"small_model": "anthropic/claude-haiku-4-5",
|
||||
"plugin": ["oh-my-opencode@latest"],
|
||||
"experimental": {
|
||||
"disable_paste_summary": true
|
||||
},
|
||||
"provider": {
|
||||
// ref: https://models.dev/
|
||||
"cpa-anthropic": {
|
||||
"name": "CPA Anthropic",
|
||||
"anthropic": {
|
||||
"npm": "@ai-sdk/anthropic",
|
||||
"options": {
|
||||
"baseURL": "https://cpa.furtherverse.com/v1",
|
||||
"apiKey": "{env:CPA_API_KEY}",
|
||||
"setCacheKey": true
|
||||
"baseURL": "{env:LITELLM_BASE_URL}/v1",
|
||||
"apiKey": "{env:LITELLM_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
"claude-opus-4-6": {
|
||||
"name": "Claude Opus 4.6",
|
||||
"tool_call": true,
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 200000, "output": 128000 }
|
||||
},
|
||||
"limit": { "context": 1000000, "output": 128000 }
|
||||
},
|
||||
"claude-sonnet-4-5": {
|
||||
"name": "Claude Sonnet 4.5",
|
||||
"tool_call": true,
|
||||
"reasoning": false,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
"claude-sonnet-4-6": {
|
||||
"name": "Claude Sonnet 4.6",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 200000, "output": 64000 }
|
||||
},
|
||||
"claude-haiku-4-5": {
|
||||
"name": "Claude Haiku 4.5",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 200000, "output": 64000 }
|
||||
}
|
||||
}
|
||||
},
|
||||
"cpa-google": {
|
||||
"name": "CPA Google",
|
||||
"npm": "@ai-sdk/google",
|
||||
"options": {
|
||||
"baseURL": "https://cpa.furtherverse.com/v1beta",
|
||||
"apiKey": "{env:CPA_API_KEY}",
|
||||
"setCacheKey": true
|
||||
},
|
||||
"models": {
|
||||
"gemini-3-pro": {
|
||||
"name": "Gemini 3 Pro",
|
||||
"tool_call": true,
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "video", "audio", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 1048576, "output": 65536 }
|
||||
},
|
||||
"gemini-3-flash": {
|
||||
"name": "Gemini 3 Flash",
|
||||
"tool_call": true,
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "video", "audio", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 1048576, "output": 65536 }
|
||||
}
|
||||
}
|
||||
},
|
||||
"cpa-openai": {
|
||||
"name": "CPA OpenAI",
|
||||
"openai": {
|
||||
"npm": "@ai-sdk/openai",
|
||||
"options": {
|
||||
"baseURL": "https://cpa.furtherverse.com/v1",
|
||||
"apiKey": "{env:CPA_API_KEY}",
|
||||
"setCacheKey": true
|
||||
"baseURL": "{env:LITELLM_BASE_URL}/v1",
|
||||
"apiKey": "{env:LITELLM_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
"gpt-5.3-codex": {
|
||||
"name": "GPT-5.3-Codex",
|
||||
"tool_call": true,
|
||||
"gpt-5.4": {
|
||||
"name": "GPT-5.4",
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 400000, "input": 272000, "output": 128000 }
|
||||
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
||||
"limit": { "context": 1050000, "input": 272000, "output": 128000 }
|
||||
},
|
||||
"gpt-5.2": {
|
||||
"name": "GPT-5.2",
|
||||
"tool_call": true,
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image"],
|
||||
"output": ["text"]
|
||||
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
||||
"limit": { "context": 400000, "input": 272000, "output": 128000 }
|
||||
},
|
||||
"gpt-5.3-codex": {
|
||||
"name": "GPT-5.3-Codex",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 400000, "input": 272000, "output": 128000 }
|
||||
}
|
||||
}
|
||||
},
|
||||
"google": {
|
||||
"npm": "@ai-sdk/google",
|
||||
"options": {
|
||||
"baseURL": "{env:LITELLM_BASE_URL}/v1beta",
|
||||
"apiKey": "{env:LITELLM_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
"gemini-3.1-pro-preview": {
|
||||
"name": "Gemini 3.1 Pro",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "video", "audio", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 1048576, "output": 65536 }
|
||||
},
|
||||
"gemini-3-flash-preview": {
|
||||
"name": "Gemini 3 Flash",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "video", "audio", "pdf"], "output": ["text"] },
|
||||
"limit": { "context": 1048576, "output": 65536 }
|
||||
}
|
||||
}
|
||||
},
|
||||
"disabled_providers": ["opencode"]
|
||||
"litellm": {
|
||||
"name": "LiteLLM",
|
||||
"npm": "@ai-sdk/openai-compatible",
|
||||
"options": {
|
||||
"baseURL": "{env:LITELLM_BASE_URL}/v1",
|
||||
"apiKey": "{env:LITELLM_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
// Grok
|
||||
"grok-code-fast-1": {
|
||||
"name": "Grok Code Fast 1",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 256000, "output": 10000 }
|
||||
},
|
||||
|
||||
// GLM
|
||||
"glm-5": {
|
||||
"name": "GLM-5",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 204800, "output": 131072 }
|
||||
},
|
||||
"glm-4.7": {
|
||||
"name": "GLM-4.7",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 204800, "output": 131072 }
|
||||
},
|
||||
|
||||
// Kimi
|
||||
"kimi-k2.5": {
|
||||
"name": "Kimi K2.5",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "video"], "output": ["text"] },
|
||||
"limit": { "context": 262144, "output": 262144 }
|
||||
},
|
||||
|
||||
// MiniMax
|
||||
"minimax-m2.5": {
|
||||
"name": "MiniMax-M2.5",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 204800, "output": 131072 }
|
||||
},
|
||||
|
||||
// Qwen
|
||||
"qwen3.5-plus": {
|
||||
"name": "Qwen3.5 Plus",
|
||||
"reasoning": true,
|
||||
"modalities": { "input": ["text", "image", "video"], "output": ["text"] },
|
||||
"limit": { "context": 1000000, "output": 65536 }
|
||||
},
|
||||
"qwen3-max": {
|
||||
"name": "Qwen3 Max",
|
||||
"reasoning": false,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 262144, "output": 65536 }
|
||||
},
|
||||
"qwen3-coder-next": {
|
||||
"name": "Qwen3 Coder Next",
|
||||
"reasoning": false,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 262144, "output": 65536 }
|
||||
},
|
||||
"qwen3-coder-plus": {
|
||||
"name": "Qwen3 Coder Plus",
|
||||
"reasoning": false,
|
||||
"modalities": { "input": ["text"], "output": ["text"] },
|
||||
"limit": { "context": 1000000, "output": 65536 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user