@tiinex/core 0.27.0 → 0.28.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.27.0",
3
+ "version": "0.28.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": "a7e75e17b1b95c022875c2006d2957d8cce580ae",
176
+ "gitHead": "b2f8dfc75545e80da0e9bedfe428e191db131c30",
177
177
  "tiinexRelease": {
178
178
  "policy": "tiinex.master-npm-release.v1",
179
- "sourceCommit": "a7e75e17b1b95c022875c2006d2957d8cce580ae",
180
- "sourceTree": "e86d119618fcd9cdc48bff5b016546f79bb7bcaa",
179
+ "sourceCommit": "b2f8dfc75545e80da0e9bedfe428e191db131c30",
180
+ "sourceTree": "f9c5c0634c6dee60d0cc0b5b59b76f8cbb291729",
181
181
  "repository": "Tiinex/core",
182
- "previousVersion": "0.26.0"
182
+ "previousVersion": "0.27.0"
183
183
  }
184
184
  }
@@ -46,7 +46,7 @@ export function preparePortableWorkspaceInitialization(input = {}) {
46
46
  if (!integrityTarget) findings.push(finding('error', 'workspace.initialize.integrity-method.unresolved', 'Core could not resolve canonical c14n-v2 validator authority.'));
47
47
  if (findings.some((item) => item.severity === 'error')) return blocked(findings);
48
48
 
49
- const entrypoint = repository ? `\n## Workspace Entrypoints\n\n### Repository source\n\n- Source Kind: ${sourceKind}\n- Repository: ${repository}${ref ? `\n- Ref: ${ref}` : ''}\n- Root Path: ${rootPath}\n- Repo Files Discovery: on\n` : '';
49
+ const entrypoint = repository ? `\n\n## Workspace Entrypoints\n\n### Repository source\n\n- Source Kind: ${sourceKind}\n- Repository: ${repository}${ref ? `\n- Ref: ${ref}` : ''}\n- Root Path: ${rootPath}\n- Repo Files Discovery: on\n` : '';
50
50
  const unsigned = `# Continuity Context\n\n- Envelope Schema: [tiinex.root.v1](${envelopeTarget})\n- Current\n - Current Schema: [tiinex.workspace.v1](${schemaTarget})\n - Created At: ${createdAt}\n - Authors: ${authors}\n - Why: Establish an explicit portable Workspace entrypoint for this repository.\n - Summary: ${title} Workspace.\n - Status: active/local\n\n---\n\n# ${title}${entrypoint}\n# Continuity Integrity\n\n- [sha256-base64url-c14n-v2](${integrityTarget})\n - Towards: self\n - Value: pending\n`;
51
51
  const sealed = sealC14nV2Self(unsigned);
52
52
  if (sealed.state !== 'sealed') return blocked([finding('error', 'workspace.initialize.integrity-seal.failed', 'Core could not seal Workspace c14n-v2 self integrity.', { reason: sealed.reason || sealed.state })]);