@sleighmaster/bmad 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/_bmad/bmm/config.yaml +3 -0
- package/data/_bmad/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +2 -2
- package/data/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +2 -2
- package/data/_bmad/bmm/workflows/4-implementation/code-review/workflow.yaml +6 -2
- package/data/_bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml +6 -2
- package/data/_bmad/bmm/workflows/4-implementation/create-story/workflow.yaml +9 -4
- package/data/_bmad/bmm/workflows/4-implementation/dev-story/instructions.xml +2 -2
- package/data/_bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml +1 -1
- package/data/_bmad/bmm/workflows/4-implementation/import-issue/workflow.yaml +3 -2
- package/data/_bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml +9 -4
- package/data/_bmad/bmm/workflows/4-implementation/sprint-planning/instructions.md +1 -1
- package/data/_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +3 -2
- package/dist/services/config-manager.d.ts +3 -0
- package/dist/services/config-manager.d.ts.map +1 -1
- package/dist/services/config-manager.js +3 -0
- package/dist/services/config-manager.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,9 @@ project_name: BMad6GitHub
|
|
|
7
7
|
user_skill_level: expert
|
|
8
8
|
planning_artifacts: "{project-root}/docs/"
|
|
9
9
|
epics_artifacts: "{project-root}/docs/epics/"
|
|
10
|
+
stories_artifacts: "{project-root}/docs/stories/"
|
|
11
|
+
prd_artifacts: "{project-root}/docs/prd/"
|
|
12
|
+
architecture_artifacts: "{project-root}/docs/architecture/"
|
|
10
13
|
implementation_artifacts: "{project-root}/docs/"
|
|
11
14
|
project_knowledge: "{project-root}/docs"
|
|
12
15
|
|
|
@@ -70,12 +70,12 @@ Search for each document type using these patterns:
|
|
|
70
70
|
#### A. PRD Documents
|
|
71
71
|
|
|
72
72
|
- Whole: `{planning_artifacts}/*prd*.md`
|
|
73
|
-
- Sharded: `{
|
|
73
|
+
- Sharded: `{prd_artifacts}/index.md` and related files
|
|
74
74
|
|
|
75
75
|
#### B. Architecture Documents
|
|
76
76
|
|
|
77
77
|
- Whole: `{planning_artifacts}/*architecture*.md`
|
|
78
|
-
- Sharded: `{
|
|
78
|
+
- Sharded: `{architecture_artifacts}/index.md` and related files
|
|
79
79
|
|
|
80
80
|
#### C. Epics & Stories Documents
|
|
81
81
|
|
|
@@ -79,12 +79,12 @@ Search for required documents using these patterns (sharded means a large docume
|
|
|
79
79
|
**PRD Document Search Priority:**
|
|
80
80
|
|
|
81
81
|
1. `{planning_artifacts}/*prd*.md` (whole document)
|
|
82
|
-
2. `{
|
|
82
|
+
2. `{prd_artifacts}/index.md` (sharded version)
|
|
83
83
|
|
|
84
84
|
**Architecture Document Search Priority:**
|
|
85
85
|
|
|
86
86
|
1. `{planning_artifacts}/*architecture*.md` (whole document)
|
|
87
|
-
2. `{
|
|
87
|
+
2. `{architecture_artifacts}/index.md` (sharded version)
|
|
88
88
|
|
|
89
89
|
**UX Design Document Search (Optional):**
|
|
90
90
|
|
|
@@ -12,6 +12,9 @@ document_output_language: "{config_source}:document_output_language"
|
|
|
12
12
|
date: system-generated
|
|
13
13
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
14
14
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
15
|
+
stories_artifacts: "{config_source}:stories_artifacts"
|
|
16
|
+
prd_artifacts: "{config_source}:prd_artifacts"
|
|
17
|
+
architecture_artifacts: "{config_source}:architecture_artifacts"
|
|
15
18
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
16
19
|
output_folder: "{implementation_artifacts}"
|
|
17
20
|
sprint_status: "{implementation_artifacts}/sprint-status.yaml"
|
|
@@ -25,7 +28,7 @@ template: false
|
|
|
25
28
|
variables:
|
|
26
29
|
# Project context
|
|
27
30
|
project_context: "**/project-context.md"
|
|
28
|
-
story_dir: "{
|
|
31
|
+
story_dir: "{stories_artifacts}"
|
|
29
32
|
|
|
30
33
|
# Smart input file references - handles both whole docs and sharded docs
|
|
31
34
|
# Priority: Whole document first, then sharded version
|
|
@@ -34,7 +37,8 @@ input_file_patterns:
|
|
|
34
37
|
architecture:
|
|
35
38
|
description: "System architecture for review context"
|
|
36
39
|
whole: "{planning_artifacts}/*architecture*.md"
|
|
37
|
-
sharded: "{
|
|
40
|
+
sharded: "{architecture_artifacts}/*.md"
|
|
41
|
+
sharded_index: "{architecture_artifacts}/index.md"
|
|
38
42
|
load_strategy: "FULL_LOAD"
|
|
39
43
|
ux_design:
|
|
40
44
|
description: "UX design specification (if UI review)"
|
|
@@ -12,6 +12,8 @@ date: system-generated
|
|
|
12
12
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
13
13
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
14
14
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
15
|
+
prd_artifacts: "{config_source}:prd_artifacts"
|
|
16
|
+
architecture_artifacts: "{config_source}:architecture_artifacts"
|
|
15
17
|
project_knowledge: "{config_source}:project_knowledge"
|
|
16
18
|
output_folder: "{implementation_artifacts}"
|
|
17
19
|
sprint_status: "{implementation_artifacts}/sprint-status.yaml"
|
|
@@ -23,7 +25,8 @@ input_file_patterns:
|
|
|
23
25
|
prd:
|
|
24
26
|
description: "Product requirements for impact analysis"
|
|
25
27
|
whole: "{planning_artifacts}/*prd*.md"
|
|
26
|
-
sharded: "{
|
|
28
|
+
sharded: "{prd_artifacts}/*.md"
|
|
29
|
+
sharded_index: "{prd_artifacts}/index.md"
|
|
27
30
|
load_strategy: "FULL_LOAD"
|
|
28
31
|
epics:
|
|
29
32
|
description: "All epics to analyze change impact"
|
|
@@ -33,7 +36,8 @@ input_file_patterns:
|
|
|
33
36
|
architecture:
|
|
34
37
|
description: "System architecture and decisions"
|
|
35
38
|
whole: "{planning_artifacts}/*architecture*.md"
|
|
36
|
-
sharded: "{
|
|
39
|
+
sharded: "{architecture_artifacts}/*.md"
|
|
40
|
+
sharded_index: "{architecture_artifacts}/index.md"
|
|
37
41
|
load_strategy: "FULL_LOAD"
|
|
38
42
|
ux_design:
|
|
39
43
|
description: "UX design specification (if UI impacts)"
|
|
@@ -9,9 +9,12 @@ communication_language: "{config_source}:communication_language"
|
|
|
9
9
|
date: system-generated
|
|
10
10
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
11
11
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
12
|
+
stories_artifacts: "{config_source}:stories_artifacts"
|
|
13
|
+
prd_artifacts: "{config_source}:prd_artifacts"
|
|
14
|
+
architecture_artifacts: "{config_source}:architecture_artifacts"
|
|
12
15
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
13
16
|
output_folder: "{implementation_artifacts}"
|
|
14
|
-
story_dir: "{
|
|
17
|
+
story_dir: "{stories_artifacts}"
|
|
15
18
|
|
|
16
19
|
# Workflow components
|
|
17
20
|
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/create-story"
|
|
@@ -31,7 +34,7 @@ variables:
|
|
|
31
34
|
# Project context
|
|
32
35
|
project_context: "**/project-context.md"
|
|
33
36
|
|
|
34
|
-
default_output_file: "{story_dir}/{{
|
|
37
|
+
default_output_file: "{story_dir}/epic-{{epic_num}}/{{epic_num}}.{{story_num}}-{{story_title}}.md"
|
|
35
38
|
|
|
36
39
|
# Smart input file references - Simplified for enhanced approach
|
|
37
40
|
# The epics+stories file should contain everything needed with source hints
|
|
@@ -39,12 +42,14 @@ input_file_patterns:
|
|
|
39
42
|
prd:
|
|
40
43
|
description: "PRD (fallback - epics file should have most content)"
|
|
41
44
|
whole: "{planning_artifacts}/*prd*.md"
|
|
42
|
-
sharded: "{
|
|
45
|
+
sharded: "{prd_artifacts}/*.md"
|
|
46
|
+
sharded_index: "{prd_artifacts}/index.md"
|
|
43
47
|
load_strategy: "SELECTIVE_LOAD" # Only load if needed
|
|
44
48
|
architecture:
|
|
45
49
|
description: "Architecture (fallback - epics file should have relevant sections)"
|
|
46
50
|
whole: "{planning_artifacts}/*architecture*.md"
|
|
47
|
-
sharded: "{
|
|
51
|
+
sharded: "{architecture_artifacts}/*.md"
|
|
52
|
+
sharded_index: "{architecture_artifacts}/index.md"
|
|
48
53
|
load_strategy: "SELECTIVE_LOAD" # Only load if needed
|
|
49
54
|
ux:
|
|
50
55
|
description: "UX design (fallback - epics file should have relevant sections)"
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
<check if="{{sprint_status}} file does NOT exist">
|
|
81
81
|
<action>Search {story_dir} for stories directly</action>
|
|
82
82
|
<action>Find stories with "ready-for-dev" status in files</action>
|
|
83
|
-
<action>Look for story files matching pattern:
|
|
83
|
+
<action>Look for story files matching pattern: epic-*/*.md (e.g., epic-1/1.1-user-login.md)</action>
|
|
84
84
|
<action>Read each candidate story file to check Status section</action>
|
|
85
85
|
|
|
86
86
|
<check if="no ready-for-dev stories found in story files">
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
</check>
|
|
115
115
|
|
|
116
116
|
<action>Store the found story_key (e.g., "1-2-user-authentication") for later status updates</action>
|
|
117
|
-
<action>Find matching story file in {story_dir} using
|
|
117
|
+
<action>Find matching story file in {story_dir} using pattern: epic-{{epic_num}}/{{epic_num}}.{{story_num}}-*.md</action>
|
|
118
118
|
<action>Read COMPLETE story file from discovered path</action>
|
|
119
119
|
|
|
120
120
|
<anchor id="task_check" />
|
|
@@ -9,7 +9,7 @@ user_name: "{config_source}:user_name"
|
|
|
9
9
|
communication_language: "{config_source}:communication_language"
|
|
10
10
|
user_skill_level: "{config_source}:user_skill_level"
|
|
11
11
|
document_output_language: "{config_source}:document_output_language"
|
|
12
|
-
story_dir: "{config_source}:
|
|
12
|
+
story_dir: "{config_source}:stories_artifacts"
|
|
13
13
|
date: system-generated
|
|
14
14
|
|
|
15
15
|
# Workflow components
|
|
@@ -9,9 +9,10 @@ communication_language: "{config_source}:communication_language"
|
|
|
9
9
|
date: system-generated
|
|
10
10
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
11
11
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
12
|
+
stories_artifacts: "{config_source}:stories_artifacts"
|
|
12
13
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
13
14
|
output_folder: "{implementation_artifacts}"
|
|
14
|
-
story_dir: "{
|
|
15
|
+
story_dir: "{stories_artifacts}"
|
|
15
16
|
|
|
16
17
|
# Workflow components
|
|
17
18
|
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/import-issue"
|
|
@@ -25,7 +26,7 @@ variables:
|
|
|
25
26
|
epics_file: "{epics_artifacts}/epics.md"
|
|
26
27
|
issue_numbers: "" # User input - comma-separated issue numbers
|
|
27
28
|
|
|
28
|
-
default_output_file: "{story_dir}/{{
|
|
29
|
+
default_output_file: "{story_dir}/epic-{{epic_num}}/{{epic_num}}.{{story_num}}-{{story_title}}.md"
|
|
29
30
|
|
|
30
31
|
# Smart input file references
|
|
31
32
|
input_file_patterns:
|
|
@@ -4,7 +4,7 @@ description: "Run after epic completion to review overall success, extract lesso
|
|
|
4
4
|
author: "BMad"
|
|
5
5
|
|
|
6
6
|
config_source: "{project-root}/_bmad/bmm/config.yaml"
|
|
7
|
-
output_folder: "{config_source}:implementation_artifacts
|
|
7
|
+
output_folder: "{config_source}:implementation_artifacts"
|
|
8
8
|
user_name: "{config_source}:user_name"
|
|
9
9
|
communication_language: "{config_source}:communication_language"
|
|
10
10
|
user_skill_level: "{config_source}:user_skill_level"
|
|
@@ -12,6 +12,9 @@ document_output_language: "{config_source}:document_output_language"
|
|
|
12
12
|
date: system-generated
|
|
13
13
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
14
14
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
15
|
+
stories_artifacts: "{config_source}:stories_artifacts"
|
|
16
|
+
prd_artifacts: "{config_source}:prd_artifacts"
|
|
17
|
+
architecture_artifacts: "{config_source}:architecture_artifacts"
|
|
15
18
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
16
19
|
|
|
17
20
|
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/retrospective"
|
|
@@ -38,12 +41,14 @@ input_file_patterns:
|
|
|
38
41
|
architecture:
|
|
39
42
|
description: "System architecture for context"
|
|
40
43
|
whole: "{planning_artifacts}/*architecture*.md"
|
|
41
|
-
sharded: "{
|
|
44
|
+
sharded: "{architecture_artifacts}/*.md"
|
|
45
|
+
sharded_index: "{architecture_artifacts}/index.md"
|
|
42
46
|
load_strategy: "FULL_LOAD"
|
|
43
47
|
prd:
|
|
44
48
|
description: "Product requirements for context"
|
|
45
49
|
whole: "{planning_artifacts}/*prd*.md"
|
|
46
|
-
sharded: "{
|
|
50
|
+
sharded: "{prd_artifacts}/*.md"
|
|
51
|
+
sharded_index: "{prd_artifacts}/index.md"
|
|
47
52
|
load_strategy: "FULL_LOAD"
|
|
48
53
|
document_project:
|
|
49
54
|
description: "Brownfield project documentation (optional)"
|
|
@@ -52,7 +57,7 @@ input_file_patterns:
|
|
|
52
57
|
|
|
53
58
|
# Required files
|
|
54
59
|
sprint_status_file: "{implementation_artifacts}/sprint-status.yaml"
|
|
55
|
-
story_directory: "{
|
|
60
|
+
story_directory: "{stories_artifacts}"
|
|
56
61
|
retrospectives_folder: "{implementation_artifacts}"
|
|
57
62
|
|
|
58
63
|
standalone: true
|
|
@@ -72,7 +72,7 @@ development_status:
|
|
|
72
72
|
|
|
73
73
|
**Story file detection:**
|
|
74
74
|
|
|
75
|
-
- Check: `{story_location_absolute}/{
|
|
75
|
+
- Check: `{story_location_absolute}/epic-{epic_num}/{epic_num}.{story_num}-{story_title}.md` (e.g., `stories/epic-1/1.1-user-authentication.md`)
|
|
76
76
|
- If exists → upgrade status to at least `ready-for-dev`
|
|
77
77
|
|
|
78
78
|
**Preservation rule:**
|
|
@@ -10,6 +10,7 @@ date: system-generated
|
|
|
10
10
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
|
11
11
|
planning_artifacts: "{config_source}:planning_artifacts"
|
|
12
12
|
epics_artifacts: "{config_source}:epics_artifacts"
|
|
13
|
+
stories_artifacts: "{config_source}:stories_artifacts"
|
|
13
14
|
output_folder: "{implementation_artifacts}"
|
|
14
15
|
|
|
15
16
|
# Workflow components
|
|
@@ -28,8 +29,8 @@ variables:
|
|
|
28
29
|
# Tracking system configuration
|
|
29
30
|
tracking_system: "file-system" # Options: file-system, Future will support other options from config of mcp such as jira, linear, trello
|
|
30
31
|
project_key: "NOKEY" # Placeholder for tracker integrations; file-system uses a no-op key
|
|
31
|
-
story_location: "{config_source}:
|
|
32
|
-
story_location_absolute: "{config_source}:
|
|
32
|
+
story_location: "{config_source}:stories_artifacts" # Relative path for file-system, Future will support URL for Jira/Linear/Trello
|
|
33
|
+
story_location_absolute: "{config_source}:stories_artifacts" # Absolute path for file operations
|
|
33
34
|
|
|
34
35
|
# Source files (file-system only)
|
|
35
36
|
epics_location: "{epics_artifacts}" # Directory containing epic*.md files
|
|
@@ -6,6 +6,9 @@ export interface BmadConfig {
|
|
|
6
6
|
user_skill_level?: string;
|
|
7
7
|
planning_artifacts?: string;
|
|
8
8
|
epics_artifacts?: string;
|
|
9
|
+
stories_artifacts?: string;
|
|
10
|
+
prd_artifacts?: string;
|
|
11
|
+
architecture_artifacts?: string;
|
|
9
12
|
implementation_artifacts?: string;
|
|
10
13
|
project_knowledge?: string;
|
|
11
14
|
output_folder?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-manager.d.ts","sourceRoot":"","sources":["../../src/services/config-manager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config-manager.d.ts","sourceRoot":"","sources":["../../src/services/config-manager.ts"],"names":[],"mappings":"AAsBA,MAAM,WAAW,UAAU;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,wBAAsB,UAAU,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAahF;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAiBxF;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAa5F;AAED;;GAEG;AACH,wBAAsB,YAAY,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAElF;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,GAAG,UAAU,CAUrF;AAED;;GAEG;AACH,wBAAsB,aAAa,CACjC,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,UAAU,GACvB,OAAO,CAAC,IAAI,CAAC,CAef;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CACpC,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,IAAI,CAAC,CAQf"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-manager.js","sourceRoot":"","sources":["../../src/services/config-manager.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,KAAK,IAAI,SAAS,EAAE,SAAS,IAAI,aAAa,EAAE,MAAM,MAAM,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAE3D,wBAAwB;AACxB,MAAM,gBAAgB,GAAG;IACvB,cAAc;IACd,WAAW;IACX,wBAAwB;IACxB,0BAA0B;IAC1B,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,0BAA0B;IAC1B,mBAAmB;IACnB,eAAe;CAChB,CAAC;
|
|
1
|
+
{"version":3,"file":"config-manager.js","sourceRoot":"","sources":["../../src/services/config-manager.ts"],"names":[],"mappings":"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"}
|