mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-17 09:45:25 +00:00
* feat: Add Google Antigravity IDE installer Implements installer for Google Antigravity IDE with flattened slash command naming to match Antigravity's namespace requirements. Key features: - Flattened file naming (bmad-module-agents-name.md) for proper slash commands - Subagent installation support (project-level or user-level) - Module-specific injection configuration - Agent, workflow, task, and tool command generation Implementation: - Added AntigravitySetup class extending BaseIdeSetup - Extracted flattenFilename() to BaseIdeSetup for reuse across IDE handlers - Uses .agent/workflows directory structure - Supports both interactive and non-interactive configuration Fixes: - Proper namespace isolation: /bmad-module-agents-dev instead of /dev - Prevents conflicts between modules with same agent names Note: This installer shares 95% of its code with claude-code.js. Future refactoring could extract common patterns to IdeWithSlashCommandsSetup base class (see design documents for details). * chore: update gitignore for antigravity installer --------- Co-authored-by: Brian <bmadcode@gmail.com>
72 lines
968 B
Plaintext
72 lines
968 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
pnpm-lock.yaml
|
|
bun.lock
|
|
deno.lock
|
|
pnpm-workspace.yaml
|
|
package-lock.json
|
|
|
|
|
|
test-output/*
|
|
coverage/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Build output
|
|
build/*.txt
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Development tools and configs
|
|
.prettierrc
|
|
|
|
# IDE and editor configs
|
|
.windsurf/
|
|
.trae/
|
|
.bmad*/.cursor/
|
|
|
|
# AI assistant files
|
|
CLAUDE.md
|
|
.ai/*
|
|
cursor
|
|
.gemini
|
|
.mcp.json
|
|
CLAUDE.local.md
|
|
.serena/
|
|
.claude/settings.local.json
|
|
|
|
# Project-specific
|
|
.bmad-core
|
|
.bmad-creator-tools
|
|
test-project-install/*
|
|
sample-project/*
|
|
flattened-codebase.xml
|
|
*.stats.md
|
|
.internal-docs/
|
|
#UAT template testing output files
|
|
tools/template-test-generator/test-scenarios/
|
|
|
|
# Bundler temporary files and generated bundles
|
|
.bundler-temp/
|
|
|
|
# Generated web bundles (built by CI, not committed)
|
|
src/modules/bmm/sub-modules/
|
|
src/modules/bmb/sub-modules/
|
|
src/modules/cis/sub-modules/
|
|
src/modules/bmgd/sub-modules/
|
|
|
|
z*/
|
|
|
|
.bmad
|
|
.claude
|
|
.agent
|
|
.codex
|