@exellix/graph-engine 8.1.10 → 8.1.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 8.1.12 — Graphenix 2.1.0 path-only synthesis release
4
+
5
+ ### Changed
6
+
7
+ - **`@exellix/ai-tasks` ^10.0.2**, **`@exellix/ai-skills` ^6.11.0** — skill-catalog synthesis template (`resolveSynthesisContextStrategyKey`); ai-tasks strips legacy `unitParams.synthesisInputStrategy` from plan wire.
8
+ - **`@x12i/graphenix-*` ^2.1.0** — plan compiler/format reject `unitParams.synthesisInputStrategy` on compiled plans (`LEGACY_SYNTHESIS_INPUT_STRATEGY_ON_PLAN`).
9
+
10
+ ### Added
11
+
12
+ - **`assertCanonicalTaskNode`** rejects authoring `preInputStrategy` / `synthesisInputStrategy` (path-driven synthesis only).
13
+ - **`check:no-legacy`** — grep guard for `preInputStrategy` / `synthesisInputStrategy` in fixture JSON; floors ai-tasks ≥10.0.2, ai-skills ≥6.11.0, graphenix-plan-format ≥2.1.0.
14
+ - **Integration test** — graph-qcrbz6t compiles to validated plan and passes `validateRunTaskConfig`.
15
+
16
+ ### Removed
17
+
18
+ - **`preInputStrategy`** from report fixtures and preflight tests; synthesis scope is `inputsConfig` + `smartInput.paths` only.
19
+
3
20
  ## 8.1.10
4
21
 
5
22
  ### Changed
@@ -526,6 +526,27 @@ export function assertCanonicalTaskNode(node, context, options) {
526
526
  }
527
527
  }
528
528
  }
529
+ if (tc) {
530
+ const legacyPreInputPaths = [];
531
+ if ('preInputStrategy' in tc && tc.preInputStrategy != null) {
532
+ legacyPreInputPaths.push('taskConfiguration.preInputStrategy');
533
+ }
534
+ if ('synthesisInputStrategy' in tc && tc.synthesisInputStrategy != null) {
535
+ legacyPreInputPaths.push('taskConfiguration.synthesisInputStrategy');
536
+ }
537
+ const aiTaskStrategies = isPlainObject(tc.aiTaskStrategies) ? tc.aiTaskStrategies : undefined;
538
+ if (aiTaskStrategies) {
539
+ if ('preInputStrategy' in aiTaskStrategies && aiTaskStrategies.preInputStrategy != null) {
540
+ legacyPreInputPaths.push('taskConfiguration.aiTaskStrategies.preInputStrategy');
541
+ }
542
+ if ('synthesisInputStrategy' in aiTaskStrategies && aiTaskStrategies.synthesisInputStrategy != null) {
543
+ legacyPreInputPaths.push('taskConfiguration.aiTaskStrategies.synthesisInputStrategy');
544
+ }
545
+ }
546
+ if (legacyPreInputPaths.length > 0) {
547
+ throw new ExellixGraphError(ExellixGraphErrorCode.NON_CANONICAL_TASK_NODE, `Task node "${String(node.id)}": ${legacyPreInputPaths.join(', ')} is not allowed — synthesis memory scope is path-driven via inputsConfig and smartInput.paths only; template key is skill-catalog-only.`, { jobId: context?.jobId, graphId: context?.graphId, nodeId: String(node.id) });
548
+ }
549
+ }
529
550
  const narrixTc = tc && isPlainObject(tc.narrix) ? tc.narrix : undefined;
530
551
  if (narrixTc) {
531
552
  if ('enableWebScope' in narrixTc &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exellix/graph-engine",
3
- "version": "8.1.10",
3
+ "version": "8.1.12",
4
4
  "type": "module",
5
5
  "description": "Graph executor SDK",
6
6
  "main": "dist/src/index.js",
@@ -52,21 +52,22 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@exellix/ai-skills": "^6.10.0",
56
- "@exellix/ai-tasks": "^10.0.0",
55
+ "@exellix/ai-skills": "^6.11.0",
56
+ "@exellix/ai-tasks": "^10.0.2",
57
57
  "@x12i/activix": "^8.6.3",
58
58
  "@x12i/catalox": "^5.2.0",
59
59
  "@x12i/env": "^4.0.1",
60
60
  "@x12i/funcx": "^4.9.13",
61
61
  "@x12i/graphenix": "^2.5.0",
62
- "@x12i/graphenix-authoring-format": "^2.0.1",
62
+ "@x12i/graphenix-authoring-format": "^2.1.0",
63
63
  "@x12i/graphenix-core": "^2.0.1",
64
- "@x12i/graphenix-executable-contracts": "^2.0.1",
65
- "@x12i/graphenix-executable-format": "^2.2.1",
64
+ "@x12i/graphenix-executable-contracts": "^2.1.0",
65
+ "@x12i/graphenix-executable-format": "^2.3.0",
66
66
  "@x12i/graphenix-execute-envelope": "^2.0.0",
67
67
  "@x12i/graphenix-format": "^2.0.0",
68
- "@x12i/graphenix-plan-compiler": "^2.0.1",
69
- "@x12i/graphenix-plan-format": "^2.0.1",
68
+ "@x12i/graphenix-plan-compiler": "^2.1.0",
69
+ "@x12i/graphenix-plan-format": "^2.1.0",
70
+ "@x12i/graphenix-task-node-format": "^2.1.0",
70
71
  "@x12i/graphenix-trace-format": "^2.0.1",
71
72
  "@x12i/logxer": "^4.6.0",
72
73
  "@x12i/memorix-descriptors": "^1.6.0",