@tiinex/core 0.1.1

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.
Files changed (517) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +31 -0
  3. package/README.md +45 -0
  4. package/package.json +176 -0
  5. package/src/actions/record.actions.js +312 -0
  6. package/src/adapters/adapter.contracts.js +143 -0
  7. package/src/adapters/archive/archive.adapter.js +502 -0
  8. package/src/adapters/archive/archive.portableChangeset.js +141 -0
  9. package/src/adapters/archive/archive.transport.js +124 -0
  10. package/src/artifacts/artifact.localDraft.js +27 -0
  11. package/src/artifacts/artifact.normalize.js +28 -0
  12. package/src/artifacts/artifact.parse.js +207 -0
  13. package/src/artifacts/artifact.record.js +83 -0
  14. package/src/audit/audit.run.js +103 -0
  15. package/src/audit/audit.summary.js +7 -0
  16. package/src/diagnostics/sourceBoundary.report.js +112 -0
  17. package/src/export/package.apply.js +349 -0
  18. package/src/export/package.builder.js +366 -0
  19. package/src/export/package.bytes.js +164 -0
  20. package/src/export/package.controlIntegrity.js +42 -0
  21. package/src/export/package.controlTopology.js +97 -0
  22. package/src/export/package.fileMap.js +174 -0
  23. package/src/export/package.manifest.js +401 -0
  24. package/src/export/package.preflight.js +204 -0
  25. package/src/export/package.sourceReference.js +81 -0
  26. package/src/export/package.workspaceContext.js +144 -0
  27. package/src/export/package.zip.js +128 -0
  28. package/src/export/tree.bundle.js +278 -0
  29. package/src/governance/governance.boundary.js +196 -0
  30. package/src/integrity/integrity.c14nV2.js +190 -0
  31. package/src/integrity/integrity.methodReference.js +73 -0
  32. package/src/integrity/integrity.validate.js +56 -0
  33. package/src/lineage/lineage.candidateResolution.js +46 -0
  34. package/src/lineage/lineage.githubIssueComment.js +106 -0
  35. package/src/lineage/lineage.githubIssueLocal.js +196 -0
  36. package/src/lineage/lineage.githubIssueTarget.js +89 -0
  37. package/src/lineage/lineage.integrity.js +133 -0
  38. package/src/lineage/lineage.materialPreference.js +26 -0
  39. package/src/lineage/lineage.model.js +63 -0
  40. package/src/lineage/lineage.parentAuthority.js +5 -0
  41. package/src/lineage/lineage.parentBinding.js +104 -0
  42. package/src/lineage/lineage.pathBasis.js +47 -0
  43. package/src/lineage/lineage.resolve.js +388 -0
  44. package/src/lineage/lineage.sourceScope.js +74 -0
  45. package/src/lineage/lineage.targetKeys.js +80 -0
  46. package/src/lineage/lineage.traverse.js +132 -0
  47. package/src/public/applicationProjection.js +236 -0
  48. package/src/public/companionResources.js +246 -0
  49. package/src/public/index.js +16 -0
  50. package/src/public/node.js +2 -0
  51. package/src/public/schemaAncestry.js +26 -0
  52. package/src/publication/publication.contract.js +196 -0
  53. package/src/publication/publication.preflight.js +159 -0
  54. package/src/publication/publication.targetContract.js +241 -0
  55. package/src/reingest/reingest.plan.js +162 -0
  56. package/src/release/plan.mjs +28 -0
  57. package/src/release/policy.mjs +100 -0
  58. package/src/release/run.mjs +74 -0
  59. package/src/schemas/capability.registry.js +226 -0
  60. package/src/schemas/companion.js +245 -0
  61. package/src/schemas/contracts.js +6 -0
  62. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.js +14 -0
  63. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.json +23 -0
  64. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.runtime.json +4283 -0
  65. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.source.js +9 -0
  66. package/src/schemas/coordination/project/tiinex.project.v1.schema.js +26 -0
  67. package/src/schemas/coordination/project/tiinex.project.v1.schema.json +23 -0
  68. package/src/schemas/coordination/project/tiinex.project.v1.schema.runtime.json +1985 -0
  69. package/src/schemas/coordination/project/tiinex.project.v1.schema.source.js +9 -0
  70. package/src/schemas/core/decision/tiinex.decision.v1.schema.js +14 -0
  71. package/src/schemas/core/decision/tiinex.decision.v1.schema.json +24 -0
  72. package/src/schemas/core/decision/tiinex.decision.v1.schema.runtime.json +1700 -0
  73. package/src/schemas/core/decision/tiinex.decision.v1.schema.source.js +9 -0
  74. package/src/schemas/core/evidence/tiinex.evidence.v1.capabilities.js +14 -0
  75. package/src/schemas/core/evidence/tiinex.evidence.v1.en.i18n.json +6 -0
  76. package/src/schemas/core/evidence/tiinex.evidence.v1.findings.js +9 -0
  77. package/src/schemas/core/evidence/tiinex.evidence.v1.presenter.js +1 -0
  78. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.js +32 -0
  79. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.json +24 -0
  80. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.runtime.json +2184 -0
  81. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.source.js +9 -0
  82. package/src/schemas/core/evidence/tiinex.evidence.v1.sv.i18n.json +6 -0
  83. package/src/schemas/core/evidence/tiinex.evidence.v1.transitions.js +1 -0
  84. package/src/schemas/core/evidence/tiinex.evidence.v1.validate.js +10 -0
  85. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.js +14 -0
  86. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.json +23 -0
  87. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.runtime.json +1773 -0
  88. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.source.js +9 -0
  89. package/src/schemas/core/interpretation/tiinex.interpretation.v1.capabilities.js +11 -0
  90. package/src/schemas/core/interpretation/tiinex.interpretation.v1.contract.js +40 -0
  91. package/src/schemas/core/interpretation/tiinex.interpretation.v1.en.i18n.json +9 -0
  92. package/src/schemas/core/interpretation/tiinex.interpretation.v1.findings.js +12 -0
  93. package/src/schemas/core/interpretation/tiinex.interpretation.v1.localMaterialization.js +89 -0
  94. package/src/schemas/core/interpretation/tiinex.interpretation.v1.presenter.js +8 -0
  95. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.js +34 -0
  96. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.json +23 -0
  97. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.runtime.json +2029 -0
  98. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.source.js +9 -0
  99. package/src/schemas/core/interpretation/tiinex.interpretation.v1.sv.i18n.json +9 -0
  100. package/src/schemas/core/interpretation/tiinex.interpretation.v1.transitions.js +1 -0
  101. package/src/schemas/core/interpretation/tiinex.interpretation.v1.validate.js +25 -0
  102. package/src/schemas/core/preservation/tiinex.preservation.v1.capabilities.js +14 -0
  103. package/src/schemas/core/preservation/tiinex.preservation.v1.en.i18n.json +6 -0
  104. package/src/schemas/core/preservation/tiinex.preservation.v1.findings.js +9 -0
  105. package/src/schemas/core/preservation/tiinex.preservation.v1.presenter.js +1 -0
  106. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.js +31 -0
  107. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.json +23 -0
  108. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.runtime.json +2033 -0
  109. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.source.js +9 -0
  110. package/src/schemas/core/preservation/tiinex.preservation.v1.sv.i18n.json +6 -0
  111. package/src/schemas/core/preservation/tiinex.preservation.v1.transitions.js +1 -0
  112. package/src/schemas/core/preservation/tiinex.preservation.v1.validate.js +10 -0
  113. package/src/schemas/core/relation/tiinex.relation.v1.capabilities.js +7 -0
  114. package/src/schemas/core/relation/tiinex.relation.v1.contract.js +3 -0
  115. package/src/schemas/core/relation/tiinex.relation.v1.en.i18n.json +4 -0
  116. package/src/schemas/core/relation/tiinex.relation.v1.findings.js +9 -0
  117. package/src/schemas/core/relation/tiinex.relation.v1.localMaterialization.js +153 -0
  118. package/src/schemas/core/relation/tiinex.relation.v1.presenter.js +3 -0
  119. package/src/schemas/core/relation/tiinex.relation.v1.schema.js +20 -0
  120. package/src/schemas/core/relation/tiinex.relation.v1.schema.json +23 -0
  121. package/src/schemas/core/relation/tiinex.relation.v1.schema.runtime.json +1668 -0
  122. package/src/schemas/core/relation/tiinex.relation.v1.schema.source.js +9 -0
  123. package/src/schemas/core/relation/tiinex.relation.v1.sv.i18n.json +4 -0
  124. package/src/schemas/core/relation/tiinex.relation.v1.transitions.js +1 -0
  125. package/src/schemas/core/relation/tiinex.relation.v1.validate.js +36 -0
  126. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.capabilities.js +14 -0
  127. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.contract.js +57 -0
  128. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.en.i18n.json +4 -0
  129. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.findings.js +13 -0
  130. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.presenter.js +3 -0
  131. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.js +20 -0
  132. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.json +24 -0
  133. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.runtime.json +3315 -0
  134. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.source.js +9 -0
  135. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.sv.i18n.json +4 -0
  136. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.transitions.js +1 -0
  137. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.validate.js +78 -0
  138. package/src/schemas/core/signal/tiinex.signal.v1.schema.js +14 -0
  139. package/src/schemas/core/signal/tiinex.signal.v1.schema.json +23 -0
  140. package/src/schemas/core/signal/tiinex.signal.v1.schema.runtime.json +1733 -0
  141. package/src/schemas/core/signal/tiinex.signal.v1.schema.source.js +9 -0
  142. package/src/schemas/core/task/tiinex.task.v1.capabilities.js +11 -0
  143. package/src/schemas/core/task/tiinex.task.v1.contract.js +3 -0
  144. package/src/schemas/core/task/tiinex.task.v1.en.i18n.json +15 -0
  145. package/src/schemas/core/task/tiinex.task.v1.findings.js +18 -0
  146. package/src/schemas/core/task/tiinex.task.v1.localMaterialization.js +148 -0
  147. package/src/schemas/core/task/tiinex.task.v1.presenter.js +8 -0
  148. package/src/schemas/core/task/tiinex.task.v1.schema.js +35 -0
  149. package/src/schemas/core/task/tiinex.task.v1.schema.json +23 -0
  150. package/src/schemas/core/task/tiinex.task.v1.schema.runtime.json +1708 -0
  151. package/src/schemas/core/task/tiinex.task.v1.schema.source.js +9 -0
  152. package/src/schemas/core/task/tiinex.task.v1.sv.i18n.json +15 -0
  153. package/src/schemas/core/task/tiinex.task.v1.transitions.js +3 -0
  154. package/src/schemas/core/task/tiinex.task.v1.validate.js +41 -0
  155. package/src/schemas/core/topic/tiinex.topic.v1.capabilities.js +14 -0
  156. package/src/schemas/core/topic/tiinex.topic.v1.creation.js +46 -0
  157. package/src/schemas/core/topic/tiinex.topic.v1.en.i18n.json +8 -0
  158. package/src/schemas/core/topic/tiinex.topic.v1.findings.js +11 -0
  159. package/src/schemas/core/topic/tiinex.topic.v1.localMaterialization.js +135 -0
  160. package/src/schemas/core/topic/tiinex.topic.v1.presenter.js +1 -0
  161. package/src/schemas/core/topic/tiinex.topic.v1.schema.js +34 -0
  162. package/src/schemas/core/topic/tiinex.topic.v1.schema.json +23 -0
  163. package/src/schemas/core/topic/tiinex.topic.v1.schema.runtime.json +1699 -0
  164. package/src/schemas/core/topic/tiinex.topic.v1.schema.source.js +9 -0
  165. package/src/schemas/core/topic/tiinex.topic.v1.sv.i18n.json +8 -0
  166. package/src/schemas/core/topic/tiinex.topic.v1.transitions.js +31 -0
  167. package/src/schemas/core/topic/tiinex.topic.v1.validate.js +11 -0
  168. package/src/schemas/creation.capability.js +289 -0
  169. package/src/schemas/creation.contracts.js +334 -0
  170. package/src/schemas/creation.executionSnapshot.js +79 -0
  171. package/src/schemas/creation.factoryQualification.js +73 -0
  172. package/src/schemas/creation.renderer.js +244 -0
  173. package/src/schemas/creation.representation.js +279 -0
  174. package/src/schemas/creation.rootMetadata.js +6 -0
  175. package/src/schemas/creation.schemaReferences.js +65 -0
  176. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.js +14 -0
  177. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.json +23 -0
  178. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.runtime.json +1873 -0
  179. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.source.js +9 -0
  180. package/src/schemas/discovery/tiinex.discovery.v1.schema.js +14 -0
  181. package/src/schemas/discovery/tiinex.discovery.v1.schema.json +23 -0
  182. package/src/schemas/discovery/tiinex.discovery.v1.schema.runtime.json +1839 -0
  183. package/src/schemas/discovery/tiinex.discovery.v1.schema.source.js +9 -0
  184. package/src/schemas/generic.artifact.module.js +25 -0
  185. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.js +26 -0
  186. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.json +23 -0
  187. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.runtime.json +2249 -0
  188. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.source.js +9 -0
  189. package/src/schemas/party/role/tiinex.party.role.v1.schema.js +26 -0
  190. package/src/schemas/party/role/tiinex.party.role.v1.schema.json +24 -0
  191. package/src/schemas/party/role/tiinex.party.role.v1.schema.runtime.json +2091 -0
  192. package/src/schemas/party/role/tiinex.party.role.v1.schema.source.js +9 -0
  193. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.capabilities.js +14 -0
  194. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.en.i18n.json +4 -0
  195. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.findings.js +1 -0
  196. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.presenter.js +1 -0
  197. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.js +29 -0
  198. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.json +21 -0
  199. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.runtime.json +2180 -0
  200. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.source.js +9 -0
  201. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.sv.i18n.json +4 -0
  202. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.transitions.js +1 -0
  203. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.validate.js +1 -0
  204. package/src/schemas/reduction/tiinex.reduction.v1.schema.js +26 -0
  205. package/src/schemas/reduction/tiinex.reduction.v1.schema.json +23 -0
  206. package/src/schemas/reduction/tiinex.reduction.v1.schema.runtime.json +1733 -0
  207. package/src/schemas/reduction/tiinex.reduction.v1.schema.source.js +9 -0
  208. package/src/schemas/reference.shapes.js +33 -0
  209. package/src/schemas/registry.js +36 -0
  210. package/src/schemas/resolver.js +13 -0
  211. package/src/schemas/schema/module/tiinex.schema.module.v1.capabilities.js +14 -0
  212. package/src/schemas/schema/module/tiinex.schema.module.v1.en.i18n.json +4 -0
  213. package/src/schemas/schema/module/tiinex.schema.module.v1.findings.js +1 -0
  214. package/src/schemas/schema/module/tiinex.schema.module.v1.presenter.js +1 -0
  215. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.js +29 -0
  216. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.json +21 -0
  217. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.runtime.json +2093 -0
  218. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.source.js +9 -0
  219. package/src/schemas/schema/module/tiinex.schema.module.v1.sv.i18n.json +4 -0
  220. package/src/schemas/schema/module/tiinex.schema.module.v1.transitions.js +1 -0
  221. package/src/schemas/schema/module/tiinex.schema.module.v1.validate.js +1 -0
  222. package/src/schemas/schema.factory.descriptor.js +104 -0
  223. package/src/schemas/schema.githubSourceTarget.js +131 -0
  224. package/src/schemas/schema.identity.js +10 -0
  225. package/src/schemas/schema.reference.js +133 -0
  226. package/src/schemas/schema.source.js +239 -0
  227. package/src/schemas/tiinex.root.v1.capabilities.js +14 -0
  228. package/src/schemas/tiinex.root.v1.classify.js +55 -0
  229. package/src/schemas/tiinex.root.v1.en.i18n.json +24 -0
  230. package/src/schemas/tiinex.root.v1.fallback.js +84 -0
  231. package/src/schemas/tiinex.root.v1.findings.js +19 -0
  232. package/src/schemas/tiinex.root.v1.presenter.js +5 -0
  233. package/src/schemas/tiinex.root.v1.schema.js +29 -0
  234. package/src/schemas/tiinex.root.v1.schema.json +24 -0
  235. package/src/schemas/tiinex.root.v1.schema.runtime.json +1574 -0
  236. package/src/schemas/tiinex.root.v1.schema.source.js +9 -0
  237. package/src/schemas/tiinex.root.v1.sv.i18n.json +24 -0
  238. package/src/schemas/tiinex.root.v1.transitions.js +1 -0
  239. package/src/schemas/tiinex.root.v1.validate.js +36 -0
  240. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.js +14 -0
  241. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.json +23 -0
  242. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.runtime.json +2027 -0
  243. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.source.js +9 -0
  244. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.js +14 -0
  245. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.json +23 -0
  246. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.runtime.json +1848 -0
  247. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.source.js +9 -0
  248. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.js +14 -0
  249. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.json +23 -0
  250. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.runtime.json +2015 -0
  251. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.source.js +9 -0
  252. package/src/schemas/workspace/tiinex.workspace.v1.capabilities.js +12 -0
  253. package/src/schemas/workspace/tiinex.workspace.v1.en.i18n.json +7 -0
  254. package/src/schemas/workspace/tiinex.workspace.v1.findings.js +5 -0
  255. package/src/schemas/workspace/tiinex.workspace.v1.presenter.js +27 -0
  256. package/src/schemas/workspace/tiinex.workspace.v1.schema.js +30 -0
  257. package/src/schemas/workspace/tiinex.workspace.v1.schema.json +23 -0
  258. package/src/schemas/workspace/tiinex.workspace.v1.schema.runtime.json +1596 -0
  259. package/src/schemas/workspace/tiinex.workspace.v1.schema.source.js +9 -0
  260. package/src/schemas/workspace/tiinex.workspace.v1.sv.i18n.json +7 -0
  261. package/src/schemas/workspace/tiinex.workspace.v1.transitions.js +10 -0
  262. package/src/schemas/workspace/tiinex.workspace.v1.validate.js +10 -0
  263. package/src/sources/github/github.issueTarget.js +127 -0
  264. package/src/sources/origin.references.js +249 -0
  265. package/src/sources/source.explicitTargets.js +49 -0
  266. package/src/sources/transport.levels.js +107 -0
  267. package/src/tooling/portable/adapters/cli/cli.cold-start-input.js +34 -0
  268. package/src/tooling/portable/adapters/cli/cli.command-input.js +455 -0
  269. package/src/tooling/portable/adapters/cli/cli.common-author.js +249 -0
  270. package/src/tooling/portable/adapters/cli/cli.common-output.js +330 -0
  271. package/src/tooling/portable/adapters/cli/cli.editor-assistance.js +13 -0
  272. package/src/tooling/portable/adapters/cli/cli.ground-materialize.js +96 -0
  273. package/src/tooling/portable/adapters/cli/cli.ground-recovery.js +99 -0
  274. package/src/tooling/portable/adapters/cli/cli.handoff-manufacture.js +345 -0
  275. package/src/tooling/portable/adapters/cli/cli.handoff-sibling-allocation.js +31 -0
  276. package/src/tooling/portable/adapters/cli/cli.help.js +80 -0
  277. package/src/tooling/portable/adapters/cli/cli.land.js +13 -0
  278. package/src/tooling/portable/adapters/cli/cli.local-output.js +72 -0
  279. package/src/tooling/portable/adapters/cli/cli.material-policy.js +6 -0
  280. package/src/tooling/portable/adapters/cli/cli.operator-bridge.js +18 -0
  281. package/src/tooling/portable/adapters/cli/cli.reduction-input.js +14 -0
  282. package/src/tooling/portable/adapters/cli/cli.run.js +434 -0
  283. package/src/tooling/portable/adapters/llm/llm.entrypoint.js +34 -0
  284. package/src/tooling/portable/adapters/node/checkpoint.verify.js +267 -0
  285. package/src/tooling/portable/adapters/node/handoff.manufacture.bootstrap.js +109 -0
  286. package/src/tooling/portable/adapters/node/handoff.manufacture.enumeration.js +94 -0
  287. package/src/tooling/portable/adapters/node/handoff.manufacture.js +193 -0
  288. package/src/tooling/portable/adapters/node/handoff.manufacture.multiRoot.js +49 -0
  289. package/src/tooling/portable/adapters/node/handoff.manufacture.packageParent.js +130 -0
  290. package/src/tooling/portable/adapters/node/handoff.manufacture.requirements.js +353 -0
  291. package/src/tooling/portable/adapters/node/handoff.manufacture.scope.js +147 -0
  292. package/src/tooling/portable/adapters/node/workspaceCarrier.manufacture.js +62 -0
  293. package/src/tooling/portable/assets/asset.operations.js +170 -0
  294. package/src/tooling/portable/audit/audit.capability.js +119 -0
  295. package/src/tooling/portable/bootstrap/artifact.result.selfverify.mjs +109 -0
  296. package/src/tooling/portable/bootstrap/bootstrap.case.mjs +43 -0
  297. package/src/tooling/portable/bootstrap/tiinex.llm.bootstrap.md +814 -0
  298. package/src/tooling/portable/bootstrap/tiinex.llm.bootstrap.pointer.json +25 -0
  299. package/src/tooling/portable/checkpoint/portable.checkpoint.js +89 -0
  300. package/src/tooling/portable/conformance/checkpoint.qualification.js +271 -0
  301. package/src/tooling/portable/draft/draft.create.js +389 -0
  302. package/src/tooling/portable/draft/draft.crud.js +175 -0
  303. package/src/tooling/portable/draft/draft.exact.js +173 -0
  304. package/src/tooling/portable/draft/draft.operations.js +265 -0
  305. package/src/tooling/portable/draft/draft.qualification.js +45 -0
  306. package/src/tooling/portable/draft/draft.set.js +193 -0
  307. package/src/tooling/portable/draft/draft.validation-context.js +7 -0
  308. package/src/tooling/portable/editor/authoring.parent.js +37 -0
  309. package/src/tooling/portable/editor/editor.assistance.js +221 -0
  310. package/src/tooling/portable/editor/staged.validation.js +96 -0
  311. package/src/tooling/portable/engine.facade.js +468 -0
  312. package/src/tooling/portable/findings.js +92 -0
  313. package/src/tooling/portable/grounding/grounding.capsule.js +128 -0
  314. package/src/tooling/portable/grounding/grounding.continuity.js +283 -0
  315. package/src/tooling/portable/grounding/grounding.participantAuthority.js +20 -0
  316. package/src/tooling/portable/grounding/grounding.planningContext.js +34 -0
  317. package/src/tooling/portable/grounding/grounding.readiness.authority.js +17 -0
  318. package/src/tooling/portable/grounding/grounding.readiness.js +316 -0
  319. package/src/tooling/portable/grounding/grounding.readiness.support.js +245 -0
  320. package/src/tooling/portable/grounding/grounding.sourceEvidence.js +71 -0
  321. package/src/tooling/portable/grounding/grounding.workContext.js +72 -0
  322. package/src/tooling/portable/grounding/grounding.workProvenance.js +153 -0
  323. package/src/tooling/portable/handoff/carrierLineage.js +214 -0
  324. package/src/tooling/portable/handoff/carrierProfile.js +54 -0
  325. package/src/tooling/portable/handoff/carrierProjection.js +193 -0
  326. package/src/tooling/portable/handoff/carrierProjection.routeQualification.js +228 -0
  327. package/src/tooling/portable/handoff/carrierProjection.shared.js +7 -0
  328. package/src/tooling/portable/handoff/carrierProjection.workspaces.js +54 -0
  329. package/src/tooling/portable/handoff/coldConsumerEntrypoint.js +185 -0
  330. package/src/tooling/portable/handoff/coldStartQualification.contract.js +184 -0
  331. package/src/tooling/portable/handoff/coldStartQualification.grounding.js +392 -0
  332. package/src/tooling/portable/handoff/coldStartQualification.js +22 -0
  333. package/src/tooling/portable/handoff/coldStartQualification.materials.js +364 -0
  334. package/src/tooling/portable/handoff/coldStartQualification.observation.js +220 -0
  335. package/src/tooling/portable/handoff/coldStartQualification.run.js +81 -0
  336. package/src/tooling/portable/handoff/coldStartQualification.shared.js +57 -0
  337. package/src/tooling/portable/handoff/coldStartRolePointers.js +39 -0
  338. package/src/tooling/portable/handoff/contextAudit.js +247 -0
  339. package/src/tooling/portable/handoff/contracts/tiinex.handoff.package.v1.schema.md +409 -0
  340. package/src/tooling/portable/handoff/handoffAuthoringPlan.js +35 -0
  341. package/src/tooling/portable/handoff/handoffEndpointProjection.js +61 -0
  342. package/src/tooling/portable/handoff/handoffLeafProjection.js +91 -0
  343. package/src/tooling/portable/handoff/humanOutputPresentation.js +21 -0
  344. package/src/tooling/portable/handoff/manufacture.js +84 -0
  345. package/src/tooling/portable/handoff/materialClosure.archiveV2.binding.js +72 -0
  346. package/src/tooling/portable/handoff/materialClosure.archiveV2.direct.js +160 -0
  347. package/src/tooling/portable/handoff/materialClosure.archiveV2.indexes.js +36 -0
  348. package/src/tooling/portable/handoff/materialClosure.archiveV2.js +247 -0
  349. package/src/tooling/portable/handoff/materialClosure.archiveV2.projectionProvider.js +44 -0
  350. package/src/tooling/portable/handoff/materialClosure.archiveV2.workspace.js +226 -0
  351. package/src/tooling/portable/handoff/materialClosure.descriptor.js +169 -0
  352. package/src/tooling/portable/handoff/materialClosure.inputBinding.js +372 -0
  353. package/src/tooling/portable/handoff/materialClosure.inputBinding.support.js +62 -0
  354. package/src/tooling/portable/handoff/materialClosure.materialized.js +143 -0
  355. package/src/tooling/portable/handoff/materialClosure.materials.js +116 -0
  356. package/src/tooling/portable/handoff/materialClosure.package.js +181 -0
  357. package/src/tooling/portable/handoff/materialClosure.plan.js +204 -0
  358. package/src/tooling/portable/handoff/materialClosure.readiness.js +36 -0
  359. package/src/tooling/portable/handoff/materialClosure.requirements.js +137 -0
  360. package/src/tooling/portable/handoff/operatorContextProjection.js +105 -0
  361. package/src/tooling/portable/handoff/pointerEntrypoint.js +138 -0
  362. package/src/tooling/portable/handoff/qualifiedHandoffFixture.js +34 -0
  363. package/src/tooling/portable/handoff/recipientV2.artifactFirst.build.js +321 -0
  364. package/src/tooling/portable/handoff/recipientV2.artifactFirst.closure.js +126 -0
  365. package/src/tooling/portable/handoff/recipientV2.artifactFirst.inspect.js +194 -0
  366. package/src/tooling/portable/handoff/recipientV2.artifactFirst.materials.js +207 -0
  367. package/src/tooling/portable/handoff/recipientV2.artifactFirst.projection.js +69 -0
  368. package/src/tooling/portable/handoff/recipientV2.artifactFirst.roles.js +166 -0
  369. package/src/tooling/portable/handoff/recipientV2.artifactFirst.routes.js +113 -0
  370. package/src/tooling/portable/handoff/recipientV2.artifactFirst.shared.js +87 -0
  371. package/src/tooling/portable/handoff/recipientV2.artifactFirst.workspaces.js +160 -0
  372. package/src/tooling/portable/handoff/recipientV2.artifactFirstPhase1.js +44 -0
  373. package/src/tooling/portable/handoff/recipientV2.artifactInspection.js +55 -0
  374. package/src/tooling/portable/handoff/recipientV2.artifacts.js +174 -0
  375. package/src/tooling/portable/handoff/recipientV2.coldProjection.js +24 -0
  376. package/src/tooling/portable/handoff/recipientV2.delivery.js +48 -0
  377. package/src/tooling/portable/handoff/recipientV2.endpointRolePointers.js +179 -0
  378. package/src/tooling/portable/handoff/recipientV2.entryContract.js +28 -0
  379. package/src/tooling/portable/handoff/recipientV2.humanOutput.js +78 -0
  380. package/src/tooling/portable/handoff/recipientV2.inspect.helpers.js +218 -0
  381. package/src/tooling/portable/handoff/recipientV2.inspect.js +194 -0
  382. package/src/tooling/portable/handoff/recipientV2.inspect.pathToken.js +9 -0
  383. package/src/tooling/portable/handoff/recipientV2.inspect.projection.js +58 -0
  384. package/src/tooling/portable/handoff/recipientV2.inspect.workspaces.js +177 -0
  385. package/src/tooling/portable/handoff/recipientV2.lineage.js +142 -0
  386. package/src/tooling/portable/handoff/recipientV2.packageV1.build.js +147 -0
  387. package/src/tooling/portable/handoff/recipientV2.packageV1.constants.js +4 -0
  388. package/src/tooling/portable/handoff/recipientV2.packageV1.contract.js +101 -0
  389. package/src/tooling/portable/handoff/recipientV2.packageV1.inspect.helpers.js +126 -0
  390. package/src/tooling/portable/handoff/recipientV2.packageV1.inspect.js +185 -0
  391. package/src/tooling/portable/handoff/recipientV2.packageV1.js +12 -0
  392. package/src/tooling/portable/handoff/recipientV2.packageV1.shared.js +24 -0
  393. package/src/tooling/portable/handoff/recipientV2.packageV1.workspaceProjection.js +22 -0
  394. package/src/tooling/portable/handoff/recipientV2.pointer.js +40 -0
  395. package/src/tooling/portable/handoff/recipientV2.routeSelection.js +16 -0
  396. package/src/tooling/portable/handoff/recipientV2.topology.helpers.js +20 -0
  397. package/src/tooling/portable/handoff/recipientV2.topology.js +320 -0
  398. package/src/tooling/portable/handoff/recipientV2.topology.materials.js +70 -0
  399. package/src/tooling/portable/handoff/recipientV2.topology.workspaces.js +193 -0
  400. package/src/tooling/portable/handoff/recipientV2.transportManifest.js +123 -0
  401. package/src/tooling/portable/handoff/recipientV2.workspaceRepresentation.js +163 -0
  402. package/src/tooling/portable/handoff/routeArtifactConformance.js +130 -0
  403. package/src/tooling/portable/handoff/toolingBootstrap.js +67 -0
  404. package/src/tooling/portable/handoff/transportCompanion.js +175 -0
  405. package/src/tooling/portable/handoff/workspaceByteProvider.archive.js +95 -0
  406. package/src/tooling/portable/handoff/workspaceByteProvider.js +271 -0
  407. package/src/tooling/portable/handoff/workspaceCarrier.manufacture.js +93 -0
  408. package/src/tooling/portable/handoff/workspaceLandingPlan.js +142 -0
  409. package/src/tooling/portable/handoff/workspacePackageSources.js +105 -0
  410. package/src/tooling/portable/handoff/workspaceQualifiedReference.js +10 -0
  411. package/src/tooling/portable/handoff/workspaceSourceIdentity.js +52 -0
  412. package/src/tooling/portable/handoff/workspaceTargetConformance.js +134 -0
  413. package/src/tooling/portable/host/host.capabilities.js +181 -0
  414. package/src/tooling/portable/host/tool.bindings.js +357 -0
  415. package/src/tooling/portable/host/tool.receiptNormalization.js +141 -0
  416. package/src/tooling/portable/index.js +52 -0
  417. package/src/tooling/portable/input/node.input.js +184 -0
  418. package/src/tooling/portable/input/portable.input.js +249 -0
  419. package/src/tooling/portable/lifecycle/lifecycle.action.js +11 -0
  420. package/src/tooling/portable/lifecycle/lifecycle.material.js +173 -0
  421. package/src/tooling/portable/lifecycle/lifecycle.operations.js +34 -0
  422. package/src/tooling/portable/lifecycle/lifecycle.readiness.js +247 -0
  423. package/src/tooling/portable/lineage/lineage.integrity.apply.audit.js +22 -0
  424. package/src/tooling/portable/lineage/lineage.integrity.apply.evidence.js +36 -0
  425. package/src/tooling/portable/lineage/lineage.integrity.apply.js +306 -0
  426. package/src/tooling/portable/lineage/lineage.integrity.apply.structure.js +178 -0
  427. package/src/tooling/portable/lineage/lineage.integrity.plan.js +377 -0
  428. package/src/tooling/portable/lineage/lineage.integrity.projection.human.js +82 -0
  429. package/src/tooling/portable/lineage/lineage.integrity.projection.js +349 -0
  430. package/src/tooling/portable/lineage/lineage.operations.js +32 -0
  431. package/src/tooling/portable/lineage/lineage.print.js +398 -0
  432. package/src/tooling/portable/lineage/lineage.print.render.js +88 -0
  433. package/src/tooling/portable/lineage/lineage.print.utils.js +58 -0
  434. package/src/tooling/portable/lineage/lineage.publicationProviderReceipts.js +141 -0
  435. package/src/tooling/portable/lineage/lineage.publicationQualification.js +183 -0
  436. package/src/tooling/portable/lineage/lineage.search.js +301 -0
  437. package/src/tooling/portable/live/live.artifact.js +192 -0
  438. package/src/tooling/portable/live/live.export.js +107 -0
  439. package/src/tooling/portable/live/live.lineage.closure.js +71 -0
  440. package/src/tooling/portable/live/live.lineage.js +338 -0
  441. package/src/tooling/portable/live/live.protocol.js +181 -0
  442. package/src/tooling/portable/materialization/durable.materialize.js +162 -0
  443. package/src/tooling/portable/materialization/epistemic.plan.js +239 -0
  444. package/src/tooling/portable/materialization/loaded.parent.js +54 -0
  445. package/src/tooling/portable/materialization/materialization.facade.js +30 -0
  446. package/src/tooling/portable/operation.catalog.js +393 -0
  447. package/src/tooling/portable/operation.catalog.package.js +183 -0
  448. package/src/tooling/portable/operation.result.js +25 -0
  449. package/src/tooling/portable/orchestration/task.prepare.js +191 -0
  450. package/src/tooling/portable/output/artifact.result.package.js +308 -0
  451. package/src/tooling/portable/output/deterministic.zip.js +88 -0
  452. package/src/tooling/portable/output/node.artifact-set.js +223 -0
  453. package/src/tooling/portable/output/node.draft.js +41 -0
  454. package/src/tooling/portable/output/node.zip.js +39 -0
  455. package/src/tooling/portable/output/recipientV2.zip.js +59 -0
  456. package/src/tooling/portable/overview/blockingCue.js +16 -0
  457. package/src/tooling/portable/overview/operatingOverview.js +413 -0
  458. package/src/tooling/portable/package/generation.binding.js +314 -0
  459. package/src/tooling/portable/package/generation.binding.projection.js +128 -0
  460. package/src/tooling/portable/package/material.graph.js +236 -0
  461. package/src/tooling/portable/package/runtime.package.js +321 -0
  462. package/src/tooling/portable/package/schema.transition.companion.js +196 -0
  463. package/src/tooling/portable/package/semantic.package.graph.js +272 -0
  464. package/src/tooling/portable/package/semantic.package.js +203 -0
  465. package/src/tooling/portable/package/semantic.package.schema-resolution.js +158 -0
  466. package/src/tooling/portable/package/semantic.package.transition-registry.js +189 -0
  467. package/src/tooling/portable/package/semantic.package.types.js +18 -0
  468. package/src/tooling/portable/providers/schema.bootstrap.provenance.js +10 -0
  469. package/src/tooling/portable/providers/schema.provider.qualification.js +52 -0
  470. package/src/tooling/portable/providers/schema.providers.js +458 -0
  471. package/src/tooling/portable/publication/runtime.publication.js +53 -0
  472. package/src/tooling/portable/qualification.js +150 -0
  473. package/src/tooling/portable/reduction/reduction.composition.js +229 -0
  474. package/src/tooling/portable/reduction/reduction.eligibility.helpers.js +258 -0
  475. package/src/tooling/portable/reduction/reduction.eligibility.js +191 -0
  476. package/src/tooling/portable/reduction/reduction.operations.js +30 -0
  477. package/src/tooling/portable/reduction/reduction.preflight.js +85 -0
  478. package/src/tooling/portable/reduction/reduction.shared.js +173 -0
  479. package/src/tooling/portable/schema/bootstrap/canonical.pack.js +24 -0
  480. package/src/tooling/portable/schema/bootstrap/docs-3988951208eb9a8926e84ab42625d4b42fa00c2d/party/role/tiinex.party.role.v1.schema.md +289 -0
  481. package/src/tooling/portable/schema/bootstrap/docs-3988951208eb9a8926e84ab42625d4b42fa00c2d/validation/report/tiinex.validation.report.v1.schema.md +300 -0
  482. package/src/tooling/portable/schema/bootstrap/qualified-local-root/tiinex.root.v1.runtime-projection.json +48 -0
  483. package/src/tooling/portable/schema/bootstrap/qualified-local-root/tiinex.root.v1.schema.md +865 -0
  484. package/src/tooling/portable/schema/contract.compile.js +406 -0
  485. package/src/tooling/portable/schema/contract.compile.utils.js +9 -0
  486. package/src/tooling/portable/schema/contract.constraints.js +117 -0
  487. package/src/tooling/portable/schema/contract.envelope.validate.js +177 -0
  488. package/src/tooling/portable/schema/contract.field-domain.compile.js +399 -0
  489. package/src/tooling/portable/schema/contract.field-domain.js +247 -0
  490. package/src/tooling/portable/schema/contract.field-shape.compile.js +34 -0
  491. package/src/tooling/portable/schema/contract.inheritance.inline.js +103 -0
  492. package/src/tooling/portable/schema/contract.inheritance.js +210 -0
  493. package/src/tooling/portable/schema/contract.inheritance.record.js +76 -0
  494. package/src/tooling/portable/schema/contract.machine-shape.js +309 -0
  495. package/src/tooling/portable/schema/contract.project.js +81 -0
  496. package/src/tooling/portable/schema/contract.semantic-resolution.js +82 -0
  497. package/src/tooling/portable/schema/contract.validate.js +0 -0
  498. package/src/tooling/portable/schema/lexical.shape.v1.js +338 -0
  499. package/src/tooling/portable/schema/llm.companion.js +108 -0
  500. package/src/tooling/portable/schema/named.declarations.js +162 -0
  501. package/src/tooling/portable/schema/ordinary.contract.js +193 -0
  502. package/src/tooling/portable/schema/ordinary.fields.js +205 -0
  503. package/src/tooling/portable/schema/qualifiedLocalRoot.projection.js +70 -0
  504. package/src/tooling/portable/schema/qualifiedLocalRoot.runtime.js +170 -0
  505. package/src/tooling/portable/schema/schema.contract.js +465 -0
  506. package/src/tooling/portable/schema/schema.guide.js +326 -0
  507. package/src/tooling/portable/schema/schema.snapshot.js +119 -0
  508. package/src/tooling/portable/session/portable.session.js +145 -0
  509. package/src/tooling/portable/transfer/transfer.plan.js +102 -0
  510. package/src/transitions/record.transitions.js +484 -0
  511. package/src/transitions/transition.validate.js +129 -0
  512. package/src/validation/findings.js +76 -0
  513. package/src/validation/validateArtifact.js +216 -0
  514. package/src/workspaces/workspace.entrypointCapability.js +44 -0
  515. package/src/workspaces/workspace.materialRole.js +242 -0
  516. package/src/workspaces/workspace.recordPaths.js +426 -0
  517. package/tools/tiinex-portable.mjs +6 -0
@@ -0,0 +1,196 @@
1
+ import { portableFinding, summarizePortableFindings } from '../findings.js';
2
+ import { projectPortableContractInstance } from '../schema/contract.project.js';
3
+ import { extractQualifiedMarkdownLinkTarget, portableFieldDomainOccurrenceQualification } from './material.graph.js';
4
+
5
+ export const PORTABLE_SCHEMA_TRANSITION_COMPANION_SCHEMA_ID = 'tiinex.portable.schema-transition-companion.v1';
6
+
7
+ export function compilePortableSchemaTransitionCompanion(input = {}) {
8
+ const material = input.material || {};
9
+ const compiledContract = input.compiledContract;
10
+ const findings = [];
11
+ if (!compiledContract) {
12
+ findings.push(portableFinding('error', 'portable.companion.contract.missing', 'Schema Transition Companion compilation requires a compiled canonical contract chain.', { ref: material.path || material.representationKey || '' }));
13
+ return companionResult(material, null, null, [], findings);
14
+ }
15
+
16
+ const projection = projectPortableContractInstance({
17
+ markdown: material.markdown || '',
18
+ compiledContract,
19
+ resolvers: input.resolvers || {}
20
+ });
21
+ findings.push(...projection.validation.findings);
22
+
23
+ const schemaReference = ordinaryFieldValue(projection, 'Schema Binding', 'Schema Reference');
24
+ const rawSchemaBinding = resolveQualifiedReference({
25
+ projection,
26
+ group: 'Schema Binding',
27
+ field: 'Schema Reference',
28
+ value: schemaReference,
29
+ resolve: input.resolveSchemaReference,
30
+ material,
31
+ entry: ''
32
+ });
33
+ const schemaBinding = Object.freeze({
34
+ ...rawSchemaBinding,
35
+ representationKey: String(rawSchemaBinding.material?.representationKey || ''),
36
+ schemaId: String(rawSchemaBinding.material?.schemaId || ''),
37
+ path: String(rawSchemaBinding.material?.path || '')
38
+ });
39
+ if (schemaBinding.finding) findings.push(schemaBinding.finding);
40
+
41
+ const attachmentGroup = declarationGroup(projection.validation.declarations, 'Transition Attachment Declaration');
42
+ const entries = attachmentGroup?.sections?.flatMap((section) => section.present ? section.entries : []) || [];
43
+ const noneEntries = entries.filter((entry) => entry.name === 'none');
44
+ const explicitEmpty = noneEntries.length === 1 && entries.length === 1;
45
+ const attachments = [];
46
+ const seenRepresentationKeys = new Set();
47
+
48
+ if (noneEntries.length && !explicitEmpty) {
49
+ findings.push(portableFinding('error', 'portable.companion.attachments.none.invalid', 'Literal none must be the sole Transition Attachments entry.', { ref: material.path || '' }));
50
+ }
51
+
52
+ for (const entry of entries) {
53
+ if (entry.name === 'none') continue;
54
+ const reference = String(entry.fields?.['Transition Reference'] || '');
55
+ const resolution = resolveQualifiedReference({
56
+ projection,
57
+ group: 'Transition Attachment Declaration',
58
+ field: 'Transition Reference',
59
+ value: reference,
60
+ resolve: input.resolveTransitionReference,
61
+ material,
62
+ entry: entry.name
63
+ });
64
+ if (resolution.finding) findings.push(resolution.finding);
65
+ const targetKey = String(resolution.material?.representationKey || '');
66
+ let duplicate = false;
67
+ if (resolution.qualification === 'resolved' && targetKey) {
68
+ if (seenRepresentationKeys.has(targetKey)) {
69
+ duplicate = true;
70
+ findings.push(portableFinding('error', 'portable.companion.attachment.duplicate', 'Two companion attachment entries resolve to the same exact Transition representation.', {
71
+ ref: material.path || '',
72
+ entry: entry.name,
73
+ transitionRepresentationKey: targetKey
74
+ }));
75
+ }
76
+ seenRepresentationKeys.add(targetKey);
77
+ }
78
+ const participation = resolution.qualification === 'resolved' && typeof input.qualifyParticipation === 'function'
79
+ ? input.qualifyParticipation({ companionMaterial: material, schemaBinding, transitionMaterial: resolution.material, attachmentEntry: entry })
80
+ : Object.freeze({ qualification: 'unresolved', evidence: Object.freeze([]) });
81
+ if (participation?.qualification === 'contradictory') {
82
+ findings.push(portableFinding('error', 'portable.companion.attachment.participation.contradictory', 'Resolved Transition participation definitively excludes the companion-bound schema.', {
83
+ ref: material.path || '',
84
+ entry: entry.name,
85
+ transitionRepresentationKey: targetKey
86
+ }));
87
+ } else if (resolution.qualification === 'resolved' && participation?.qualification === 'unresolved') {
88
+ findings.push(portableFinding('warning', 'portable.companion.attachment.participation.unresolved', 'Attachment resolves, but Transition participation for the companion-bound schema remains unresolved.', {
89
+ ref: material.path || '',
90
+ entry: entry.name,
91
+ transitionRepresentationKey: targetKey
92
+ }));
93
+ }
94
+ attachments.push(Object.freeze({
95
+ name: entry.name,
96
+ reference,
97
+ referenceTarget: resolution.referenceTarget,
98
+ referenceQualification: resolution.qualification,
99
+ transitionRepresentationKey: targetKey,
100
+ transitionPath: String(resolution.material?.path || ''),
101
+ duplicate,
102
+ note: String(entry.fields?.Note || ''),
103
+ participation: participation || Object.freeze({ qualification: 'unresolved', evidence: Object.freeze([]) }),
104
+ source: entry.source || null
105
+ }));
106
+ }
107
+
108
+ return companionResult(material, projection, schemaBinding, attachments, findings, explicitEmpty);
109
+ }
110
+
111
+ function companionResult(material, projection, schemaBinding, attachments, findings, explicitEmpty = false) {
112
+ const summary = summarizePortableFindings(findings);
113
+ const status = summary.counts.error ? 'invalid' : summary.counts.warning ? 'unresolved' : 'valid';
114
+ return Object.freeze({
115
+ schema: PORTABLE_SCHEMA_TRANSITION_COMPANION_SCHEMA_ID,
116
+ status,
117
+ representationKey: String(material?.representationKey || ''),
118
+ path: String(material?.path || ''),
119
+ source: Object.freeze({ ...(material?.source || {}) }),
120
+ references: Object.freeze([...(material?.referenceAliases || [])]),
121
+ projection,
122
+ schemaBinding: schemaBinding || Object.freeze({ qualification: 'unresolved', reference: '', representationKey: '', schemaId: '' }),
123
+ attachmentSet: Object.freeze({
124
+ state: explicitEmpty ? 'explicit-empty' : 'declared',
125
+ explicitEmpty,
126
+ attachments: Object.freeze([...(attachments || [])])
127
+ }),
128
+ findings: Object.freeze([...(findings || [])]),
129
+ findingSummary: summary
130
+ });
131
+ }
132
+
133
+ function resolveQualifiedReference({ projection, group, field, value, resolve, material, entry }) {
134
+ const text = String(value || '');
135
+ if (!text) {
136
+ return Object.freeze({
137
+ qualification: 'unresolved', reference: text, referenceTarget: '', material: null,
138
+ finding: portableFinding('error', 'portable.companion.reference.missing', `Required reference field is missing: ${group}.${field}.`, { ref: material.path || '', entry, field })
139
+ });
140
+ }
141
+ const shape = portableFieldDomainOccurrenceQualification(projection, group, field, text, entry);
142
+ if (shape !== 'core') {
143
+ return Object.freeze({
144
+ qualification: 'unresolved', reference: text, referenceTarget: '', material: null,
145
+ finding: portableFinding('warning', 'portable.companion.reference.shape.unresolved', `Reference field does not have resolved canonical Markdown Link shape authority: ${group}.${field}.`, { ref: material.path || '', entry, field, fieldDomainQualification: shape })
146
+ });
147
+ }
148
+ const target = extractQualifiedMarkdownLinkTarget(text);
149
+ if (!target) {
150
+ return Object.freeze({
151
+ qualification: 'unresolved', reference: text, referenceTarget: '', material: null,
152
+ finding: portableFinding('error', 'portable.companion.reference.decomposition.failed', 'A shape-qualified Markdown Link could not be decomposed into its target.', { ref: material.path || '', entry, field })
153
+ });
154
+ }
155
+ if (typeof resolve !== 'function') {
156
+ return Object.freeze({
157
+ qualification: 'unresolved', reference: text, referenceTarget: target, material: null,
158
+ finding: portableFinding('warning', 'portable.companion.reference.resolver.unavailable', 'No package-scoped reference resolver was supplied for a shape-qualified reference.', { ref: material.path || '', entry, field, target })
159
+ });
160
+ }
161
+ const resolved = resolve({ target, value: text, fromMaterial: material, entry, field, group }) || {};
162
+ const qualification = String(resolved.qualification || 'unresolved');
163
+ const severity = qualification === 'ambiguous' || qualification === 'invalid' ? 'error' : 'warning';
164
+ const finding = qualification === 'resolved'
165
+ ? null
166
+ : portableFinding(severity, qualification === 'ambiguous' ? 'portable.companion.reference.ambiguous' : qualification === 'invalid' ? 'portable.companion.reference.invalid' : 'portable.companion.reference.unresolved', resolved.finding || `Reference could not resolve exactly: ${target}.`, { ref: material.path || '', entry, field, target });
167
+ const candidates = Object.freeze((resolved.candidates || []).map((candidate) => Object.freeze({
168
+ representationKey: String(candidate?.representationKey || ''),
169
+ path: String(candidate?.path || ''),
170
+ schemaId: String(candidate?.schemaId || ''),
171
+ source: Object.freeze({ ...(candidate?.source || {}) })
172
+ })));
173
+ return Object.freeze({
174
+ qualification,
175
+ reference: text,
176
+ referenceTarget: target,
177
+ material: qualification === 'resolved' ? (resolved.material || resolved.candidates?.[0] || null) : null,
178
+ candidates,
179
+ finding
180
+ });
181
+ }
182
+
183
+ function ordinaryFieldValue(projection = {}, groupName = '', fieldName = '') {
184
+ const group = (projection.ordinaryGroups || []).find((item) => exact(item.group) === exact(groupName));
185
+ const field = (group?.fields || []).find((item) => exact(item.label) === exact(fieldName));
186
+ const occurrences = field?.occurrences || [];
187
+ return occurrences.length === 1 ? String(occurrences[0].value ?? '') : '';
188
+ }
189
+
190
+ function declarationGroup(groups = [], name = '') {
191
+ return (groups || []).find((item) => exact(item.contract?.group) === exact(name));
192
+ }
193
+
194
+ function exact(value = '') {
195
+ return String(value || '').trim();
196
+ }
@@ -0,0 +1,272 @@
1
+ import { portableFinding } from '../findings.js';
2
+ import { projectPortableContractInstance } from '../schema/contract.project.js';
3
+ import {
4
+ dirname,
5
+ extractQualifiedMarkdownLinkTarget,
6
+ isAbsoluteReference,
7
+ normalizePortablePath,
8
+ pathWithinBoundary,
9
+ portableFieldDomainOccurrenceQualification,
10
+ relativePathEscapesBoundary,
11
+ resolvePortableMaterialReference
12
+ } from './material.graph.js';
13
+ import { isCompanionArtifact, isPackageManifestArtifact, isTransitionArtifact } from './semantic.package.types.js';
14
+ import { materialIsSchemaDocument } from './material.graph.js';
15
+
16
+ export function compileSemanticPackageGraph(input = {}) {
17
+ const state = {
18
+ materialIndex: input.materialIndex,
19
+ compiledContract: input.compiledContract,
20
+ resolvers: input.resolvers || {},
21
+ nodes: new Map(),
22
+ edges: [],
23
+ findings: [],
24
+ active: []
25
+ };
26
+ compilePackageNode(input.selectedManifest, state, Object.freeze({ kind: 'selected', fromPackageKey: '', declarationName: '', reference: '', referenceTarget: '' }));
27
+ const nodes = [...state.nodes.values()];
28
+ for (const node of nodes) node.reachablePackageKeys = Object.freeze(reachablePackageKeys(node.manifestKey, state));
29
+ return Object.freeze({ nodes: Object.freeze(nodes), edges: Object.freeze(state.edges), findings: Object.freeze(state.findings), state });
30
+ }
31
+
32
+ export function selectSemanticPackageManifest(index, selector) {
33
+ if (selector && typeof selector === 'object' && selector.representationKey && index.byKey.has(selector.representationKey)) {
34
+ return Object.freeze({ qualification: 'resolved', material: index.byKey.get(selector.representationKey) });
35
+ }
36
+ const token = String(selector || '');
37
+ if (index.byKey.has(token)) return Object.freeze({ qualification: 'resolved', material: index.byKey.get(token) });
38
+ const byPath = index.byPath.get(normalizePortablePath(token)) || [];
39
+ const byReference = index.byReference.get(token) || [];
40
+ const candidates = uniqueMaterials([...byPath, ...byReference]);
41
+ if (candidates.length === 1) return Object.freeze({ qualification: 'resolved', material: candidates[0] });
42
+ return Object.freeze({ qualification: candidates.length > 1 ? 'ambiguous' : 'unresolved', material: null, candidates: Object.freeze(candidates) });
43
+ }
44
+
45
+ export function packageContainingMaterial(materialKey, nodes = []) {
46
+ const matches = [...nodes].filter((node) => node.localMaterialKeys.includes(materialKey));
47
+ return matches.length === 1 ? matches[0].manifestKey : '';
48
+ }
49
+
50
+ export function projectPackageGraph(nodes = [], edges = []) {
51
+ return Object.freeze({
52
+ nodes: Object.freeze([...nodes].map(freezePackageNode).sort((a, b) => compare(a.manifestKey, b.manifestKey))),
53
+ edges: Object.freeze([...edges].sort(compareEdge))
54
+ });
55
+ }
56
+
57
+ function compilePackageNode(manifest, state, route) {
58
+ const key = manifest.representationKey;
59
+ const existing = state.nodes.get(key);
60
+ if (existing) {
61
+ pushUniqueRoute(existing.routes, route);
62
+ if (state.active.includes(key)) {
63
+ state.findings.push(portableFinding('info', 'portable.semantic-package.cycle.observed', 'Package dependency cycle observed and terminated by exact manifest representation.', { ref: manifest.path || key, packageKey: key, route }));
64
+ }
65
+ return existing;
66
+ }
67
+
68
+ const manifestPathAvailable = Boolean(String(manifest.path || ''));
69
+ const root = manifestPathAvailable ? dirname(manifest.path) : '';
70
+ const projection = projectPortableContractInstance({ markdown: manifest.markdown, compiledContract: state.compiledContract, resolvers: state.resolvers });
71
+ if (!manifestPathAvailable) {
72
+ state.findings.push(portableFinding('error', 'portable.semantic-package.boundary.manifest-path-missing', 'Semantic Package Manifest cannot establish Boundary Root: manifest-directory without an exact material path.', { ref: key, packageKey: key }));
73
+ }
74
+ state.findings.push(...projection.validation.findings);
75
+ const boundaryRoot = ordinaryFieldValue(projection, 'Package Boundary', 'Boundary Root');
76
+ const discoveryPolicy = ordinaryFieldValue(projection, 'Package Boundary', 'Discovery Policy');
77
+ const nestedPolicy = ordinaryFieldValue(projection, 'Package Boundary', 'Nested Package Policy');
78
+ if (boundaryRoot !== 'manifest-directory' || discoveryPolicy !== 'recursive-within-boundary' || nestedPolicy !== 'explicit-only') {
79
+ state.findings.push(portableFinding('error', 'portable.semantic-package.boundary.unsupported', 'Selected package boundary policy is not the canonical v1 manifest-directory / recursive-within-boundary / explicit-only policy.', { ref: manifest.path || key }));
80
+ }
81
+
82
+ const packageManifests = manifestPathAvailable
83
+ ? state.materialIndex.materials.filter((item) => isPackageManifestArtifact(item) && item.path && pathWithinBoundary(item.path, root))
84
+ : [manifest];
85
+ const sameDirectory = packageManifests.filter((item) => dirname(item.path) === root);
86
+ const manifestBoundaryAmbiguous = sameDirectory.length !== 1 || sameDirectory[0].representationKey !== key;
87
+ if (manifestBoundaryAmbiguous) {
88
+ state.findings.push(portableFinding('error', 'portable.semantic-package.boundary.manifest-ambiguous', 'Package boundary directory exposes competing Semantic Package Manifest authority.', { ref: manifest.path || key, count: sameDirectory.length }));
89
+ }
90
+
91
+ const allNestedRoots = unique(packageManifests.map((item) => dirname(item.path)).filter((dir) => dir !== root)).sort(compare);
92
+ const nestedRoots = nearestNestedPackageRoots(packageManifests, root);
93
+ const boundaryPolicyValid = boundaryRoot === 'manifest-directory' && discoveryPolicy === 'recursive-within-boundary' && nestedPolicy === 'explicit-only';
94
+ const boundaryUsable = manifestPathAvailable && boundaryPolicyValid && !manifestBoundaryAmbiguous;
95
+ const localMaterials = boundaryUsable
96
+ ? state.materialIndex.materials.filter((item) => item.path && pathWithinBoundary(item.path, root) && !nestedRoots.some((nested) => pathWithinBoundary(item.path, nested)))
97
+ : [manifest];
98
+
99
+ const node = {
100
+ manifestKey: key,
101
+ manifestPath: manifest.path,
102
+ manifestSource: Object.freeze({ ...(manifest.source || {}) }),
103
+ manifestReferences: Object.freeze([...(manifest.referenceAliases || [])]),
104
+ packageRoot: root,
105
+ manifestProjection: projection,
106
+ routes: [route],
107
+ nestedPackageRoots: Object.freeze(nestedRoots),
108
+ allNestedPackageRoots: Object.freeze(allNestedRoots),
109
+ boundaryQualification: boundaryUsable ? 'valid' : 'invalid',
110
+ localMaterialKeys: Object.freeze(localMaterials.map((item) => item.representationKey)),
111
+ localSchemaKeys: Object.freeze(localMaterials.filter(materialIsSchemaDocument).map((item) => item.representationKey)),
112
+ localCompanionKeys: Object.freeze(localMaterials.filter(isCompanionArtifact).map((item) => item.representationKey)),
113
+ localTransitionKeys: Object.freeze(localMaterials.filter((item) => isTransitionArtifact(item) && transitionPathIsAutoDiscovered(item.path, root)).map((item) => item.representationKey)),
114
+ includedDeclarations: Object.freeze(declarationEntries(projection, 'Included Package Declaration')),
115
+ externalDeclarations: Object.freeze(declarationEntries(projection, 'External Package Dependency Declaration')),
116
+ schemaBindingDeclarations: Object.freeze(declarationEntries(projection, 'Schema Resolution Binding Declaration')),
117
+ outgoingEdges: [],
118
+ reachablePackageKeys: Object.freeze([])
119
+ };
120
+ state.nodes.set(key, node);
121
+ state.active.push(key);
122
+
123
+ for (const entry of node.includedDeclarations) resolveAndTraverseEdge('included', node, entry, state);
124
+ for (const entry of node.externalDeclarations) resolveAndTraverseEdge('external', node, entry, state);
125
+
126
+ state.active.pop();
127
+ return node;
128
+ }
129
+
130
+ function resolveAndTraverseEdge(kind, node, entry, state) {
131
+ if (entry.name === 'none') return;
132
+ const edge = resolvePackageEdge({ kind, node, entry, state });
133
+ node.outgoingEdges.push(edge);
134
+ state.edges.push(edge);
135
+ if (edge.qualification === 'resolved') compilePackageNode(state.materialIndex.byKey.get(edge.targetPackageKey), state, edgeRoute(edge));
136
+ }
137
+
138
+ function resolvePackageEdge({ kind, node, entry, state }) {
139
+ const field = 'Package Reference';
140
+ const value = String(entry.fields?.[field] || '');
141
+ const group = kind === 'included' ? 'Included Package Declaration' : 'External Package Dependency Declaration';
142
+ const shape = portableFieldDomainOccurrenceQualification(node.manifestProjection, group, field, value, entry.name);
143
+ if (shape !== 'core') return findingEdge(kind, node, entry, value, '', 'unresolved', '', 'Reference shape authority is unresolved or invalid.', state, 'shape.unresolved', 'warning');
144
+
145
+ const target = extractQualifiedMarkdownLinkTarget(value);
146
+ const manifestMaterial = state.materialIndex.byKey.get(node.manifestKey);
147
+ if (kind === 'included' && !isAbsoluteReference(target) && relativePathEscapesBoundary(manifestMaterial, target, node.packageRoot)) {
148
+ return findingEdge(kind, node, entry, value, target, 'invalid', '', 'Included Package Reference escapes the current package boundary.', state, 'boundary.invalid', 'error');
149
+ }
150
+ if (kind === 'external' && !isAbsoluteReference(target) && relativePathEscapesBoundary(manifestMaterial, target, node.packageRoot)) {
151
+ return findingEdge(kind, node, entry, value, target, 'invalid', '', 'External Package Reference must not rely on a relative path escaping the current package boundary.', state, 'relative-escape', 'error');
152
+ }
153
+
154
+ const resolved = resolvePortableMaterialReference(state.materialIndex, manifestMaterial, target);
155
+ if (resolved.qualification !== 'resolved') {
156
+ return findingEdge(kind, node, entry, value, target, resolved.qualification, '', resolved.finding || 'Package reference did not resolve exactly.', state, `reference.${resolved.qualification}`, resolved.qualification === 'ambiguous' ? 'error' : 'warning');
157
+ }
158
+ const material = resolved.candidates[0];
159
+ if (!isPackageManifestArtifact(material)) return findingEdge(kind, node, entry, value, target, 'invalid', '', 'Package Reference target is not a Semantic Package Manifest artifact.', state, 'target.invalid', 'error');
160
+
161
+ if (kind === 'included') {
162
+ if (!node.allNestedPackageRoots.includes(dirname(material.path))) {
163
+ return findingEdge(kind, node, entry, value, target, 'invalid', '', 'Included Package Reference does not resolve to an explicit nested package boundary below the current package root.', state, 'boundary.invalid', 'error');
164
+ }
165
+ } else if (pathWithinBoundary(material.path, node.packageRoot)) {
166
+ return findingEdge(kind, node, entry, value, target, 'invalid', '', 'External Package Reference resolves inside the current package boundary instead of an external package authority.', state, 'target.local', 'error');
167
+ }
168
+
169
+ return frozenEdge(kind, node, entry, value, target, 'resolved', material.representationKey, '');
170
+ }
171
+
172
+ function findingEdge(kind, node, entry, reference, target, qualification, targetPackageKey, message, state, suffix, severity) {
173
+ const edge = frozenEdge(kind, node, entry, reference, target, qualification, targetPackageKey, message);
174
+ state.findings.push(portableFinding(severity, `portable.semantic-package.${kind}.${suffix}`, message, { ref: node.manifestPath, entry: entry.name, target }));
175
+ return edge;
176
+ }
177
+
178
+ function nearestNestedPackageRoots(packageManifests, root) {
179
+ const roots = unique(packageManifests.map((item) => dirname(item.path)).filter((dir) => dir !== root));
180
+ return roots.filter((candidate) => !roots.some((other) => other !== candidate && pathWithinBoundary(candidate, other))).sort(compare);
181
+ }
182
+
183
+ function reachablePackageKeys(start, state) {
184
+ const visited = new Set();
185
+ const stack = [start];
186
+ while (stack.length) {
187
+ const key = stack.pop();
188
+ if (visited.has(key)) continue;
189
+ visited.add(key);
190
+ const node = state.nodes.get(key);
191
+ for (const edge of node?.outgoingEdges || []) if (edge.qualification === 'resolved' && edge.targetPackageKey) stack.push(edge.targetPackageKey);
192
+ }
193
+ return [...visited].sort(compare);
194
+ }
195
+
196
+ function ordinaryFieldValue(projection, groupName, fieldName) {
197
+ const group = (projection.ordinaryGroups || []).find((item) => exact(item.group) === exact(groupName));
198
+ const field = (group?.fields || []).find((item) => exact(item.label) === exact(fieldName));
199
+ return field?.occurrences?.length === 1 ? String(field.occurrences[0].value ?? '') : '';
200
+ }
201
+
202
+ function declarationEntries(projection, groupName) {
203
+ const group = (projection.validation?.declarations || []).find((item) => exact(item.contract?.group) === exact(groupName));
204
+ return group?.sections?.flatMap((section) => section.present ? section.entries : []) || [];
205
+ }
206
+
207
+ function transitionPathIsAutoDiscovered(path, root) {
208
+ if (!pathWithinBoundary(path, root)) return false;
209
+ return normalizePortablePath(path).split('/').filter(Boolean).includes('.transitions');
210
+ }
211
+
212
+ function frozenEdge(kind, node, entry, reference, target, qualification, targetPackageKey, finding) {
213
+ return Object.freeze({
214
+ kind,
215
+ fromPackageKey: node.manifestKey,
216
+ fromPackagePath: node.manifestPath,
217
+ declarationName: entry.name,
218
+ declarationSource: entry.source || null,
219
+ reference,
220
+ referenceTarget: target,
221
+ qualification,
222
+ targetPackageKey,
223
+ finding: String(finding || '')
224
+ });
225
+ }
226
+
227
+ function edgeRoute(edge) {
228
+ return Object.freeze({ kind: edge.kind, fromPackageKey: edge.fromPackageKey, declarationName: edge.declarationName, reference: edge.reference, referenceTarget: edge.referenceTarget });
229
+ }
230
+
231
+ function freezePackageNode(node) {
232
+ return Object.freeze({
233
+ manifestKey: node.manifestKey,
234
+ manifestPath: node.manifestPath,
235
+ manifestSource: node.manifestSource,
236
+ manifestReferences: node.manifestReferences,
237
+ packageRoot: node.packageRoot,
238
+ routes: Object.freeze([...(node.routes || [])].sort(compareObject)),
239
+ nestedPackageRoots: node.nestedPackageRoots,
240
+ allNestedPackageRoots: node.allNestedPackageRoots,
241
+ boundaryQualification: node.boundaryQualification,
242
+ localMaterialKeys: node.localMaterialKeys,
243
+ localSchemaKeys: node.localSchemaKeys,
244
+ localCompanionKeys: node.localCompanionKeys,
245
+ localTransitionKeys: node.localTransitionKeys,
246
+ reachablePackageKeys: node.reachablePackageKeys,
247
+ outgoingEdges: Object.freeze([...(node.outgoingEdges || [])].sort(compareEdge))
248
+ });
249
+ }
250
+
251
+ function pushUniqueRoute(routes, route) {
252
+ const text = JSON.stringify(route);
253
+ if (!routes.some((item) => JSON.stringify(item) === text)) routes.push(route);
254
+ }
255
+
256
+ function unique(values = []) { return [...new Set(values.map(String).filter(Boolean))]; }
257
+
258
+ function uniqueMaterials(values = []) {
259
+ const seen = new Set();
260
+ return values.filter((item) => {
261
+ if (!item || seen.has(item.representationKey)) return false;
262
+ seen.add(item.representationKey);
263
+ return true;
264
+ });
265
+ }
266
+
267
+ function compare(a = '', b = '') { const left = String(a); const right = String(b); return left < right ? -1 : left > right ? 1 : 0; }
268
+ function compareObject(a = {}, b = {}) { return compare(JSON.stringify(a), JSON.stringify(b)); }
269
+ function compareEdge(a = {}, b = {}) {
270
+ return compare(`${a.fromPackageKey || ''}\u0000${a.kind || ''}\u0000${a.declarationName || ''}\u0000${a.targetPackageKey || ''}\u0000${a.referenceTarget || ''}`, `${b.fromPackageKey || ''}\u0000${b.kind || ''}\u0000${b.declarationName || ''}\u0000${b.targetPackageKey || ''}\u0000${b.referenceTarget || ''}`);
271
+ }
272
+ function exact(value = '') { return String(value || '').trim(); }
@@ -0,0 +1,203 @@
1
+ import { portableFinding, summarizePortableFindings } from '../findings.js';
2
+ import { indexPortableMaterials } from './material.graph.js';
3
+ import { compilePortableSchemaTransitionCompanion } from './schema.transition.companion.js';
4
+ import {
5
+ compileSemanticPackageGraph,
6
+ packageContainingMaterial,
7
+ projectPackageGraph,
8
+ selectSemanticPackageManifest
9
+ } from './semantic.package.graph.js';
10
+ import {
11
+ compileSemanticPackageSchemaResolution,
12
+ projectSchemaResolutions,
13
+ resolveCompanionSchemaReference
14
+ } from './semantic.package.schema-resolution.js';
15
+ import {
16
+ compileAttachmentStates,
17
+ detectCompanionConflicts,
18
+ ensureTransitionRegistryEntry,
19
+ finalizeTransitionRegistry,
20
+ qualifyAttachmentParticipation,
21
+ resolvePackageTransitionReference
22
+ } from './semantic.package.transition-registry.js';
23
+ import {
24
+ PORTABLE_SEMANTIC_PACKAGE_COMPILATION_SCHEMA_ID,
25
+ SEMANTIC_PACKAGE_SCHEMA_ID,
26
+ SCHEMA_TRANSITION_COMPANION_SCHEMA_ID,
27
+ TRANSITION_DEFINITION_SCHEMA_ID,
28
+ isPackageManifestArtifact
29
+ } from './semantic.package.types.js';
30
+
31
+ export {
32
+ PORTABLE_SEMANTIC_PACKAGE_COMPILATION_SCHEMA_ID,
33
+ SEMANTIC_PACKAGE_SCHEMA_ID,
34
+ SCHEMA_TRANSITION_COMPANION_SCHEMA_ID,
35
+ TRANSITION_DEFINITION_SCHEMA_ID
36
+ } from './semantic.package.types.js';
37
+
38
+ export function compilePortableSemanticPackage(input = {}) {
39
+ const materialIndex = indexPortableMaterials(input.materials || []);
40
+ const findings = [];
41
+ for (const conflict of materialIndex.representationKeyConflicts || []) {
42
+ findings.push(portableFinding('error', 'portable.material-graph.representation-key.duplicate', 'One supplied representationKey maps to more than one concrete material representation; v1 fails closed instead of deduplicating or choosing one.', {
43
+ representationKey: conflict.representationKey,
44
+ candidates: conflict.candidates
45
+ }));
46
+ }
47
+ if (findings.length) return finalResult({ selected: null, materialIndex, findings });
48
+ const selected = selectSemanticPackageManifest(materialIndex, input.selectedManifest || input.manifest || input.manifestReference || '');
49
+ if (selected.qualification !== 'resolved' || !isPackageManifestArtifact(selected.material)) {
50
+ findings.push(portableFinding('error', 'portable.semantic-package.selected-manifest.unresolved', 'Selected Semantic Package Manifest did not resolve to exactly one manifest artifact.', {
51
+ ref: String(input.selectedManifest || input.manifestReference || ''),
52
+ qualification: selected.qualification
53
+ }));
54
+ return finalResult({ selected: selected.material, materialIndex, findings });
55
+ }
56
+
57
+ const contracts = input.contracts || {};
58
+ if (!contracts.semanticPackage || !contracts.schemaTransitionCompanion || !contracts.transitionDefinition) {
59
+ findings.push(portableFinding('error', 'portable.semantic-package.contracts.missing', 'Semantic package compilation requires compiled canonical contracts for Semantic Package Manifest, Schema Transition Companion, and Transition Definition.', { ref: selected.material.path || '' }));
60
+ return finalResult({ selected: selected.material, materialIndex, findings });
61
+ }
62
+
63
+ const graph = compileSemanticPackageGraph({
64
+ selectedManifest: selected.material,
65
+ materialIndex,
66
+ compiledContract: contracts.semanticPackage,
67
+ resolvers: input.resolvers || {}
68
+ });
69
+ findings.push(...graph.findings);
70
+
71
+ const schemaResolution = compileSemanticPackageSchemaResolution({ nodes: graph.nodes, materialIndex });
72
+ findings.push(...schemaResolution.findings);
73
+
74
+ const transitionRegistry = new Map();
75
+ const registryContext = Object.freeze({
76
+ nodes: graph.nodes,
77
+ materialIndex,
78
+ transitionContract: contracts.transitionDefinition,
79
+ resolvers: input.resolvers || {},
80
+ schemaResolutionIndex: schemaResolution.index,
81
+ resolveSchemaConstraint: input.resolveSchemaConstraint
82
+ });
83
+
84
+ for (const node of graph.nodes) {
85
+ for (const key of node.localTransitionKeys) {
86
+ ensureTransitionRegistryEntry(transitionRegistry, materialIndex.byKey.get(key), node, 'distributed-.transitions', registryContext);
87
+ }
88
+ }
89
+
90
+ const companions = compileCompanions({
91
+ nodes: graph.nodes,
92
+ materialIndex,
93
+ contract: contracts.schemaTransitionCompanion,
94
+ resolvers: input.resolvers || {},
95
+ transitionRegistry,
96
+ registryContext,
97
+ findings
98
+ });
99
+
100
+ const companionConflicts = detectCompanionConflicts(companions, findings);
101
+ const attachmentStates = compileAttachmentStates(graph.nodes, companions, companionConflicts, materialIndex);
102
+ const registry = finalizeTransitionRegistry(transitionRegistry);
103
+ appendRegistryQualificationFindings(registry, findings);
104
+
105
+ return finalResult({
106
+ selected: selected.material,
107
+ materialIndex,
108
+ packageGraph: projectPackageGraph(graph.nodes, graph.edges),
109
+ schemaResolutions: projectSchemaResolutions(schemaResolution.index),
110
+ companions,
111
+ registry,
112
+ attachmentStates,
113
+ findings
114
+ });
115
+ }
116
+
117
+ function compileCompanions(input) {
118
+ const companions = [];
119
+ for (const node of input.nodes) {
120
+ for (const key of node.localCompanionKeys) {
121
+ const material = input.materialIndex.byKey.get(key);
122
+ const compiled = compilePortableSchemaTransitionCompanion({
123
+ material,
124
+ compiledContract: input.contract,
125
+ resolvers: input.resolvers,
126
+ resolveSchemaReference: ({ target, fromMaterial }) => resolveCompanionSchemaReference(node, fromMaterial, target, { materialIndex: input.materialIndex }),
127
+ resolveTransitionReference: ({ target, fromMaterial }) => resolvePackageTransitionReference(node, fromMaterial, target, { materialIndex: input.materialIndex, nodes: input.nodes }),
128
+ qualifyParticipation: ({ schemaBinding, transitionMaterial }) => qualifyAttachmentParticipation({
129
+ ...input.registryContext,
130
+ schemaBinding,
131
+ transitionMaterial,
132
+ packageNode: node,
133
+ transitionRegistry: input.transitionRegistry
134
+ })
135
+ });
136
+ const projected = Object.freeze({ ...compiled, packageKey: node.manifestKey, packagePath: node.manifestPath });
137
+ companions.push(projected);
138
+ input.findings.push(...compiled.findings);
139
+ attachCompanionProvenance(projected, node, input);
140
+ }
141
+ }
142
+ return Object.freeze(companions.sort((a, b) => compare(a.representationKey, b.representationKey)));
143
+ }
144
+
145
+ function attachCompanionProvenance(compiled, node, input) {
146
+ for (const attachment of compiled.attachmentSet.attachments || []) {
147
+ if (attachment.referenceQualification !== 'resolved' || !attachment.transitionRepresentationKey) continue;
148
+ const target = input.materialIndex.byKey.get(attachment.transitionRepresentationKey);
149
+ const entry = ensureTransitionRegistryEntry(input.transitionRegistry, target, node, 'companion-attachment-reference', input.registryContext);
150
+ const containingPackageKey = packageContainingMaterial(target.representationKey, input.nodes);
151
+ entry.attachmentProvenance.push(Object.freeze({
152
+ companionRepresentationKey: compiled.representationKey,
153
+ companionPath: compiled.path,
154
+ companionSource: compiled.source || Object.freeze({}),
155
+ boundSchemaRepresentationKey: compiled.schemaBinding?.representationKey || '',
156
+ boundSchemaReference: compiled.schemaBinding?.reference || '',
157
+ boundSchemaReferenceTarget: compiled.schemaBinding?.referenceTarget || '',
158
+ attachmentName: attachment.name,
159
+ transitionReference: attachment.reference,
160
+ transitionReferenceTarget: attachment.referenceTarget,
161
+ transitionContainingPackageKey: containingPackageKey,
162
+ attachmentSource: attachment.source || null,
163
+ packageKey: node.manifestKey,
164
+ participationQualification: attachment.participation?.qualification || 'unresolved'
165
+ }));
166
+ }
167
+ }
168
+
169
+ function appendRegistryQualificationFindings(registry, findings) {
170
+ for (const entry of registry) {
171
+ if (entry.representationQualification === 'contradictory' || entry.representationQualification === 'structurally-invalid') {
172
+ findings.push(portableFinding('error', 'portable.semantic-package.transition.representation.invalid', 'A discovered Transition Definition representation is not canonically qualified.', { ref: entry.path, transitionRepresentationKey: entry.representationKey }));
173
+ } else if (entry.representationQualification !== 'valid') {
174
+ findings.push(portableFinding('warning', 'portable.semantic-package.transition.representation.unresolved', 'A discovered Transition Definition representation is not fully qualified.', { ref: entry.path, transitionRepresentationKey: entry.representationKey, qualification: entry.representationQualification }));
175
+ }
176
+ }
177
+ }
178
+
179
+ function finalResult(input = {}) {
180
+ const summary = summarizePortableFindings(input.findings || []);
181
+ const status = summary.counts.error ? 'invalid' : summary.counts.warning ? 'unresolved' : 'valid';
182
+ return Object.freeze({
183
+ schema: PORTABLE_SEMANTIC_PACKAGE_COMPILATION_SCHEMA_ID,
184
+ status,
185
+ selectedManifest: input.selected ? Object.freeze({ representationKey: input.selected.representationKey, path: input.selected.path, schemaId: input.selected.schemaId }) : null,
186
+ packageGraph: input.packageGraph || Object.freeze({ nodes: Object.freeze([]), edges: Object.freeze([]) }),
187
+ schemaResolutions: input.schemaResolutions || Object.freeze([]),
188
+ companions: input.companions || Object.freeze([]),
189
+ schemaAttachments: input.attachmentStates || Object.freeze([]),
190
+ transitionRegistry: input.registry || Object.freeze([]),
191
+ materialCount: input.materialIndex?.materials?.length || 0,
192
+ findings: Object.freeze([...(input.findings || [])]),
193
+ findingSummary: summary,
194
+ limitations: Object.freeze([
195
+ 'Package discovery is bounded to explicitly supplied material and explicit package/reference routes; no repository-global fallback exists.',
196
+ 'Package locality is discovery/provenance only and is not Transition identity or applicability authority.',
197
+ 'Schema assignability and implicit companion inheritance are not inferred.',
198
+ 'Attachment participation is read-only qualification and never creates participation or execution authority.'
199
+ ])
200
+ });
201
+ }
202
+
203
+ function compare(a = '', b = '') { const left = String(a); const right = String(b); return left < right ? -1 : left > right ? 1 : 0; }