@exellix/ai-skills 6.3.7 → 6.4.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/README.md +6 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -656,14 +656,17 @@ Details and caveats: **[docs/FLEX_MD_AND_TESTING.md](docs/FLEX_MD_AND_TESTING.md
|
|
|
656
656
|
|
|
657
657
|
- **Node.js 20+** (see `package.json` **`engines`**; aligns with **`@x12i/catalox`**)
|
|
658
658
|
- **`@x12i/catalox`** **≥ 4** and **Firebase** access for the **`ai-skills`** native catalog (see **`createCataloxFromEnv`** and [Environment (Firebase & Catalox v4)](#environment-firebase--catalox-v4))
|
|
659
|
-
- **`@x12i/ai-gateway`** **^10.0.
|
|
660
|
-
- **`@x12i/activix`** **^8.0
|
|
659
|
+
- **`@x12i/ai-gateway`** **^10.0.7** (see `package.json`; shares **`@x12i/activix` ^8** with this package)
|
|
660
|
+
- **`@x12i/activix`** **^8.5.0** (direct dependency for activity-row enrichment types/patches)
|
|
661
661
|
- At least one LLM provider key when using the default constructed gateway
|
|
662
|
+
|
|
663
|
+
**Downstream orchestrators:** `@exellix/ai-tasks` **≥ 8.6.7** depends on this package (**≥ 6.3.7**) for MAIN execution and inherits the gateway 10.x contract — see **[docs/UPGRADING_AI_GATEWAY_10.md](docs/UPGRADING_AI_GATEWAY_10.md)**.
|
|
664
|
+
|
|
662
665
|
## Related runtime packages
|
|
663
666
|
|
|
664
667
|
Task and graph orchestration live in sibling packages, not in **`@exellix/ai-skills`**:
|
|
665
668
|
|
|
666
|
-
- **`@exellix/ai-tasks`** — task orchestration and task-level runtime wiring
|
|
669
|
+
- **`@exellix/ai-tasks`** — task orchestration and task-level runtime wiring (**≥ 8.6.7** pins **`@exellix/ai-skills` ≥ 6.3.7**; gateway 10.x billing and invoke rules apply to MAIN via this package)
|
|
667
670
|
- **`@exellix/graph-engine`** — graph execution and graph-level runtime wiring; forward each node’s **`inputs.outputContract`** on **`runSkill`** when Run Analysis or downstream validation require structured **`parsed`** fields
|
|
668
671
|
- **`@exellix/exellix-runtime`** — root runtime composition (for example loading composed `runtimeObjects` for debug tooling)
|
|
669
672
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exellix/ai-skills",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"description": "Foundational skill execution layer for exellix ecosystem using @x12i/ai-gateway with FlexMD 2.0 support and Catalox as the catalog store",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"node": ">=20"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@x12i/activix": "^8.
|
|
61
|
-
"@x12i/ai-gateway": "^10.0
|
|
62
|
-
"@x12i/ai-profiles": "^
|
|
60
|
+
"@x12i/activix": "^8.6.0",
|
|
61
|
+
"@x12i/ai-gateway": "^10.1.0",
|
|
62
|
+
"@x12i/ai-profiles": "^3.0.0",
|
|
63
63
|
"@x12i/catalox": "^5.1.3",
|
|
64
64
|
"@x12i/env": "^4.0.1",
|
|
65
65
|
"@x12i/execution-memory-manager": "^1.2.0",
|