release v1.3.8

This commit is contained in:
Bohdan Triapitsyn
2025-12-30 00:04:48 +02:00
parent 0f9c50cd58
commit 1492a2e512
9 changed files with 13 additions and 9 deletions
+3 -2
View File
@@ -227,6 +227,7 @@ const readConfigLayers = (workingDirectory?: string) => {
};
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- kept for potential future use or debugging
const readConfig = (workingDirectory?: string): Record<string, unknown> =>
readConfigLayers(workingDirectory).mergedConfig;
@@ -410,7 +411,7 @@ export const updateAgent = (agentName: string, updates: Record<string, unknown>,
let mdModified = false;
let jsonModified = false;
// Only create new md if it's a built-in override
let creatingNewMd = isBuiltinOverride;
const creatingNewMd = isBuiltinOverride;
for (const [field, value] of Object.entries(updates || {})) {
if (field === 'prompt') {
@@ -625,7 +626,7 @@ export const updateCommand = (commandName: string, updates: Record<string, unkno
let mdModified = false;
let jsonModified = false;
let creatingNewMd = isBuiltinOverride;
const creatingNewMd = isBuiltinOverride;
for (const [field, value] of Object.entries(updates || {})) {
if (field === 'template') {