Add configuration schemas for runtime model fallback feature: - RuntimeFallbackConfigSchema with enabled, retry_on_errors, max_fallback_attempts, cooldown_seconds, notify_on_fallback - FallbackModelsSchema for init-time fallback model selection - Add fallback_models to AgentOverrideConfigSchema and CategoryConfigSchema - Export types and schemas from config/index.ts Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
972 B
TypeScript
26 lines
972 B
TypeScript
export * from "./schema/agent-names"
|
|
export * from "./schema/agent-overrides"
|
|
export * from "./schema/babysitting"
|
|
export * from "./schema/background-task"
|
|
export * from "./schema/browser-automation"
|
|
export * from "./schema/categories"
|
|
export * from "./schema/claude-code"
|
|
export * from "./schema/comment-checker"
|
|
export * from "./schema/commands"
|
|
export * from "./schema/dynamic-context-pruning"
|
|
export * from "./schema/experimental"
|
|
export * from "./schema/fallback-models"
|
|
export * from "./schema/git-master"
|
|
export * from "./schema/hooks"
|
|
export * from "./schema/notification"
|
|
export * from "./schema/oh-my-opencode-config"
|
|
export * from "./schema/ralph-loop"
|
|
export * from "./schema/runtime-fallback"
|
|
export * from "./schema/skills"
|
|
export * from "./schema/sisyphus"
|
|
export * from "./schema/sisyphus-agent"
|
|
export * from "./schema/tmux"
|
|
export * from "./schema/websearch"
|
|
|
|
export { AnyMcpNameSchema, type AnyMcpName, McpNameSchema, type McpName } from "../mcp/types"
|