@exellix/ai-tasks 8.1.0 → 8.1.2

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.
@@ -1,5 +1,14 @@
1
1
  # Breaking changes (`@exellix/ai-tasks`)
2
2
 
3
+ ## 8.0.7 — broken release (do not use)
4
+
5
+ **`@exellix/ai-tasks@8.0.7`** re-exported **`MODEL_CAPABILITIES`** from **`@exellix/xynthesis` ≥ 4.x**, but that symbol was removed upstream. Runtime import of the package root fails or yields `undefined` for consumers that relied on the export.
6
+
7
+ - **Upgrade to `8.0.8` or later** (prefer **`8.1.1+`** for aligned `@x12i/*` transitive versions).
8
+ - Use **`getModelCapabilities(modelId)`** from `@exellix/ai-tasks` or `@exellix/xynthesis` instead of `MODEL_CAPABILITIES`.
9
+
10
+ ---
11
+
3
12
  ## 8.0.0 — Canonical `modelConfig` slots (graph-engine 7.x)
4
13
 
5
14
  `RunTaskRequest.modelConfig` no longer accepts the legacy **`model`** field. When set, it **must** be the resolved slot pair from graph-engine (or direct callers with concrete provider ids):
@@ -24,11 +33,11 @@ See [`.docs/ai-tasks-model-profile-aliases-7x.md`](.docs/ai-tasks-model-profile-
24
33
 
25
34
  ---
26
35
 
27
- ## Unreleased (synced runtime model)
36
+ ## 8.0.8+ — `getModelCapabilities` (replaces `MODEL_CAPABILITIES`)
28
37
 
29
- ### Removed `MODEL_CAPABILITIES` re-export
38
+ - **`MODEL_CAPABILITIES`** is no longer exported from `@exellix/ai-tasks` — `@exellix/xynthesis` ≥ 4.0 removed the constant. Import **`getModelCapabilities(modelId)`** from `@exellix/xynthesis` or `@exellix/ai-tasks` instead. Fixed in **8.0.8**; **8.0.7** is broken (see above).
30
39
 
31
- - **`MODEL_CAPABILITIES`** is no longer exported from `@exellix/ai-tasks` — `@exellix/xynthesis` ≥ 4.0 removed the constant. Import **`getModelCapabilities(modelId)`** from `@exellix/xynthesis` or `@exellix/ai-tasks` instead.
40
+ ## Unreleased (synced runtime model)
32
41
 
33
42
  ### `@x12i/ai-profiles` — in-package model alias resolution
34
43
 
package/CHANGELOG.md CHANGED
@@ -6,25 +6,50 @@ The published **npm version** always matches **`version`** in [`package.json`](p
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [8.1.1] - 2026-05-28
10
+
11
+ ### Changed
12
+
13
+ - **`npm` overrides:** Pin transitive **`@x12i/activix`**, **`@x12i/catalox`**, and **`@x12i/funcx`** to this package's direct versions so graph-engine and other consumers resolve a single copy (no nested **funcx 3.9.x** / **activix 7.x** / **catalox 4.x** from `@exellix/narrix-web-scoper` or `@x12i/funcx`).
14
+
15
+ ## [8.1.0] - 2026-05-28
16
+
9
17
  ### Added
10
18
 
11
19
  - **Model profile aliases (`@x12i/ai-profiles`):** Resolve ai-profiles profile/shortcut names and legacy tiers (`weak`, `strong`, `default`) to concrete provider model ids for **ai-skills MAIN** (`skillModel` / `llmCall.model`). Keep **ai-profiles aliases** on **xynthesis** paths (`modelConfig.xynthesisModel`, POST/PRE/scoping `llmCall.model`). Exports: `resolveModelReference`, `resolveModelReferenceForXynthesis`, `normalizeXynthesisModelAlias`, `resolveRunTaskModelReferences`, `isResolvableModelAlias`, `formatResolvedProfileModelId`.
12
20
  - **Dual-root `RunTaskRequest.inputs`:** Optional top-level plural payload bucket (distinct from `executionMemory.inputs`); forwarded on MAIN like `input`.
13
- - **`getModelCapabilities`** re-export from `@exellix/xynthesis` (replaces removed `MODEL_CAPABILITIES` constant).
14
21
 
15
22
  ### Changed
16
23
 
17
- - **Exports:** Removed broken **`MODEL_CAPABILITIES`** re-export from `@exellix/xynthesis` 4.x (symbol removed upstream). Use **`getModelCapabilities(modelId)`** from `@exellix/ai-tasks` or `@exellix/xynthesis` instead.
18
24
  - **Smart-input validation context:** `inputs.*` resolves against top-level **`request.inputs`** only (not `executionMemory.inputs`). Use **`executionMemory.inputs.*`** for execution-memory plural paths.
19
25
  - **PRE `memoryPaths`:** Dual-root fallback — `executionMemory.input.<rest>` falls back to `executionMemory.inputs.<firstKey>.<rest>` when singular path is missing.
20
- - **`@exellix/xynthesis` ^4.0.1:** Xynthesis LLM calls use alias-only model resolution (`resolveModelReferenceForXynthesis`); default post-step model is **`balanced`** when omitted. **`skillModel`** resolution for **`@exellix/ai-skills` ^5.8.1** unchanged.
21
- - **`@x12i/funcx` ^4.2.0:** Execution-strategy function ids are re-exported from `@x12i/funcx/functions` (`FUNCX_EXECUTION_PLAN_FUNCTION_ID`, etc.). Runtime integration unchanged: `createClient` + `run()` + `getRunJsonResult` / `unwrapFuncxRunValue` for planner, optimizer, and optional `research/plan-questions`.
26
+ - **`@exellix/xynthesis` ^4.0.6:** Xynthesis LLM calls use alias-only model resolution (`resolveModelReferenceForXynthesis`); default post-step model is **`balanced`** when omitted. **`skillModel`** resolution for **`@exellix/ai-skills` ^5.8.6** unchanged.
22
27
  - **Validation:** `modelConfig.xynthesisModel` rejects concrete provider ids; accepts ai-profiles aliases (replaces 8.0.0 `MODEL_CONFIG_NOT_RESOLVED` for legacy tiers on both slots).
23
28
 
24
29
  ### Documentation
25
30
 
26
31
  - README — [Model profile aliases](#model-profile-aliases-x12iai-profiles); [`.docs/ai-tasks-model-profile-aliases-7x.md`](.docs/ai-tasks-model-profile-aliases-7x.md).
27
32
 
33
+ ## [8.0.9] - 2026-05-28
34
+
35
+ ### Changed
36
+
37
+ - **Dependencies (graph-engine alignment):** **`@x12i/funcx` ^4.2.0** (no 3.9.x path), **`@x12i/activix` ^8.0.5**, **`@x12i/catalox` ^5.1.1**; **`@x12i/funcx/functions`** re-exports (`FUNCX_EXECUTION_PLAN_FUNCTION_ID`, etc.).
38
+
39
+ ## [8.0.8] - 2026-05-27
40
+
41
+ ### Added
42
+
43
+ - **`getModelCapabilities`** re-export from `@exellix/xynthesis` (replaces removed **`MODEL_CAPABILITIES`** constant).
44
+
45
+ ### Fixed
46
+
47
+ - **Exports:** Removed broken **`MODEL_CAPABILITIES`** re-export from `@exellix/xynthesis` 4.x (symbol removed upstream). Use **`getModelCapabilities(modelId)`** from `@exellix/ai-tasks` or `@exellix/xynthesis` instead.
48
+
49
+ ### Deprecated
50
+
51
+ - **`8.0.7`** — do not use; re-exported **`MODEL_CAPABILITIES`** against **`@exellix/xynthesis` ≥ 4.x** where the symbol no longer exists. Upgrade to **8.0.8+**.
52
+
28
53
  ## [7.7.1] - 2026-05-25
29
54
 
30
55
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exellix/ai-tasks",
3
- "version": "8.1.0",
3
+ "version": "8.1.2",
4
4
  "description": "Task orchestration for the Exellix stack: runTask() with local handlers or LLM-backed execution, task-scoped memory/context enrichment, and executor dispatch via @exellix/ai-skills. ERC-compliant.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -59,6 +59,11 @@
59
59
  "engines": {
60
60
  "node": ">=20"
61
61
  },
62
+ "overrides": {
63
+ "@x12i/activix": "$@x12i/activix",
64
+ "@x12i/catalox": "$@x12i/catalox",
65
+ "@x12i/funcx": "$@x12i/funcx"
66
+ },
62
67
  "dependencies": {
63
68
  "@exellix/ai-skills": "^5.8.6",
64
69
  "@exellix/memorix-narrix-adapter": "^2.0.0",
@@ -73,7 +78,7 @@
73
78
  "@exellix/narrix-runner": "^2.0.0",
74
79
  "@exellix/narrix-web-scoper": "^2.0.0",
75
80
  "@exellix/xynthesis": "^4.0.6",
76
- "@x12i/activix": "^8.0.5",
81
+ "@x12i/activix": "^8.0.7",
77
82
  "@x12i/ai-profiles": "^1.2.3",
78
83
  "@x12i/catalox": "^5.1.1",
79
84
  "@x12i/env": "^4.0.1",