moved bmad-core to dot folder so when adding to project it is clear its not part of the project it is added to

This commit is contained in:
Brian Madison
2025-06-13 19:11:17 -05:00
parent 03241a73d6
commit 7c71e1f815
86 changed files with 87 additions and 28247 deletions

View File

@@ -34,7 +34,7 @@ program
program
.command('install')
.description('Install BMAD Method agents and tools')
.option('-f, --full', 'Install complete bmad-core folder')
.option('-f, --full', 'Install complete .bmad-core folder')
.option('-a, --agent <agent>', 'Install specific agent with dependencies')
.option('-d, --directory <path>', 'Installation directory (default: ./bmad-core)')
.option('-i, --ide <ide>', 'Configure for specific IDE (cursor, claude-code, windsurf)')
@@ -49,7 +49,7 @@ program
const config = {
installType: options.full ? 'full' : 'single-agent',
agent: options.agent,
directory: options.directory || './bmad-core',
directory: options.directory || './.bmad-core',
ide: options.ide
};
await installer.install(config);
@@ -109,7 +109,7 @@ async function promptInstallation(options) {
type: 'input',
name: 'directory',
message: 'Where would you like to install BMAD?',
default: './bmad-core'
default: './.bmad-core'
}
]);
answers.directory = directory;