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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user