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.
- package/docs/how-it-works.md +2 -0
- package/package.json +1 -1
- package/src/knowledge/ccc-bridge.md +2 -1
- package/src/knowledge/overview.md +1 -0
- package/src/knowledge/progressive-capability.md +2 -0
- package/src/knowledge/qmd-registry.md +6 -1
- package/src/knowledge/skf-knowledge-index.csv +1 -0
- package/src/knowledge/tool-resolution.md +55 -0
- package/src/workflows/analyze-source/steps-c/step-04-map-and-detect.md +2 -2
- package/src/workflows/audit-skill/steps-c/step-01-init.md +1 -1
- package/src/workflows/audit-skill/steps-c/step-02-re-index.md +3 -1
- package/src/workflows/audit-skill/steps-c/step-03-structural-diff.md +2 -2
- package/src/workflows/audit-skill/steps-c/step-04-semantic-diff.md +1 -1
- package/src/workflows/audit-skill/steps-c/step-05-severity-classify.md +1 -1
- package/src/workflows/brief-skill/data/skill-brief-schema.md +15 -0
- package/src/workflows/brief-skill/steps-c/step-01-gather-intent.md +16 -0
- package/src/workflows/brief-skill/steps-c/step-02-analyze-target.md +34 -6
- package/src/workflows/brief-skill/steps-c/step-03-scope-definition.md +14 -0
- package/src/workflows/brief-skill/steps-c/step-04-confirm-brief.md +20 -0
- package/src/workflows/brief-skill/steps-c/step-05-write-brief.md +34 -9
- package/src/workflows/brief-skill/workflow.md +1 -1
- package/src/workflows/create-skill/data/extraction-patterns.md +16 -3
- package/src/workflows/create-skill/data/source-resolution-protocols.md +16 -2
- package/src/workflows/create-skill/data/tier-degradation-rules.md +1 -1
- package/src/workflows/create-skill/steps-c/step-01-load-brief.md +5 -5
- package/src/workflows/create-skill/steps-c/step-02b-ccc-discover.md +5 -1
- package/src/workflows/create-skill/steps-c/step-03-extract.md +5 -1
- package/src/workflows/create-skill/steps-c/step-03b-fetch-temporal.md +16 -1
- package/src/workflows/create-skill/steps-c/step-03c-fetch-docs.md +9 -3
- package/src/workflows/create-skill/steps-c/step-04-enrich.md +2 -0
- package/src/workflows/create-skill/steps-c/step-05-compile.md +6 -1
- package/src/workflows/create-skill/steps-c/step-07-generate-artifacts.md +1 -1
- package/src/workflows/create-stack-skill/data/manifest-patterns.md +23 -1
- package/src/workflows/create-stack-skill/steps-c/step-01-init.md +2 -0
- package/src/workflows/create-stack-skill/steps-c/step-02-detect-manifests.md +2 -1
- package/src/workflows/create-stack-skill/steps-c/step-03-rank-and-confirm.md +3 -1
- package/src/workflows/create-stack-skill/steps-c/step-04-parallel-extract.md +26 -7
- package/src/workflows/create-stack-skill/steps-c/step-05-detect-integrations.md +5 -1
- package/src/workflows/quick-skill/steps-c/step-04-compile.md +1 -1
- package/src/workflows/setup-forge/steps-c/step-01b-ccc-index.md +4 -2
- package/src/workflows/test-skill/data/output-section-formats.md +15 -0
- package/src/workflows/test-skill/data/scoring-rules.md +12 -0
- package/src/workflows/test-skill/steps-c/step-03-coverage-check.md +39 -5
- package/src/workflows/test-skill/steps-c/step-04-coherence-check.md +48 -4
- package/src/workflows/test-skill/steps-c/step-04b-external-validators.md +9 -1
- package/src/workflows/test-skill/steps-c/step-05-score.md +2 -0
- package/src/workflows/update-skill/steps-c/step-02-detect-changes.md +1 -1
- package/src/workflows/update-skill/steps-c/step-03-re-extract.md +3 -1
- package/src/workflows/update-skill/steps-c/step-05-validate.md +1 -1
- 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
|
/**
|