Skip to content

Commit 925b715

Browse files
Brian MadisonBrian Madison
authored andcommitted
prettier no longer should screw up md files underscores
1 parent e4a4f47 commit 925b715

File tree

81 files changed

+187
-187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+187
-187
lines changed

docs/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
### IDE Manager & Base
3131

3232
- @/tools/cli/installers/lib/ide/manager.js - IdeManager class (dynamic handler loading)
33-
- @/tools/cli/installers/lib/ide/\_base-ide.js - BaseIdeSetup class (all handlers extend this)
33+
- @/tools/cli/installers/lib/ide/_base-ide.js - BaseIdeSetup class (all handlers extend this)
3434

3535
### Shared Utilities
3636

@@ -116,7 +116,7 @@ Contains:
116116

117117
- Add new IDE handler: Create file in /tools/cli/installers/lib/ide/, extend BaseIdeSetup
118118
- Fix installer bug: Check installer.js (94KB - main logic)
119-
- Add module installer: Create \_module-installer/installer.js if custom installer logic needed
119+
- Add module installer: Create _module-installer/installer.js if custom installer logic needed
120120
- Update shared generators: Modify files in /shared/ directory
121121

122122
## Relationships

docs/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Defined in @/tools/cli/lib/platform-codes.js
142142

143143
## Common Tasks
144144

145-
- Create new module installer: Add \_module-installer/installer.js
145+
- Create new module installer: Add _module-installer/installer.js
146146
- Add IDE sub-module: Create sub-modules/{ide-name}/ with config
147147
- Add new IDE support: Create handler in installers/lib/ide/
148148
- Customize module installation: Modify module.yaml

docs/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-01-init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To set up the quiz game by selecting game mode, choosing a category, and prepari
6666

6767
### 1. Welcome and Configuration Loading
6868

69-
Load config from {project-root}/\_bmad/bmb/config.yaml to get user_name.
69+
Load config from {project-root}/_bmad/bmb/config.yaml to get user_name.
7070

7171
Present dramatic welcome:
7272
"🎺 _DRAMATIC MUSIC PLAYS_ 🎺

docs/sample-custom-modules/sample-unitary-module/workflows/quiz-master/workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ web_bundle: true
4545

4646
### 1. Module Configuration Loading
4747

48-
Load and read full config from {project-root}/\_bmad/bmb/config.yaml and resolve:
48+
Load and read full config from {project-root}/_bmad/bmb/config.yaml and resolve:
4949

5050
- `user_name`, `output_folder`, `communication_language`, `document_output_language`
5151

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"bmad:install": "node tools/cli/bmad-cli.js install",
2828
"bundle": "node tools/cli/bundlers/bundle-web.js all",
2929
"flatten": "node tools/flattener/main.js",
30-
"format:check": "prettier --check \"**/*.{js,cjs,mjs,json,md,yaml}\"",
31-
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,json,md,yaml}\"",
30+
"format:check": "prettier --check \"**/*.{js,cjs,mjs,json,yaml}\"",
31+
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,json,yaml}\"",
3232
"install:bmad": "node tools/cli/bmad-cli.js install",
3333
"lint": "eslint . --ext .js,.cjs,.mjs,.yaml --max-warnings=0",
3434
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",

src/modules/bmb/docs/agents/expert-agent-architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ identity: |
355355
- [ ] Sidecar folder structure created and populated
356356
- [ ] memories.md has clear section structure
357357
- [ ] instructions.md contains core directives
358-
- [ ] Menu actions reference \_bmad/\_memory correctly
359-
- [ ] File paths use \_bmad/\_memory/[agentname]-sidecar/ to reference sidecar content
358+
- [ ] Menu actions reference _bmad/_memory correctly
359+
- [ ] File paths use _bmad/_memory/[agentname]-sidecar/ to reference sidecar content
360360
- [ ] Install config personalizes sidecar references
361361
- [ ] Agent folder named consistently: `{agent-name}/`
362362
- [ ] YAML file named: `{agent-name}.agent.yaml`

src/modules/bmb/docs/agents/understanding-agent-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ALL agent types can:
77
- ✓ Write to {output_folder}, {project-root}, or anywhere on system
88
- ✓ Update artifacts and files
99
- ✓ Execute bash commands
10-
- ✓ Use core variables (\_bmad, {output_folder}, etc.)
10+
- ✓ Use core variables (_bmad, {output_folder}, etc.)
1111
- ✓ Have complex prompts and logic
1212
- ✓ Invoke external tools
1313

src/modules/bmb/docs/workflows/templates/step-1b-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: 'Handle workflow continuation from previous session'
1313

1414
<!-- Path Definitions -->
1515

16-
workflow\*path: '{project-root}/\_bmad/[module-path]/workflows/[workflow-name]'
16+
workflow\*path: '{project-root}/_bmad/[module-path]/workflows/[workflow-name]'
1717

1818
# File References (all use {variable} format in file)
1919

src/modules/bmb/docs/workflows/templates/step-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: '[Brief description of what this step accomplishes]'
1111

1212
<!-- Path Definitions -->
1313

14-
workflow\*path: '{project-root}/\_bmad/[module]/reference/workflows/[workflow-name]' # the folder the workflow.md file is in
14+
workflow\*path: '{project-root}/_bmad/[module]/reference/workflows/[workflow-name]' # the folder the workflow.md file is in
1515

1616
# File References (all use {variable} format in file)
1717

@@ -23,8 +23,8 @@ outputFile: '{output_folder}/[output-file-name]-{project_name}.md'
2323

2424
# Task References (IF THE workflow uses and it makes sense in this step to have these )
2525

26-
advancedElicitationTask: '{project-root}/\_bmad/core/tasks/advanced-elicitation.xml'
27-
partyModeWorkflow: '{project-root}/\_bmad/core/workflows/party-mode/workflow.md'
26+
advancedElicitationTask: '{project-root}/_bmad/core/tasks/advanced-elicitation.xml'
27+
partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
2828

2929
# Template References (if this step uses a specific templates)
3030

src/modules/bmb/docs/workflows/templates/workflow-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ web_bundle: [true/false] # Set to true for inclusion in web bundle builds
5353

5454
### 1. Module Configuration Loading
5555

56-
Load and read full config from {project-root}/\_bmad/[MODULE FOLDER]/config.yaml and resolve:
56+
Load and read full config from {project-root}/_bmad/[MODULE FOLDER]/config.yaml and resolve:
5757

5858
- `project_name`, `output_folder`, `user_name`, `communication_language`, `document_output_language`, [MODULE VARS]
5959

0 commit comments

Comments
 (0)