bmad-module-skill-forge 0.8.2 → 0.8.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/docs/how-it-works.md
CHANGED
|
@@ -40,7 +40,7 @@ Each workflow directory contains these files, and each has a specific job:
|
|
|
40
40
|
|---------------------------|---------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
|
|
41
41
|
| `forger.agent.yaml` | Expert persona — identity, principles, critical actions, menu of triggers | First — always in context |
|
|
42
42
|
| `skf-knowledge-index.csv` | Knowledge fragment index — id, name, tags, tier, file path | Read by steps to decide which fragments to load |
|
|
43
|
-
| `knowledge/*.md` |
|
|
43
|
+
| `knowledge/*.md` | 13 reusable fragments + overview.md index — cross-cutting principles and patterns (e.g., `zero-hallucination.md`, `confidence-tiers.md`, `ccc-bridge.md`) | Selectively read into context when a step directs |
|
|
44
44
|
|
|
45
45
|
```mermaid
|
|
46
46
|
flowchart LR
|
|
@@ -421,7 +421,7 @@ src/
|
|
|
421
421
|
│ └── README.md
|
|
422
422
|
├── knowledge/
|
|
423
423
|
│ ├── skf-knowledge-index.csv
|
|
424
|
-
│ └── *.md (
|
|
424
|
+
│ └── *.md (13 knowledge fragments + overview.md index)
|
|
425
425
|
└── workflows/
|
|
426
426
|
├── setup-forge/
|
|
427
427
|
├── analyze-source/
|
package/docs/workflows.md
CHANGED
|
@@ -133,7 +133,7 @@ SKF has 12 workflows. You trigger them by typing commands to [Ferris](../agents/
|
|
|
133
133
|
|
|
134
134
|
**Command:** `@Ferris TS`
|
|
135
135
|
|
|
136
|
-
**Purpose:** Cognitive completeness verification. Quality gate before export.
|
|
136
|
+
**Purpose:** Cognitive completeness verification. Naive and contextual modes. Quality gate before export.
|
|
137
137
|
|
|
138
138
|
**When to Use:** After creating or updating a skill, before exporting.
|
|
139
139
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-module-skill-forge",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.3",
|
|
5
5
|
"description": "BMAD module — Turn code and docs into instructions AI agents can actually follow. Progressive capability tiers (Quick/Forge/Forge+/Deep).",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bmad",
|
|
@@ -82,7 +82,7 @@ Scripts and assets are file-level artifacts, not code exports. They follow the *
|
|
|
82
82
|
- Exclude generated files (`dist/`, `build/`, `.webpack/` output)
|
|
83
83
|
- Exclude vendored/third-party files
|
|
84
84
|
- Flag files >500 lines for user confirmation (may be too large for skill package)
|
|
85
|
-
- If `scripts_intent
|
|
85
|
+
- If `scripts_intent` is absent from the brief, treat as `"detect"` (auto-detection is the default). If `scripts_intent` is explicitly `"none"`, skip scripts detection. Same rule applies to `assets_intent`.
|
|
86
86
|
|
|
87
87
|
### Provenance and Hashing
|
|
88
88
|
|
|
@@ -192,7 +192,9 @@ Use the entry point as the authoritative source for `metadata.json`'s `exports[]
|
|
|
192
192
|
|
|
193
193
|
### 4c. Detect and Inventory Scripts/Assets
|
|
194
194
|
|
|
195
|
-
**If `scripts_intent
|
|
195
|
+
**Default resolution:** If `scripts_intent` is absent from the brief, treat as `"detect"` (auto-detection). If `assets_intent` is absent, treat as `"detect"`. Only an explicit `"none"` value disables detection.
|
|
196
|
+
|
|
197
|
+
**If `scripts_intent` is `"none"` AND `assets_intent` is `"none"`:** Skip this section entirely. **If only one is `"none"`:** Skip that category only, proceed with the other.
|
|
196
198
|
|
|
197
199
|
After export extraction, scan the source for scripts and assets using the detection patterns in `{extractionPatternsTracingData}`:
|
|
198
200
|
|