@tiinex/core 0.31.0 → 0.32.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiinex/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "Shared host-neutral Tiinex implementation core for artifacts, schemas, validation, lineage, grounding, Handoffs, provenance and deterministic workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": true,
|
|
@@ -173,12 +173,12 @@
|
|
|
173
173
|
"type": "git",
|
|
174
174
|
"url": "git+https://github.com/Tiinex/core.git"
|
|
175
175
|
},
|
|
176
|
-
"gitHead": "
|
|
176
|
+
"gitHead": "036df699dd3a0455f849c4c4e421fee7c969e85a",
|
|
177
177
|
"tiinexRelease": {
|
|
178
178
|
"policy": "tiinex.master-npm-release.v1",
|
|
179
|
-
"sourceCommit": "
|
|
180
|
-
"sourceTree": "
|
|
179
|
+
"sourceCommit": "036df699dd3a0455f849c4c4e421fee7c969e85a",
|
|
180
|
+
"sourceTree": "540c88695f9de86c928a737e1ea2c51b5be5cd82",
|
|
181
181
|
"repository": "Tiinex/core",
|
|
182
|
-
"previousVersion": "0.
|
|
182
|
+
"previousVersion": "0.31.0"
|
|
183
183
|
}
|
|
184
184
|
}
|
|
@@ -30,7 +30,26 @@ export function deriveHandoffSiblingAllocation({ parentInspection = null, select
|
|
|
30
30
|
workspaceId: String(route.workspaceId || '').trim(),
|
|
31
31
|
workspaceRelativeHandoffPath: String(route.workspaceRelativeHandoffPath || '').trim()
|
|
32
32
|
}));
|
|
33
|
-
if (!routes.length)
|
|
33
|
+
if (!routes.length) {
|
|
34
|
+
const siblingIndex = 1;
|
|
35
|
+
if (explicit && explicit !== siblingIndex) return blocked('explicit-sibling-index-conflicts-with-qualified-pointerless-topology', { expectedSiblingIndex: siblingIndex });
|
|
36
|
+
return freeze({
|
|
37
|
+
state: 'qualified',
|
|
38
|
+
siblingIndex,
|
|
39
|
+
childDimension: parentDimension ? `${String(parentDimension).trim()}-${siblingIndex}` : '',
|
|
40
|
+
allocationMode: 'qualified-parent-pointerless-default',
|
|
41
|
+
explicitOverride: explicit ? 'matched-derived-value' : 'not-supplied',
|
|
42
|
+
reasonCode: '',
|
|
43
|
+
provenance: {
|
|
44
|
+
...provenanceBase({ parentPackagePath, parentPackageSha256, parentDimension, explicitSiblingIndex: explicit }),
|
|
45
|
+
basis: 'qualified-parent-pointerless-default',
|
|
46
|
+
routeOrdinal: siblingIndex,
|
|
47
|
+
qualifiedRouteCount: 0,
|
|
48
|
+
pointerOrder: []
|
|
49
|
+
},
|
|
50
|
+
boundary: allocationBoundary()
|
|
51
|
+
});
|
|
52
|
+
}
|
|
34
53
|
|
|
35
54
|
const qualified = [];
|
|
36
55
|
const seenDimensions = new Set();
|
|
@@ -2,6 +2,7 @@ import { parseArtifactMarkdown } from '../../../artifacts/artifact.parse.js';
|
|
|
2
2
|
import { auditPortableRecord } from '../audit/audit.capability.js';
|
|
3
3
|
import { classifyParentRecoveryReference } from '../../../lineage/parentRecoveryReference.js';
|
|
4
4
|
import { buildArtifactCreationContract } from '../../../schemas/creation.contracts.js';
|
|
5
|
+
import { canonicalC14nV2SelfState } from '../../../integrity/integrity.c14nV2.js';
|
|
5
6
|
|
|
6
7
|
export const PORTABLE_AUTHORING_PARENT_SCHEMA_ID = 'tiinex.portable.authoring-parent.v1';
|
|
7
8
|
|
|
@@ -12,8 +13,15 @@ export function projectPortableAuthoringParent(input = {}) {
|
|
|
12
13
|
let parsed;
|
|
13
14
|
try { parsed = parseArtifactMarkdown(record.markdown); }
|
|
14
15
|
catch { return freeze({ schema: PORTABLE_AUTHORING_PARENT_SCHEMA_ID, status: 'blocked', parentRecord: null, findings: [{ severity: 'error', code: 'portable.authoring-parent.parse-failed', message: 'Selected Parent bytes are not a readable Tiinex artifact.' }], operationBoundary: boundary() }); }
|
|
15
|
-
const audit = auditPortableRecord({ ...record, title: parsed.title, schemaId: parsed.envelope?.current?.schema?.id, currentSchemaId: parsed.envelope?.current?.schema?.id, parent: parsed.envelope?.parent });
|
|
16
|
-
|
|
16
|
+
const audit = auditPortableRecord({ ...record, title: parsed.title, schemaId: parsed.envelope?.current?.schema?.id, currentSchemaId: parsed.envelope?.current?.schema?.id, parent: parsed.envelope?.parent }, { requireExactSchemaAuthority: true });
|
|
17
|
+
const auditErrors = (audit.findings || []).filter((item) => item.severity === 'error');
|
|
18
|
+
const historicalParentRecoveryDebt = auditErrors.length > 0 && auditErrors.every((item) => String(item.code || '') === 'root.parent.recovery.workspace-qualified.malformed');
|
|
19
|
+
const selfIntegrity = canonicalC14nV2SelfState(record.markdown || '');
|
|
20
|
+
const directParentUsableWithHistoricalDebt = historicalParentRecoveryDebt
|
|
21
|
+
&& audit.qualification?.exact === true
|
|
22
|
+
&& audit.schemaValidationAuthority?.state === 'qualified'
|
|
23
|
+
&& selfIntegrity.state === 'verified';
|
|
24
|
+
if ((audit.status !== 'readable' && !directParentUsableWithHistoricalDebt) || audit.qualification?.exact !== true || (auditErrors.length && !directParentUsableWithHistoricalDebt)) return freeze({ schema: PORTABLE_AUTHORING_PARENT_SCHEMA_ID, status: 'blocked', parentRecord: null, findings: [{ severity: 'error', code: 'portable.authoring-parent.unqualified', message: 'Selected Parent must pass exact shared audit before it can be used for native authoring.' }], operationBoundary: boundary() });
|
|
17
25
|
const schemaId = String(parsed.envelope?.current?.schema?.id || audit.schemaId || '');
|
|
18
26
|
const schemaTarget = String(parsed.envelope?.current?.schema?.target || '');
|
|
19
27
|
const createdAt = String(parsed.envelope?.current?.createdAt || audit.artifact?.createdAt || '');
|
|
@@ -36,9 +44,11 @@ export function projectPortableAuthoringParent(input = {}) {
|
|
|
36
44
|
markdown: record.markdown, sourceMode: String(record.sourceMode || 'portable-node-local'),
|
|
37
45
|
schemaReferenceAuthority
|
|
38
46
|
},
|
|
39
|
-
findings: [],
|
|
47
|
+
findings: directParentUsableWithHistoricalDebt ? [{ severity: 'warning', code: 'portable.authoring-parent.historical-ancestor-recovery-debt', message: 'Selected Parent has historical malformed Workspace-qualified recovery references to its own ancestor. Direct child authoring is allowed from the Parent exact current bytes and verified self integrity; that ancestor debt is not repaired, inherited, or upgraded.' }] : [],
|
|
40
48
|
operationBoundary: boundary(),
|
|
41
|
-
boundary:
|
|
49
|
+
boundary: directParentUsableWithHistoricalDebt
|
|
50
|
+
? 'Projects exact supplied Parent current bytes for direct continuation while preserving unresolved historical ancestor-recovery debt on the Parent itself. The child does not inherit or repair that ancestor locator.'
|
|
51
|
+
: 'Projects exact supplied Parent bytes and declared current schema locator into shared draft-authoring input. A declared schema locator remains unresolved and is not upgraded to publication or canonical reference authority.'
|
|
42
52
|
});
|
|
43
53
|
}
|
|
44
54
|
|
|
@@ -5,6 +5,7 @@ import { integrityMethodReferenceAuthorityForCreation } from '../../../integrity
|
|
|
5
5
|
import { inspectPortableLineageIntegrity } from '../lineage/lineage.integrity.plan.js';
|
|
6
6
|
import { portableFinding } from '../findings.js';
|
|
7
7
|
import { qualifyTiinexRouteArtifact } from '../handoff/routeArtifactConformance.js';
|
|
8
|
+
import { classifyParentRecoveryReference } from '../../../lineage/parentRecoveryReference.js';
|
|
8
9
|
|
|
9
10
|
export const PORTABLE_EDITOR_ASSISTANCE_SCHEMA_ID = 'tiinex.portable.editor-assistance.v1';
|
|
10
11
|
|
|
@@ -49,6 +50,28 @@ function projectDocument(record = {}, records = [], lineageInspection = null) {
|
|
|
49
50
|
diagnosticCodes: workspacePackagingRepair.diagnosticCodes,
|
|
50
51
|
boundary: 'Repairs only a tiinex.workspace.v1 artifact whose replacement independently qualifies through the same exact registered Workspace contract and c14n-v2 self-integrity requirements used by Handoff package manufacture. Existing resolver-capable Current Schema references are preserved; permalink refresh is a separate resolution operation and must not be inferred from integrity repair.'
|
|
51
52
|
}));
|
|
53
|
+
const referenceRepair = deterministicReferenceHygieneRepair(record, audit, markdown);
|
|
54
|
+
const referenceQualification = referenceRepair.state === 'ready'
|
|
55
|
+
? qualifyReplacementAgainstSharedGuardrails(record, records, referenceRepair.markdown, {
|
|
56
|
+
allowQualifiedExternalParentUnresolved: true,
|
|
57
|
+
allowExistingWarningCodes: (audit.findings || []).filter((item) => item.severity === 'warning').map((item) => String(item.code || ''))
|
|
58
|
+
})
|
|
59
|
+
: { state: 'unavailable' };
|
|
60
|
+
if (referenceRepair.state === 'ready' && referenceRepair.markdown !== markdown && referenceQualification.state === 'qualified') actions.push(freeze({
|
|
61
|
+
id: 'repair-qualified-references-and-self-integrity',
|
|
62
|
+
title: referenceRepair.parentReferenceChanged && referenceRepair.schemaReferenceChanged
|
|
63
|
+
? 'Repair Tiinex Parent/schema references and self integrity'
|
|
64
|
+
: referenceRepair.parentReferenceChanged
|
|
65
|
+
? 'Repair Tiinex Parent references and self integrity'
|
|
66
|
+
: 'Repair Tiinex schema reference and self integrity',
|
|
67
|
+
kind: 'replace-document',
|
|
68
|
+
qualification: 'deterministic-shared-core',
|
|
69
|
+
sourceSha256: sha256Hex(new TextEncoder().encode(markdown)),
|
|
70
|
+
replacementMarkdown: referenceRepair.markdown,
|
|
71
|
+
diagnosticCodes: referenceRepair.diagnosticCodes,
|
|
72
|
+
boundary: 'Repairs only deterministically malformed Workspace-qualified Parent recovery locators and/or a bare Current Schema id when exact qualified current-schema source authority exists; reseals self integrity and exposes the replacement only after shared audit and loaded-descendant guardrails re-qualify it. External Parent availability is not invented.'
|
|
73
|
+
}));
|
|
74
|
+
|
|
52
75
|
const integrityRepair = deterministicIntegrityHygieneRepair(markdown, audit.findings || []);
|
|
53
76
|
const repairQualification = integrityRepair.state === 'ready'
|
|
54
77
|
? qualifyReplacementAgainstSharedGuardrails(record, records, integrityRepair.markdown)
|
|
@@ -117,25 +140,119 @@ function deterministicWorkspacePackagingRepair(record = {}, audit = {}, markdown
|
|
|
117
140
|
return freeze({ state: 'ready', markdown: candidate, schemaReferenceChanged, diagnosticCodes });
|
|
118
141
|
}
|
|
119
142
|
|
|
120
|
-
function qualifyReplacementAgainstSharedGuardrails(record = {}, records = [], replacementMarkdown = '') {
|
|
143
|
+
function qualifyReplacementAgainstSharedGuardrails(record = {}, records = [], replacementMarkdown = '', options = {}) {
|
|
121
144
|
const focusPath = norm(record.path || record.id || '');
|
|
122
145
|
if (!focusPath || !replacementMarkdown) return freeze({ state: 'unavailable', reason: 'replacement-or-focus-unavailable' });
|
|
123
146
|
const replacedRecords = records.map((item) => norm(item.path || item.id || '') === focusPath ? { ...item, markdown: replacementMarkdown } : item);
|
|
124
147
|
const replacementRecord = replacedRecords.find((item) => norm(item.path || item.id || '') === focusPath);
|
|
125
148
|
if (!replacementRecord) return freeze({ state: 'unavailable', reason: 'focused-record-unavailable' });
|
|
126
149
|
const replacementAudit = auditPortableRecord(replacementRecord, { requireExactSchemaAuthority: true });
|
|
127
|
-
const
|
|
150
|
+
const allowedWarnings = new Set((options.allowExistingWarningCodes || []).map((item) => String(item || '')));
|
|
151
|
+
const auditBlockers = [...(replacementAudit.findings || [])].filter((item) => {
|
|
152
|
+
if (item.severity === 'error') return true;
|
|
153
|
+
if (item.severity !== 'warning') return false;
|
|
154
|
+
return !allowedWarnings.has(String(item.code || ''));
|
|
155
|
+
});
|
|
128
156
|
if (auditBlockers.length) return freeze({ state: 'blocked', reason: 'replacement-shared-audit-not-clean', blockerCodes: auditBlockers.map((item) => String(item.code || '')) });
|
|
129
157
|
|
|
130
158
|
const before = inspectPortableLineageIntegrity({ records });
|
|
131
159
|
const after = inspectPortableLineageIntegrity({ records: replacedRecords });
|
|
132
160
|
const beforeFocus = (before.artifacts || []).find((item) => norm(item.path || '') === focusPath);
|
|
133
161
|
const affectedPaths = new Set([focusPath, ...((beforeFocus?.downstreamDescendants || []).map((item) => norm(item.path || '')).filter(Boolean))]);
|
|
134
|
-
const lineageBlockers = (after.artifacts || []).filter((item) =>
|
|
162
|
+
const lineageBlockers = (after.artifacts || []).filter((item) => {
|
|
163
|
+
if (!affectedPaths.has(norm(item.path || '')) || item.state === 'healthy') return false;
|
|
164
|
+
if (options.allowQualifiedExternalParentUnresolved === true && norm(item.path || '') === focusPath && item.state === 'parent-unresolved' && hasQualifiedWorkspaceParentReference(replacementMarkdown)) return false;
|
|
165
|
+
return true;
|
|
166
|
+
});
|
|
135
167
|
if (lineageBlockers.length) return freeze({ state: 'blocked', reason: 'replacement-shared-lineage-not-clean', blockers: lineageBlockers.map((item) => ({ path: item.path, state: item.state })) });
|
|
136
168
|
return freeze({ state: 'qualified', affectedPaths: [...affectedPaths] });
|
|
137
169
|
}
|
|
138
170
|
|
|
171
|
+
function deterministicReferenceHygieneRepair(record = {}, audit = {}, markdown = '') {
|
|
172
|
+
const source = String(markdown || '');
|
|
173
|
+
if (!source) return freeze({ state: 'unavailable' });
|
|
174
|
+
let candidate = source;
|
|
175
|
+
let parentReferenceChanged = false;
|
|
176
|
+
let schemaReferenceChanged = false;
|
|
177
|
+
const diagnosticCodes = [];
|
|
178
|
+
|
|
179
|
+
const lines = candidate.replace(/\r\n?/g, '\n').split('\n');
|
|
180
|
+
const parentStart = lines.findIndex((line) => /^\s*-\s+Parent\s*$/.test(line));
|
|
181
|
+
if (parentStart >= 0) {
|
|
182
|
+
let parentEnd = lines.length;
|
|
183
|
+
for (let index = parentStart + 1; index < lines.length; index += 1) {
|
|
184
|
+
if (/^-\s+\S/.test(lines[index])) { parentEnd = index; break; }
|
|
185
|
+
}
|
|
186
|
+
for (let index = parentStart + 1; index < parentEnd; index += 1) {
|
|
187
|
+
lines[index] = lines[index].replace(/\]\(([^)]+::[^)]+)\)/g, (whole, target) => {
|
|
188
|
+
const normalized = normalizeMalformedWorkspaceQualifiedTarget(target);
|
|
189
|
+
if (!normalized || normalized === target) return whole;
|
|
190
|
+
parentReferenceChanged = true;
|
|
191
|
+
return `](${normalized})`;
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
if (parentReferenceChanged) {
|
|
196
|
+
candidate = lines.join('\n');
|
|
197
|
+
const integrityLines = candidate.replace(/\r\n?/g, '\n').split('\n');
|
|
198
|
+
const integrityStart = integrityLines.findIndex((line) => line.trim() === '# Continuity Integrity');
|
|
199
|
+
if (integrityStart >= 0) {
|
|
200
|
+
for (let index = integrityStart + 1; index < integrityLines.length; index += 1) {
|
|
201
|
+
integrityLines[index] = integrityLines[index].replace(/\]\(([^)]+::[^)]+)\)/g, (whole, target) => {
|
|
202
|
+
const normalized = normalizeMalformedWorkspaceQualifiedTarget(target);
|
|
203
|
+
return normalized && normalized !== target ? `](${normalized})` : whole;
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
candidate = integrityLines.join('\n');
|
|
207
|
+
}
|
|
208
|
+
diagnosticCodes.push('root.parent.recovery.workspace-qualified.malformed', 'portable.lineage-integrity.parent-unresolved');
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
const exactTarget = String(audit?.schemaValidationAuthority?.currentReference?.target || '').trim();
|
|
212
|
+
const schemaId = String(audit?.schemaId || '').trim();
|
|
213
|
+
const schemaWarning = (audit?.findings || []).some((item) => String(item?.code || '') === 'schema.reference.exact-target-omitted');
|
|
214
|
+
if (schemaWarning && schemaId && exactTarget && audit?.schemaValidationAuthority?.currentReference?.state === 'qualified') {
|
|
215
|
+
const schemaLines = candidate.replace(/\r\n?/g, '\n').split('\n');
|
|
216
|
+
const index = schemaLines.findIndex((line) => /^\s*-\s+Current Schema:\s*/.test(line));
|
|
217
|
+
if (index >= 0) {
|
|
218
|
+
const match = schemaLines[index].match(/^(\s*-\s+Current Schema:\s*)([^\s].*)$/);
|
|
219
|
+
const raw = String(match?.[2] || '').trim();
|
|
220
|
+
if (match && raw === schemaId) {
|
|
221
|
+
schemaLines[index] = `${match[1]}[${schemaId}](${exactTarget})`;
|
|
222
|
+
candidate = schemaLines.join('\n');
|
|
223
|
+
schemaReferenceChanged = true;
|
|
224
|
+
diagnosticCodes.push('schema.reference.exact-target-omitted');
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (!parentReferenceChanged && !schemaReferenceChanged) return freeze({ state: 'unavailable' });
|
|
230
|
+
const sealed = sealC14nV2Self(candidate);
|
|
231
|
+
if (sealed.state !== 'sealed' && sealed.state !== 'unchanged') return freeze({ state: 'unavailable' });
|
|
232
|
+
return freeze({ state: 'ready', markdown: String(sealed.markdown || candidate), parentReferenceChanged, schemaReferenceChanged, diagnosticCodes: [...new Set(diagnosticCodes)] });
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function normalizeMalformedWorkspaceQualifiedTarget(value = '') {
|
|
236
|
+
const raw = String(value || '').trim();
|
|
237
|
+
if (classifyParentRecoveryReference(raw).kind !== 'malformed-workspace-qualified') return raw;
|
|
238
|
+
const stripped = raw.replace(/^(?:\.\.\/)+/, '').replace(/^\.\//, '');
|
|
239
|
+
return classifyParentRecoveryReference(stripped).kind === 'workspace-qualified' ? stripped : raw;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
function hasQualifiedWorkspaceParentReference(markdown = '') {
|
|
243
|
+
const source = String(markdown || '');
|
|
244
|
+
const parentStart = source.split(/\r?\n/).findIndex((line) => /^\s*-\s+Parent\s*$/.test(line));
|
|
245
|
+
if (parentStart < 0) return false;
|
|
246
|
+
const lines = source.split(/\r?\n/);
|
|
247
|
+
let parentEnd = lines.length;
|
|
248
|
+
for (let index = parentStart + 1; index < lines.length; index += 1) if (/^-\s+\S/.test(lines[index])) { parentEnd = index; break; }
|
|
249
|
+
const targets = [];
|
|
250
|
+
for (let index = parentStart + 1; index < parentEnd; index += 1) {
|
|
251
|
+
for (const match of lines[index].matchAll(/\]\(([^)]+)\)/g)) targets.push(String(match[1] || ''));
|
|
252
|
+
}
|
|
253
|
+
return targets.some((target) => classifyParentRecoveryReference(target).kind === 'workspace-qualified');
|
|
254
|
+
}
|
|
255
|
+
|
|
139
256
|
function projectDiagnostic(finding = {}, markdown = '') {
|
|
140
257
|
const located = locateFindingLine(finding, markdown);
|
|
141
258
|
return freeze({
|