268ee57c04
In #3859 I bulk-replaced `oh-my-opencode.schema.json` -> `oh-my-openagent.schema.json` across docs/, on the false assumption that the schema file had been renamed alongside the package. It hadn't. Repo state on dev: - assets/oh-my-opencode.schema.json (only file present) - package.json export `./schema.json` -> `./dist/oh-my-opencode.schema.json` - script/build-schema.ts emits the same legacy basename - root AGENTS.md line 135 documents the same legacy URL So every doc that pointed at `oh-my-openagent.schema.json` was returning HTTP 404 for any user copying the example into their config. Verified live: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-openagent.schema.json -> 404 https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json -> 200 Files reverted to canonical legacy URL: - docs/examples/{coding,default,planning}-focused.jsonc - docs/guide/{overview,installation,agent-model-matching}.md - docs/reference/configuration.md (2 occurrences)
72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json",
|
|
|
|
// Balanced defaults for general development.
|
|
// Tuned for reliability across diverse tasks without overspending.
|
|
|
|
"agents": {
|
|
// Main orchestrator: handles delegation and drives tasks to completion
|
|
"sisyphus": {
|
|
"model": "anthropic/claude-opus-4-7",
|
|
"ultrawork": { "model": "anthropic/claude-opus-4-7", "variant": "max" },
|
|
},
|
|
|
|
// Deep autonomous worker: end-to-end implementation
|
|
"hephaestus": {
|
|
"model": "openai/gpt-5.5",
|
|
"prompt_append": "Explore thoroughly, then implement. Prefer small, testable changes.",
|
|
},
|
|
|
|
// Strategic planner: interview mode before execution
|
|
"prometheus": {
|
|
"prompt_append": "Always interview first. Validate scope before planning.",
|
|
},
|
|
|
|
// Architecture consultant: complex design and debugging
|
|
"oracle": { "model": "openai/gpt-5.5", "variant": "high" },
|
|
|
|
// Documentation and code search
|
|
"librarian": { "model": "google/gemini-3-flash" },
|
|
|
|
// Fast codebase exploration
|
|
"explore": { "model": "github-copilot/grok-code-fast-1" },
|
|
|
|
// Visual tasks: UI/UX, images, diagrams
|
|
"multimodal-looker": { "model": "google/gemini-3.1-pro" },
|
|
|
|
// Plan consultant: reviews and improves plans
|
|
"metis": {},
|
|
|
|
// Critic and reviewer
|
|
"momus": {},
|
|
|
|
// Continuation and long-running task handler
|
|
"atlas": {},
|
|
|
|
// Lightweight task executor for simple jobs
|
|
"sisyphus-junior": { "model": "opencode/gpt-5-nano" },
|
|
},
|
|
|
|
"categories": {
|
|
"quick": { "model": "opencode/gpt-5-nano" },
|
|
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
|
|
"unspecified-high": { "model": "anthropic/claude-opus-4-7", "variant": "max" },
|
|
"writing": { "model": "google/gemini-3-flash" },
|
|
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" },
|
|
"deep": { "model": "openai/gpt-5.5" },
|
|
"ultrabrain": { "model": "openai/gpt-5.5", "variant": "xhigh" },
|
|
},
|
|
|
|
// Conservative concurrency for cost control
|
|
"background_task": {
|
|
"providerConcurrency": {
|
|
"anthropic": 3,
|
|
"openai": 3,
|
|
"google": 5,
|
|
"opencode": 10,
|
|
},
|
|
},
|
|
|
|
"experimental": { "aggressive_truncation": true },
|
|
}
|