feat: installer offers option to install web bundles

This commit is contained in:
Brian Madison
2025-06-17 09:55:21 -05:00
parent fe27d68319
commit e934769a5e
5 changed files with 1638 additions and 181 deletions

View File

@@ -115,6 +115,11 @@ class ConfigLoader {
return path.join(__dirname, '..', '..', '..', 'bmad-core');
}
getDistPath() {
// Get the path to dist directory relative to the installer
return path.join(__dirname, '..', '..', '..', 'dist');
}
getAgentPath(agentId) {
return path.join(this.getBmadCorePath(), 'agents', `${agentId}.md`);
}