mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-29 16:14:59 +00:00
remove hardcoded .bmad folders from demo content
This commit is contained in:
@@ -445,17 +445,9 @@ function compileAgent(yamlContent, answers = {}, agentName = '', targetPath = ''
|
||||
// Parse YAML
|
||||
const agentYaml = yaml.parse(yamlContent);
|
||||
|
||||
// Inject custom agent name into metadata.name if provided
|
||||
// This is the user's chosen persona name (e.g., "Fred" instead of "Inkwell Von Comitizen")
|
||||
if (agentName && agentYaml.agent && agentYaml.agent.metadata) {
|
||||
// Convert kebab-case to title case for the name field
|
||||
// e.g., "fred-commit-poet" → "Fred Commit Poet"
|
||||
const titleCaseName = agentName
|
||||
.split('-')
|
||||
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
||||
.join(' ');
|
||||
agentYaml.agent.metadata.name = titleCaseName;
|
||||
}
|
||||
// Note: agentName parameter is for UI display only, not for modifying the YAML
|
||||
// The persona name (metadata.name) should always come from the YAML file
|
||||
// We should NEVER modify metadata.name as it's part of the agent's identity
|
||||
|
||||
// Extract install_config
|
||||
const installConfig = extractInstallConfig(agentYaml);
|
||||
|
||||
@@ -242,7 +242,8 @@ function installAgent(agentInfo, answers, targetPath, options = {}) {
|
||||
const { xml, metadata, processedYaml } = compileAgent(fs.readFileSync(agentInfo.yamlFile, 'utf8'), answers);
|
||||
|
||||
// Determine target agent folder name
|
||||
const agentFolderName = metadata.name ? metadata.name.toLowerCase().replaceAll(/\s+/g, '-') : agentInfo.name;
|
||||
// Use the folder name from agentInfo, NOT the persona name from metadata
|
||||
const agentFolderName = agentInfo.name;
|
||||
|
||||
const agentTargetDir = path.join(targetPath, agentFolderName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user