Merge bcf6049299 into 9fe79882b2
This commit is contained in:
commit
ffc3e929b9
|
|
@ -2222,6 +2222,12 @@ If AgentVibes party mode is enabled, immediately trigger TTS with agent's voice:
|
||||||
} else {
|
} else {
|
||||||
// Selective update - preserve user modifications
|
// Selective update - preserve user modifications
|
||||||
await this.fileOps.syncDirectory(sourcePath, targetPath);
|
await this.fileOps.syncDirectory(sourcePath, targetPath);
|
||||||
|
|
||||||
|
// Recompile agents (#1133)
|
||||||
|
const { ModuleManager } = require('../modules/manager');
|
||||||
|
const moduleManager = new ModuleManager();
|
||||||
|
await moduleManager.compileModuleAgents(sourcePath, targetPath, 'core', bmadDir);
|
||||||
|
await this.processAgentFiles(targetPath, 'core');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -507,6 +507,10 @@ class ModuleManager {
|
||||||
} else {
|
} else {
|
||||||
// Selective update - preserve user modifications
|
// Selective update - preserve user modifications
|
||||||
await this.syncModule(sourcePath, targetPath);
|
await this.syncModule(sourcePath, targetPath);
|
||||||
|
|
||||||
|
// Recompile agents (#1133)
|
||||||
|
await this.compileModuleAgents(sourcePath, targetPath, moduleName, bmadDir);
|
||||||
|
await this.processAgentFiles(targetPath, moduleName);
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue