From e4a4f47a1e176a103ac39b9992a229c7dd8b763b Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Tue, 23 Dec 2025 22:21:59 +0800 Subject: [PATCH] remove unnecessary \ before _ and disable md auto fix --- package.json | 3 +-- .../templates/step-01-init-continuable-template.md | 14 +++++++------- .../3-technical/game-architecture/instructions.md | 2 +- .../create-architecture/steps/step-01-init.md | 8 ++++---- 4 files changed, 13 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index b116ecbd..6848282d 100644 --- a/package.json +++ b/package.json @@ -58,8 +58,7 @@ "npm run format:fix" ], "*.md": [ - "markdownlint-cli2", - "npm run format:fix" + "markdownlint-cli2" ] }, "dependencies": { diff --git a/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md b/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md index beb56dff..9b5794ef 100644 --- a/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md +++ b/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md @@ -13,16 +13,16 @@ description: 'Initialize the [workflow-type] workflow by detecting continuation -workflow\*path: '{project-root}/\_bmad/[module-path]/workflows/[workflow-name]' +workflow\*path: `{project-root}/_bmad/[module-path]/workflows/[workflow-name]` # File References (all use {variable} format in file) -thisStepFile: '{workflow_path}/steps/step-01-init.md' -nextStepFile: '{workflow_path}/steps/step-02-[step-name].md' -workflowFile: '{workflow_path}/workflow.md' -outputFile: '{output_folder}/[output-file-name]-{project_name}.md' -continueFile: '{workflow_path}/steps/step-01b-continue.md' -templateFile: '{workflow_path}/templates/[main-template].md' +thisStepFile: `{workflow_path}/steps/step-01-init.md` +nextStepFile: `{workflow_path}/steps/step-02-[step-name].md` +workflowFile: `{workflow_path}/workflow.md` +outputFile: `{output_folder}/[output-file-name]-{project_name}.md` +continueFile: `{workflow_path}/steps/step-01b-continue.md` +templateFile: `{workflow_path}/templates/[main-template].md` # Template References diff --git a/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md b/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md index 20bb9a1f..673ed07e 100644 --- a/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +++ b/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md @@ -74,7 +74,7 @@ For Level {{project_level}}, we'll keep the architecture appropriately scoped. Decision Architecture works from your Product Requirements Document (PRD). -Looking for: _prd_.md, or prd/index.md + files in {output_folder} +Looking for: `*prd*.md`, or `prd/index.md` + files in {output_folder} Please run the PRD workflow first to define your requirements. diff --git a/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md b/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md index 4d661420..8cbcaa47 100644 --- a/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +++ b/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md @@ -58,14 +58,14 @@ Discover and load context documents using smart discovery: **PRD Document (Priority: Analysis → Main → Sharded → Whole):** -1. Check analysis folders: {output*folder} and {planning_artifacts} for a \_prd*.md +1. Check analysis folders: {output_folder} and {planning_artifacts} for a `*prd*.md` 2. If no main files: Check for sharded PRD folder: `**/*prd*/**/*.md` 3. If sharded folder exists: Load EVERY file in that folder completely 4. Add discovered files to `inputDocuments` frontmatter **Epics/Stories Document (Priority: Analysis → Main → Sharded → Whole):** -1. Check folders: {output*folder} and {planning_artifacts} for a \_epic*.md +1. Check folders: {output_folder} and {planning_artifacts} for a `*epic*.md` 2. If no analysis files: Try main folder: `{output_folder}/*epic*.md` 3. If no main files: Check for sharded epics folder: `{output_folder}/*epic*/**/*.md` 4. If sharded folder exists: Load EVERY file in that folder completely @@ -73,14 +73,14 @@ Discover and load context documents using smart discovery: **UX Design Specification (Priority: Analysis → Main → Sharded → Whole):** -1. Check folders: {output*folder} and {planning_artifacts} for a \_ux*.md +1. Check folders: {output_folder} and {planning_artifacts} for a `*ux*.md` 2. If no main files: Check for sharded UX folder: `{output_folder}/*ux*/**/*.md` 3. If sharded folder exists: Load EVERY file in that folder completely 4. Add discovered files to `inputDocuments` frontmatter **Research Documents (Priority: Analysis → Main):** -1. Check folders {output*folder} and {planning_artifacts} for /research/\_research*.md +1. Check folders {output_folder} and {planning_artifacts} for `/research/*research*.md` 2. If no files: Try folder: `{output_folder}/*research*.md` 3. Add discovered files to `inputDocuments` frontmatter