diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index f7cb7268915..73defd0732f 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -596,7 +596,8 @@ export namespace Config { const message = ConfigMarkdown.FrontmatterError.isInstance(err) ? err.data.message : `Failed to parse command ${item}` - if (warnings) warnings.push({ path: item, message }) // kilocode_change + // kilocode_change start + if (warnings) warnings.push({ path: item, message }) try { const { Session } = await import("@/session") Bus.publish(Session.Event.Error, { error: new NamedError.Unknown({ message }).toObject() }) @@ -605,6 +606,7 @@ export namespace Config { } log.error("failed to load command", { command: item, err }) return undefined + // kilocode_change end }) if (!md) continue