style(cli): add kilocode markers on command block

This commit is contained in:
Alex Alecu
2026-04-08 11:47:24 +03:00
parent e0e116e9cc
commit b5c756ef72
+3 -1
View File
@@ -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