91c0d75588
Adds keyword_detector.disabled_keywords config so users can opt out of
specific keyword detectors individually without disabling the entire
keyword-detector hook. Allowed values: 'ultrawork', 'search', 'analyze',
'team'. Default empty/missing -> all four detectors active (no behavior
change for existing configs).
Motivation: an audit revealed search and analyze patterns trigger on
~30-60% of normal conversational user messages (e.g. 'how to', 'why is',
'show me', '왜', '어떻게'). The disable list is the immediate kill switch
while the patterns themselves are tightened in a separate PR.
Schema follows the existing per-feature config block convention shared
by team_mode, ralph_loop, runtime_fallback, and comment_checker. The
KeywordType enum (z.enum) lives next to the config schema and is
re-imported by the detector to keep the union type in lockstep with the
schema.
Threading:
pluginConfig.keyword_detector
-> create-transform-hooks.ts (factory wiring)
-> createKeywordDetectorHook(config)
-> detectKeywordsWithType(text, agent, model, disabledKeywords)
-> Set-based filter at the source-of-truth detector
Adds 8 regression tests covering per-keyword disable, multi-keyword
disable, partial disable (one keyword off, another still firing),
ultrawork toast suppression, undefined config, and empty array.
87 lines
4.4 KiB
TypeScript
87 lines
4.4 KiB
TypeScript
import { z } from "zod"
|
|
import { AnyMcpNameSchema } from "../../mcp/types"
|
|
import { BuiltinSkillNameSchema } from "./agent-names"
|
|
import { AgentDefinitionsConfigSchema } from "./agent-definitions"
|
|
import { AgentOverridesSchema } from "./agent-overrides"
|
|
import { BabysittingConfigSchema } from "./babysitting"
|
|
import { BackgroundTaskConfigSchema } from "./background-task"
|
|
import { BrowserAutomationConfigSchema } from "./browser-automation"
|
|
import { CategoriesConfigSchema } from "./categories"
|
|
import { ClaudeCodeConfigSchema } from "./claude-code"
|
|
import { CommentCheckerConfigSchema } from "./comment-checker"
|
|
import { BuiltinCommandNameSchema } from "./commands"
|
|
import { ExperimentalConfigSchema } from "./experimental"
|
|
import { GitMasterConfigSchema } from "./git-master"
|
|
import { KeywordDetectorConfigSchema } from "./keyword-detector"
|
|
import { NotificationConfigSchema } from "./notification"
|
|
import { OpenClawConfigSchema } from "./openclaw"
|
|
import { ModelCapabilitiesConfigSchema } from "./model-capabilities"
|
|
import { RalphLoopConfigSchema } from "./ralph-loop"
|
|
import { RuntimeFallbackConfigSchema } from "./runtime-fallback"
|
|
import { TeamModeConfigSchema } from "./team-mode"
|
|
import { SkillsConfigSchema } from "./skills"
|
|
import { SisyphusConfigSchema } from "./sisyphus"
|
|
import { SisyphusAgentConfigSchema } from "./sisyphus-agent"
|
|
import { TmuxConfigSchema } from "./tmux"
|
|
import { StartWorkConfigSchema } from "./start-work"
|
|
import { WebsearchConfigSchema } from "./websearch"
|
|
|
|
export const OhMyOpenCodeConfigSchema = z.object({
|
|
$schema: z.string().optional(),
|
|
/** Enable new task system (default: false) */
|
|
new_task_system_enabled: z.boolean().optional(),
|
|
/** Default agent name for `oh-my-opencode run` (env: OPENCODE_DEFAULT_AGENT) */
|
|
default_run_agent: z.string().optional(),
|
|
/** Paths to external agent definition files (.md or .json) */
|
|
agent_definitions: AgentDefinitionsConfigSchema,
|
|
disabled_mcps: z.array(AnyMcpNameSchema).optional(),
|
|
disabled_agents: z.array(z.string()).optional(),
|
|
disabled_skills: z.array(BuiltinSkillNameSchema).optional(),
|
|
disabled_hooks: z.array(z.string()).optional(),
|
|
disabled_commands: z.array(BuiltinCommandNameSchema).optional(),
|
|
/** Disable specific tools by name (e.g., ["todowrite", "todoread"]) */
|
|
disabled_tools: z.array(z.string()).optional(),
|
|
mcp_env_allowlist: z.array(z.string()).optional(),
|
|
/** Enable hashline_edit tool/hook integrations (default: false) */
|
|
hashline_edit: z.boolean().optional(),
|
|
/** Enable model fallback on API errors (default: false). Set to true to enable automatic model switching when model errors occur. */
|
|
model_fallback: z.boolean().optional(),
|
|
agents: AgentOverridesSchema.optional(),
|
|
categories: CategoriesConfigSchema.optional(),
|
|
claude_code: ClaudeCodeConfigSchema.optional(),
|
|
sisyphus_agent: SisyphusAgentConfigSchema.optional(),
|
|
comment_checker: CommentCheckerConfigSchema.optional(),
|
|
experimental: ExperimentalConfigSchema.optional(),
|
|
auto_update: z.boolean().optional(),
|
|
skills: SkillsConfigSchema.optional(),
|
|
ralph_loop: RalphLoopConfigSchema.optional(),
|
|
/**
|
|
* Enable runtime fallback (default: false)
|
|
* Set to false to disable, or use object for advanced config:
|
|
* { "enabled": true, "retry_on_errors": [400, 429], "timeout_seconds": 30 }
|
|
*/
|
|
runtime_fallback: z.union([z.boolean(), RuntimeFallbackConfigSchema]).optional(),
|
|
background_task: BackgroundTaskConfigSchema.optional(),
|
|
notification: NotificationConfigSchema.optional(),
|
|
model_capabilities: ModelCapabilitiesConfigSchema.optional(),
|
|
openclaw: OpenClawConfigSchema.optional(),
|
|
team_mode: TeamModeConfigSchema.optional(),
|
|
/** Per-keyword disable list for the keyword-detector transform hook. Allowed values: "ultrawork", "search", "analyze", "team". */
|
|
keyword_detector: KeywordDetectorConfigSchema.optional(),
|
|
babysitting: BabysittingConfigSchema.optional(),
|
|
git_master: GitMasterConfigSchema.default({
|
|
commit_footer: true,
|
|
include_co_authored_by: true,
|
|
git_env_prefix: "GIT_MASTER=1",
|
|
}),
|
|
browser_automation_engine: BrowserAutomationConfigSchema.optional(),
|
|
websearch: WebsearchConfigSchema.optional(),
|
|
tmux: TmuxConfigSchema.optional(),
|
|
sisyphus: SisyphusConfigSchema.optional(),
|
|
start_work: StartWorkConfigSchema.optional(),
|
|
/** Migration history to prevent re-applying migrations (e.g., model version upgrades) */
|
|
_migrations: z.array(z.string()).optional(),
|
|
})
|
|
|
|
export type OhMyOpenCodeConfig = z.infer<typeof OhMyOpenCodeConfigSchema>
|