From f4b69df7a3d341a889e30580aeb0d08a10bbce29 Mon Sep 17 00:00:00 2001 From: Jay V Date: Tue, 26 Aug 2025 13:17:40 -0400 Subject: [PATCH] docs: updating config schema --- packages/opencode/src/config/config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index f707d35f..2041ac35 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -339,7 +339,10 @@ export namespace Config { theme: z.string().optional().describe("Theme name to use for the interface"), keybinds: Keybinds.optional().describe("Custom keybind configurations"), tui: TUI.optional().describe("TUI specific settings"), - command: z.record(z.string(), Command).optional(), + command: z + .record(z.string(), Command) + .optional() + .describe("Command configuration, see https://opencode.ai/docs/commands"), plugin: z.string().array().optional(), snapshot: z.boolean().optional(), share: z