@inerrata-corporation/errata 2.0.0-dev.85 → 2.0.0-dev.87
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/consolidate-worker.mjs +25 -0
- package/errata.mjs +7316 -5
- package/package.json +1 -1
- package/pass-worker.mjs +28 -1
package/consolidate-worker.mjs
CHANGED
|
@@ -54,6 +54,13 @@ var init_castalia = __esm({
|
|
|
54
54
|
"Paradigm",
|
|
55
55
|
"DataStructure",
|
|
56
56
|
"AgentModel",
|
|
57
|
+
// An OS executable / CLI program (`powercfg`, `git`, `docker` — SP-tooltopic).
|
|
58
|
+
// NAME-keyed identity (`toolCanonicalId`), deliberately unversioned: `powercfg`
|
|
59
|
+
// is one node across Windows builds; OS scoping rides `RUNS_ON`, packaging rides
|
|
60
|
+
// `PROVIDED_BY → Package`. Registry-verified before public minting (tldr-pages
|
|
61
|
+
// is the deps.dev analog) — an unverifiable name (typo, org-internal CLI) is
|
|
62
|
+
// skipped, never minted, so the verifier doubles as the privacy membrane.
|
|
63
|
+
"Tool",
|
|
57
64
|
// An OPAQUE anchor identity in a project's stratum (PJ-anchors · plan §6c).
|
|
58
65
|
// Deliberately NOT one of the CODE_NODE_LABELS below — those are the local code
|
|
59
66
|
// graph and never cross. A cloud `Symbol` carries the salted `sym_` id and a
|
|
@@ -98,6 +105,9 @@ var init_castalia = __esm({
|
|
|
98
105
|
"PROVIDED_BY",
|
|
99
106
|
"SUPPORTS",
|
|
100
107
|
"RUNS_ON",
|
|
108
|
+
// Tool spine (SP-tooltopic): knowledge → Tool anchor ("before calling X
|
|
109
|
+
// consider Y"). Hub-suppressed like OCCURS_IN — see EDGE_RULES for endpoints.
|
|
110
|
+
"CONCERNS",
|
|
101
111
|
"IMPLEMENTATION_OF",
|
|
102
112
|
"SUPERSEDED_BY",
|
|
103
113
|
// canonical direction (older → newer) — Finding 1 fixed
|
|
@@ -248,6 +258,9 @@ var init_castalia = __esm({
|
|
|
248
258
|
PROVIDED_BY: 0.4,
|
|
249
259
|
SUPPORTS: 0.4,
|
|
250
260
|
RUNS_ON: 0.4,
|
|
261
|
+
// Tool spine (SP-tooltopic): knowledge → Tool anchor, hub-suppressed like
|
|
262
|
+
// OCCURS_IN — a `git` node collects hundreds of anchors like `typescript` does.
|
|
263
|
+
CONCERNS: 0.3,
|
|
251
264
|
IMPLEMENTATION_OF: 0.5,
|
|
252
265
|
SUPERSEDED_BY: 0,
|
|
253
266
|
WRITTEN_IN: 0.3,
|
|
@@ -15173,6 +15186,15 @@ var init_edge_rules = __esm({
|
|
|
15173
15186
|
OCCURS_IN: { to: ["Language"] },
|
|
15174
15187
|
OCCURS_ON: { to: ["OperatingSystem"] },
|
|
15175
15188
|
RUNS_ON: { to: ["OperatingSystem"] },
|
|
15189
|
+
// ── Tool spine (SP-tooltopic) ──
|
|
15190
|
+
// CONCERNS is the knowledge→executable anchor ("before calling X consider Y"):
|
|
15191
|
+
// a Claim/Problem/Solution about a Tool hangs off its Tool node so it can be
|
|
15192
|
+
// recalled at the moment of invocation. New type, so constraining it invents
|
|
15193
|
+
// nothing. NOTE: `PROVIDED_BY` (Tool → Package packaging join) is deliberately
|
|
15194
|
+
// NOT ruled here — the type pre-exists with broader extractor senses, and a
|
|
15195
|
+
// new rule on an old type would reject legitimate live flows (reject-never-flip
|
|
15196
|
+
// cuts both ways: only rule types you introduce or senses that are documented).
|
|
15197
|
+
CONCERNS: { from: ["Problem", "Solution", "RootCause", "Claim", "Pattern"], to: ["Tool"] },
|
|
15176
15198
|
OPERATES_ON: { from: ["Algorithm"], to: ["DataStructure"] },
|
|
15177
15199
|
INVOLVES: { from: ["Problem", "Solution"], to: ["DataStructure"] },
|
|
15178
15200
|
// ── Taxonomy (Track 4 Stream C: MITRE CWE `ChildOf` → `Weakness —IS_A→ Weakness`) ──
|
|
@@ -15247,6 +15269,9 @@ var init_wire = __esm({
|
|
|
15247
15269
|
"Triage",
|
|
15248
15270
|
"Claim",
|
|
15249
15271
|
"AntiPattern",
|
|
15272
|
+
// Tool spine (SP-tooltopic): OS executables, minted by the stream-T importer
|
|
15273
|
+
// (tldr-verified) and referenced by agent CONCERNS anchors.
|
|
15274
|
+
"Tool",
|
|
15250
15275
|
// PJ-anchors (§6c): the OPAQUE project anchor identity — salted `sym_` id +
|
|
15251
15276
|
// coarse kind, no path, no qualified name. Writable ONLY on a batch with a
|
|
15252
15277
|
// verified projectId; the ingest door rejects it outright otherwise, so its
|