@inerrata-corporation/errata 2.0.0-dev.78 → 2.0.0-dev.79
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/errata.mjs +9 -2
- package/package.json +1 -1
package/errata.mjs
CHANGED
|
@@ -15290,7 +15290,14 @@ var init_edge_rules = __esm({
|
|
|
15290
15290
|
// SOLVED_BY sources: Vulnerability (v1 comment) + Problem/RootCause
|
|
15291
15291
|
// (upstream design-problem.ts + triage.ts mint both).
|
|
15292
15292
|
SOLVED_BY: { from: ["Vulnerability", "Problem", "RootCause"], to: ["Solution"] },
|
|
15293
|
-
FIXED_BY
|
|
15293
|
+
// FIXED_BY sources mirror SOLVED_BY's (same ailment→fix semantics; live-graph
|
|
15294
|
+
// census 2026-07-14: 512 Problem + 13 RootCause sources, zero others besides
|
|
15295
|
+
// 3 REVERSED Solution→Problem edges the missing `from` let through — the
|
|
15296
|
+
// "Problem solved by Problem" splash bug. A reversed resolution edge is NOT
|
|
15297
|
+
// mechanically flippable (half the sample were PoC-not-fix claims), so the
|
|
15298
|
+
// door rejects rather than repairs; a correct re-emission lands via
|
|
15299
|
+
// recognition-at-the-door.
|
|
15300
|
+
FIXED_BY: { from: ["Vulnerability", "Problem", "RootCause"], to: ["Solution"] },
|
|
15294
15301
|
// ── Triage family (upstream castalia.ts: Problem —TRIAGED_BY→ Triage —{INDICATES|CONFIRMS}→ cause) ──
|
|
15295
15302
|
// Two-edge differential model (T3-rename): INDICATES = provisional candidate,
|
|
15296
15303
|
// CONFIRMS = promoted router (a discriminator exists). Same endpoint matrix.
|
|
@@ -43321,7 +43328,7 @@ function startLoopLagMonitor(thresholdMs = 1e3) {
|
|
|
43321
43328
|
}
|
|
43322
43329
|
|
|
43323
43330
|
// src/engine.ts
|
|
43324
|
-
var DAEMON_VERSION = true ? "2.0.0-dev.
|
|
43331
|
+
var DAEMON_VERSION = true ? "2.0.0-dev.79" : "2.0.0-alpha.0";
|
|
43325
43332
|
var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
|
|
43326
43333
|
var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
|
|
43327
43334
|
var GIT_OP_MUTE_MS = 4e3;
|