fix: documentation and trademark updates

This commit is contained in:
Brian Madison
2025-08-17 19:23:50 -05:00
parent f3cc410fb0
commit 80d73d9093
245 changed files with 1019 additions and 82 deletions

View File

@@ -8,7 +8,7 @@ const program = new Command();
program
.name('bmad-build')
.description('BMad-Method build tool for creating web bundles')
.description('BMAD-METHOD™ build tool for creating web bundles')
.version('4.0.0');
program
@@ -136,7 +136,7 @@ program
program
.command('upgrade')
.description('Upgrade a BMad-Method V3 project to V4')
.description('Upgrade a BMAD-METHOD™ V3 project to V4')
.option('-p, --project <path>', 'Path to V3 project (defaults to current directory)')
.option('--dry-run', 'Show what would be changed without making changes')
.option('--no-backup', 'Skip creating backup (not recommended)')

View File

@@ -68,7 +68,7 @@ const program = new Command();
program
.name('bmad-flatten')
.description('BMad-Method codebase flattener tool')
.description('BMAD-METHOD™ codebase flattener tool')
.version('1.0.0')
.option('-i, --input <path>', 'Input directory to flatten', process.cwd())
.option('-o, --output <path>', 'Output file path', 'flattened-codebase.xml')

View File

@@ -105,7 +105,7 @@ ide-configurations:
format: custom-modes
file: .kilocodemodes
instructions: |
# To use BMAD agents in Kilo Code:
# To use BMAD agents in Kilo Code:
# 1. Open the mode selector in VSCode
# 2. Select a bmad-{agent} mode (e.g. "bmad-dev")
# 3. The AI adopts that agent's persona and capabilities

View File

@@ -1,6 +1,6 @@
// ASCII banner art definitions extracted from banners.js to separate art from logic
const BMAD_TITLE = 'BMAD-METHOD';
const BMAD_TITLE = 'BMAD-METHOD';
const FLATTENER_TITLE = 'FLATTENER';
const INSTALLER_TITLE = 'INSTALLER';
@@ -65,7 +65,7 @@ const INSTALLER_MEDIUM = `
// Width: 30 columns total (28 inner)
const BMAD_SMALL = `
╭──────────────────────────╮
BMAD-METHOD │
│ BMAD-METHOD
╰──────────────────────────╯
`;
@@ -82,7 +82,7 @@ const INSTALLER_SMALL = `
`;
// Tiny (compact brackets)
const BMAD_TINY = `[ BMAD-METHOD ]`;
const BMAD_TINY = `[ BMAD-METHOD ]`;
const FLATTENER_TINY = `[ FLATTENER ]`;
const INSTALLER_TINY = `[ INSTALLER ]`;