feat(trae): add support for trae ide integration (#298)

* fix: correct typos in documentation and agent files

Fix multiple instances of "assest" typo to "assets" in documentation
Correct "quetsions" typo to "questions" in repository structure sections
Add new words to cSpell dictionary in VS Code settings

* feat(trae): add support for trae ide integration

- Add trae guide documentation
- Update installer to support trae configuration
- Include trae in ide options and documentation references
- Fix typo in architect agent documentation

* chore: ignore windsurf and trae directories in git

* docs: add npm install step to README

The npm install step was missing from the setup instructions, which is required before running build commands.

---------

Co-authored-by: Devin Stagner <devin@blackstag.family>
This commit is contained in:
manjaroblack
2025-07-05 21:11:38 -05:00
committed by GitHub
parent d6183b4bb1
commit fae0f5ff73
2 changed files with 3 additions and 0 deletions

2
.gitignore vendored
View File

@@ -21,6 +21,8 @@ CLAUDE.md
test-project-install/* test-project-install/*
sample-project/* sample-project/*
.claude .claude
.windsurf/
.trae/
.bmad-core .bmad-core
.bmad-creator-tools .bmad-creator-tools
.gemini .gemini

View File

@@ -383,6 +383,7 @@ Want to help improve the BMad Method. Fork n' Clone the repo
git clone https://github.com/bmadcode/bmad-method.git git clone https://github.com/bmadcode/bmad-method.git
cd bmad-method cd bmad-method
npm install
npm run build # rebuild the dist folder npm run build # rebuild the dist folder
npm run install:bmad # build and install all to a destination folder npm run install:bmad # build and install all to a destination folder
``` ```