remove hardcoded agent sidecar locations to fully use config option

This commit is contained in:
Brian Madison
2025-12-06 21:37:43 -06:00
parent 8c04ccf3f0
commit 903c7a4133
3 changed files with 15 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ async function replaceAgentSidecarFolders(bmadDir) {
const coreConfigContent = await fs.readFile(coreConfigPath, 'utf8');
const coreConfig = yaml.parse(coreConfigContent);
const agentSidecarFolder = coreConfig.agent_sidecar_folder || '{project-root}/.myagent-data';
const agentSidecarFolder = coreConfig.agent_sidecar_folder;
// Use the literal value from config, don't resolve the placeholders
console.log(chalk.dim(`\n Replacing {agent_sidecar_folder} with: ${agentSidecarFolder}`));