bmad-module-skill-forge 0.7.0 → 0.7.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.
Files changed (50) hide show
  1. package/docs/how-it-works.md +2 -0
  2. package/package.json +1 -1
  3. package/src/knowledge/ccc-bridge.md +2 -1
  4. package/src/knowledge/overview.md +1 -0
  5. package/src/knowledge/progressive-capability.md +2 -0
  6. package/src/knowledge/qmd-registry.md +6 -1
  7. package/src/knowledge/skf-knowledge-index.csv +1 -0
  8. package/src/knowledge/tool-resolution.md +55 -0
  9. package/src/workflows/analyze-source/steps-c/step-04-map-and-detect.md +2 -2
  10. package/src/workflows/audit-skill/steps-c/step-01-init.md +1 -1
  11. package/src/workflows/audit-skill/steps-c/step-02-re-index.md +3 -1
  12. package/src/workflows/audit-skill/steps-c/step-03-structural-diff.md +2 -2
  13. package/src/workflows/audit-skill/steps-c/step-04-semantic-diff.md +1 -1
  14. package/src/workflows/audit-skill/steps-c/step-05-severity-classify.md +1 -1
  15. package/src/workflows/brief-skill/data/skill-brief-schema.md +15 -0
  16. package/src/workflows/brief-skill/steps-c/step-01-gather-intent.md +16 -0
  17. package/src/workflows/brief-skill/steps-c/step-02-analyze-target.md +34 -6
  18. package/src/workflows/brief-skill/steps-c/step-03-scope-definition.md +14 -0
  19. package/src/workflows/brief-skill/steps-c/step-04-confirm-brief.md +20 -0
  20. package/src/workflows/brief-skill/steps-c/step-05-write-brief.md +34 -9
  21. package/src/workflows/brief-skill/workflow.md +1 -1
  22. package/src/workflows/create-skill/data/extraction-patterns.md +16 -3
  23. package/src/workflows/create-skill/data/source-resolution-protocols.md +16 -2
  24. package/src/workflows/create-skill/data/tier-degradation-rules.md +1 -1
  25. package/src/workflows/create-skill/steps-c/step-01-load-brief.md +5 -5
  26. package/src/workflows/create-skill/steps-c/step-02b-ccc-discover.md +5 -1
  27. package/src/workflows/create-skill/steps-c/step-03-extract.md +5 -1
  28. package/src/workflows/create-skill/steps-c/step-03b-fetch-temporal.md +16 -1
  29. package/src/workflows/create-skill/steps-c/step-03c-fetch-docs.md +9 -3
  30. package/src/workflows/create-skill/steps-c/step-04-enrich.md +2 -0
  31. package/src/workflows/create-skill/steps-c/step-05-compile.md +6 -1
  32. package/src/workflows/create-skill/steps-c/step-07-generate-artifacts.md +1 -1
  33. package/src/workflows/create-stack-skill/data/manifest-patterns.md +23 -1
  34. package/src/workflows/create-stack-skill/steps-c/step-01-init.md +2 -0
  35. package/src/workflows/create-stack-skill/steps-c/step-02-detect-manifests.md +2 -1
  36. package/src/workflows/create-stack-skill/steps-c/step-03-rank-and-confirm.md +3 -1
  37. package/src/workflows/create-stack-skill/steps-c/step-04-parallel-extract.md +26 -7
  38. package/src/workflows/create-stack-skill/steps-c/step-05-detect-integrations.md +5 -1
  39. package/src/workflows/quick-skill/steps-c/step-04-compile.md +1 -1
  40. package/src/workflows/setup-forge/steps-c/step-01b-ccc-index.md +4 -2
  41. package/src/workflows/test-skill/data/output-section-formats.md +15 -0
  42. package/src/workflows/test-skill/data/scoring-rules.md +12 -0
  43. package/src/workflows/test-skill/steps-c/step-03-coverage-check.md +39 -5
  44. package/src/workflows/test-skill/steps-c/step-04-coherence-check.md +48 -4
  45. package/src/workflows/test-skill/steps-c/step-04b-external-validators.md +9 -1
  46. package/src/workflows/test-skill/steps-c/step-05-score.md +2 -0
  47. package/src/workflows/update-skill/steps-c/step-02-detect-changes.md +1 -1
  48. package/src/workflows/update-skill/steps-c/step-03-re-extract.md +3 -1
  49. package/src/workflows/update-skill/steps-c/step-05-validate.md +1 -1
  50. package/tools/cli/lib/installer.js +4 -0
@@ -33,7 +33,7 @@ Validate the merged skill content against the agentskills.io specification, veri
33
33
 
34
34
  - 🎯 Focus ONLY on validation — do not fix issues (that's the user's choice)
35
35
  - 🚫 FORBIDDEN to modify merged content — validation is read-only
36
- - 💬 Launch parallel validation checks when subprocess available (Pattern 4)
36
+ - 💬 Launch parallel validation checks when subprocess available (Pattern 4): In Claude Code, use multiple parallel Agent tool calls. In Cursor, use parallel requests (IDE-dependent). In CLI, use `xargs -P`. See [knowledge/tool-resolution.md](../../../knowledge/tool-resolution.md)
37
37
  - ⚙️ If subprocess unavailable, perform checks sequentially in main thread
38
38
 
39
39
  ## EXECUTION PROTOCOLS:
@@ -185,6 +185,10 @@ class Installer {
185
185
  await fs.copy(src, path.join(skfDir, file));
186
186
  }
187
187
  }
188
+
189
+ // Write VERSION file for SKF version resolution in installed projects
190
+ const packageJson = require('../../../package.json');
191
+ await fs.writeFile(path.join(skfDir, 'VERSION'), packageJson.version, 'utf8');
188
192
  }
189
193
 
190
194
  /**