@clfhhc/bmad-methods-skills 0.0.1 → 0.0.2
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/package.json
CHANGED
|
@@ -96,21 +96,21 @@ Choose [A/M/D/K]:
|
|
|
96
96
|
| `{project-root}/_bmad/bmm/testarch/knowledge/` | `../../tea/knowledge/` (if migrated) |
|
|
97
97
|
| `{project-root}/_bmad/{module}/workflows/...` | `../../{workflow}/SKILL.md` |
|
|
98
98
|
|
|
99
|
-
###
|
|
99
|
+
### Common Adaptation Scenarios
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
You may encounter these common patterns that require specific handling:
|
|
102
102
|
|
|
103
|
-
1.
|
|
104
|
-
-
|
|
105
|
-
-
|
|
103
|
+
1. **Data File References**
|
|
104
|
+
- Pattern: References to centralized data files (e.g., `_bmad/bmm/data/...`).
|
|
105
|
+
- Action: **Migrate** these files into the skill's own `data/` directory to make it self-contained.
|
|
106
106
|
|
|
107
|
-
2.
|
|
108
|
-
-
|
|
109
|
-
-
|
|
107
|
+
2. **Knowledge Bases**
|
|
108
|
+
- Pattern: References to knowledge directories (e.g., `_bmad/bmm/testarch/knowledge/`).
|
|
109
|
+
- Action: **Migrate** the directory into the skill and update the path to be relative.
|
|
110
110
|
|
|
111
|
-
3.
|
|
112
|
-
-
|
|
113
|
-
-
|
|
111
|
+
3. **Cross-Module Examples**
|
|
112
|
+
- Pattern: References to other modules in examples (e.g., `_bmad/cis/tasks/...` in a different module).
|
|
113
|
+
- Action: **Keep In Place** (Document) or **Adapt** to a relative path if the target skill is also installed.
|
|
114
114
|
|
|
115
115
|
---
|
|
116
116
|
|