@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clfhhc/bmad-methods-skills",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Convert BMAD-METHOD agents and workflows to Claude Skills format",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.28.0",
@@ -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
- ### Skills Requiring Review
99
+ ### Common Adaptation Scenarios
100
100
 
101
- These skills have known path references needing adaptation:
101
+ You may encounter these common patterns that require specific handling:
102
102
 
103
- 1. **`skills/bmm/tech-writer/SKILL.md`** (line 25)
104
- - References: `{project-root}/_bmad/bmm/data/documentation-standards.md`
105
- - Suggested action: Migrate file to `skills/bmm/tech-writer/data/`
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. **`skills/bmm/tea/SKILL.md`** (lines 26-27)
108
- - References: `{project-root}/_bmad/bmm/testarch/knowledge/`
109
- - Suggested action: Create knowledge directory in skill, migrate fragments
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. **`skills/bmb/agent/data/reference/module-examples/trend-analyst.agent.yaml`** (line 48)
112
- - References: `{project-root}/_bmad/cis/tasks/competitor-trend-watch.xml`
113
- - Suggested action: Document as example (CIS module reference is teaching content)
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