feat: Add Gemini CLI Integration (#271)

This commit is contained in:
hieu.sats
2025-06-26 09:33:58 +07:00
committed by GitHub
parent 429a3d41e9
commit 44b9d7bcb5
3 changed files with 72 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ program
.option('-t, --team <team>', 'Install specific team with required agents and dependencies')
.option('-x, --expansion-only', 'Install only expansion packs (no bmad-core)')
.option('-d, --directory <path>', 'Installation directory (default: .bmad-core)')
.option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, roo, cline, other)')
.option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, roo, cline, gemini, other)')
.option('-e, --expansion-packs <packs...>', 'Install specific expansion packs (can specify multiple)')
.action(async (options) => {
try {
@@ -314,7 +314,8 @@ async function promptInstallation() {
{ name: 'Claude Code', value: 'claude-code' },
{ name: 'Windsurf', value: 'windsurf' },
{ name: 'Roo Code', value: 'roo' },
{ name: 'Cline', value: 'cline' }
{ name: 'Cline', value: 'cline' },
{ name: 'Gemini CLI', value: 'gemini' }
]
}
]);