diff --git a/assets/oh-my-opencode.schema.json b/assets/oh-my-opencode.schema.json index 22acbcf..2a8eba9 100644 --- a/assets/oh-my-opencode.schema.json +++ b/assets/oh-my-opencode.schema.json @@ -27,7 +27,8 @@ "librarian", "explore", "frontend-ui-ux-engineer", - "document-writer" + "document-writer", + "multimodal-looker" ] } }, @@ -63,7 +64,8 @@ "librarian", "explore", "frontend-ui-ux-engineer", - "document-writer" + "document-writer", + "multimodal-looker" ] }, "additionalProperties": { diff --git a/src/config/schema.ts b/src/config/schema.ts index 40fb348..d823181 100644 --- a/src/config/schema.ts +++ b/src/config/schema.ts @@ -22,6 +22,7 @@ export const AgentNameSchema = z.enum([ "explore", "frontend-ui-ux-engineer", "document-writer", + "multimodal-looker", ]) export const HookNameSchema = z.enum([ @@ -65,6 +66,7 @@ export const AgentOverridesSchema = z explore: AgentOverrideConfigSchema.optional(), "frontend-ui-ux-engineer": AgentOverrideConfigSchema.optional(), "document-writer": AgentOverrideConfigSchema.optional(), + "multimodal-looker": AgentOverrideConfigSchema.optional(), }) .partial()