ma-agents 3.15.3 → 3.15.4
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.
|
@@ -14294,7 +14294,7 @@ function renderOrphanPage(manifest, outDir) {
|
|
|
14294
14294
|
}
|
|
14295
14295
|
|
|
14296
14296
|
// lib/knowledge-atlas/src/generate.ts
|
|
14297
|
-
var MANIFEST_VERSION =
|
|
14297
|
+
var MANIFEST_VERSION = 3;
|
|
14298
14298
|
function normPath(p) {
|
|
14299
14299
|
return path11.resolve(p).replace(/[\\/]+$/, "");
|
|
14300
14300
|
}
|
|
@@ -51,8 +51,16 @@ import { renderOrphanPage } from './render/orphan.js';
|
|
|
51
51
|
* pre-29.8 engine) has NO such nodes/edges cached; a version bump forces the
|
|
52
52
|
* one-time full re-extraction that materializes them (verified on Prophesee:
|
|
53
53
|
* without this, an in-place re-run kept 0 edges).
|
|
54
|
+
*
|
|
55
|
+
* 3.15.3 bumps 2 → 3: `classifyFile()` no longer types `prd-validation-report.md`
|
|
56
|
+
* (and other prd-derivative reports) as 'prd'. The DocType is baked into each
|
|
57
|
+
* cached FileRecord, and the incremental diff reuses unchanged records verbatim —
|
|
58
|
+
* so on an in-place re-run those files kept their old 'prd' type and continued
|
|
59
|
+
* winning the requirement def-site election. Bumping the version forces the
|
|
60
|
+
* one-time full re-extraction that re-classifies them (verified on Prophesys:
|
|
61
|
+
* without this, FR links kept pointing at prd-validation-report.html).
|
|
54
62
|
*/
|
|
55
|
-
const MANIFEST_VERSION =
|
|
63
|
+
const MANIFEST_VERSION = 3;
|
|
56
64
|
|
|
57
65
|
/**
|
|
58
66
|
* Path helpers for the Story 29.7 purge safety gates (MUST-FIX #1).
|