@sigloch/se-engine 1.0.0 → 1.1.0
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.
|
@@ -32,7 +32,7 @@ export function computeReadiness(graph, policy, readyThreshold) {
|
|
|
32
32
|
//
|
|
33
33
|
// Die acht Themen-Dimensionen sind **Gruppen-Scores**: „wie sauber sind die REQ / die UC /
|
|
34
34
|
// die Module?". Ein Check, der EINMAL den ganzen Graphen prueft (AF-01..05 Freshness-Stempel,
|
|
35
|
-
// R-28 Ebenen-Praesenz), beantwortet diese Frage nicht — er gehoert auf die Gate-Achse
|
|
35
|
+
// R-28 Ebenen-Praesenz, entfallen mit CR-SM-247), beantwortet diese Frage nicht — er gehoert auf die Gate-Achse
|
|
36
36
|
// (`RULE_TO_PHASE`, wo er bereits steht). Er zaehlt hier deshalb **weder im Zaehler noch im
|
|
37
37
|
// Nenner**.
|
|
38
38
|
//
|
|
@@ -101,7 +101,7 @@ function computeApplicable(countByType) {
|
|
|
101
101
|
}
|
|
102
102
|
// CR-SM-239: zwei Beitragsarten, streng getrennt.
|
|
103
103
|
// - Elementregeln zaehlen ihre Gruppe (`domain: ['REQ']` → so viele REQ es gibt).
|
|
104
|
-
// - Graph-Regeln (`domain: ['graph']`) pruefen EINMAL den ganzen Graphen (AF-01..05
|
|
104
|
+
// - Graph-Regeln (`domain: ['graph']`) pruefen EINMAL den ganzen Graphen (AF-01..05).
|
|
105
105
|
// Sie tragen 1 bei — aber nur, wenn die Dimension ueberhaupt eine Elementmenge hat.
|
|
106
106
|
for (const def of ALL_RULE_DEFS) {
|
|
107
107
|
const dim = RULE_TO_DIMENSION[def.id];
|
package/dist/rule-classify.js
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
*
|
|
20
20
|
* Delta zum Spike-Original: RD-04 (Dekompositionsbreite, CR-SM-221) ergänzt;
|
|
21
21
|
* SC-01/SC-03 (BOK-CR-026) und MT-03 (CR-SM-223) sind aus dem Katalog gelöscht
|
|
22
|
-
* und daher hier entfernt. CR-SM-226: +R-28/FC-04/SC-04 (neue Regeln); IO-01
|
|
22
|
+
* und daher hier entfernt. CR-SM-226: +R-28/FC-04/SC-04 (neue Regeln; R-28 mit CR-SM-247 wieder entfallen); IO-01
|
|
23
23
|
* ist nicht mehr cross-module-only (Rationale-Text angepasst, Klasse unverändert).
|
|
24
24
|
* CR-GC-366: +R-30 (Wirkketten-Bindung) und +R-31 (io-Verdrahtung), beide Operator —
|
|
25
25
|
* ihr Fix fügt eine Trace hinzu und bewegt damit die Topologie.
|
|
@@ -75,7 +75,6 @@ export const CLASS_MAP = {
|
|
|
75
75
|
'SC-02': { class: 'Operator', rationale: 'link FLOW→SCHEMA via relation trace' },
|
|
76
76
|
'PH-01': { class: 'Operator', rationale: 'add logical MOD via compose trace' },
|
|
77
77
|
'IO-01': { class: 'Operator', rationale: 'add FLOW element + io traces between the FUNC pair' },
|
|
78
|
-
'R-28': { class: 'Operator', rationale: 'add FLOW/SCHEMA element(s) to bind architecture levels' },
|
|
79
78
|
// CR-GC-366: beide Fixes fuegen eine Trace hinzu, also Operator wie R-15 (compose) und R-10 (io).
|
|
80
79
|
'R-30': { class: 'Operator', rationale: 'add compose trace FCHAIN→FUNC to bind the function into a chain' },
|
|
81
80
|
'R-31': { class: 'Operator', rationale: 'add io traces FLOW→FUNC / FUNC→FLOW to wire the function up' },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigloch/se-engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@sigloch/contracts": ">=5 <
|
|
44
|
+
"@sigloch/contracts": ">=5 <7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@sigloch/contracts": "^
|
|
47
|
+
"@sigloch/contracts": "^6.0.0"
|
|
48
48
|
}
|
|
49
49
|
}
|