doc and text cleanup

This commit is contained in:
Brian Madison
2025-07-04 07:47:57 -05:00
parent be4fcd8668
commit f440d14565
77 changed files with 243 additions and 78705 deletions

View File

@@ -42,12 +42,12 @@ try {
program
.version(version)
.description('BMAD Method installer - Universal AI agent framework for any domain');
.description('BMad Method installer - Universal AI agent framework for any domain');
program
.command('install')
.description('Install BMAD Method agents and tools')
.option('-f, --full', 'Install complete BMAD Method')
.description('Install BMad Method agents and tools')
.option('-f, --full', 'Install complete BMad Method')
.option('-x, --expansion-only', 'Install only expansion packs (no bmad-core)')
.option('-d, --directory <path>', 'Installation directory')
.option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, roo, cline, gemini, vs-code-copilot, other)')
@@ -83,7 +83,7 @@ program
program
.command('update')
.description('Update existing BMAD installation')
.description('Update existing BMad installation')
.option('--force', 'Force update, overwriting modified files')
.option('--dry-run', 'Show what would be updated without making changes')
.action(async () => {
@@ -124,7 +124,7 @@ program
async function promptInstallation() {
await initializeModules();
console.log(chalk.bold.blue(`\nWelcome to BMAD Method Installer v${version}\n`));
console.log(chalk.bold.blue(`\nWelcome to BMad Method Installer v${version}\n`));
const answers = {};
@@ -133,7 +133,7 @@ async function promptInstallation() {
{
type: 'input',
name: 'directory',
message: 'Enter the full path to your project directory where BMAD should be installed:',
message: 'Enter the full path to your project directory where BMad should be installed:',
validate: (input) => {
if (!input.trim()) {
return 'Please enter a valid project path';
@@ -162,7 +162,7 @@ async function promptInstallation() {
const coreConfig = yaml.load(await fs.readFile(coreConfigPath, 'utf8'));
const coreShortTitle = coreConfig['short-title'] || 'BMad Agile Core System';
// Add BMAD core option
// Add BMad core option
let bmadOptionText;
if (state.type === 'v4_existing') {
const currentVersion = state.manifest?.version || 'unknown';