@exellix/ai-skills 5.8.16 → 5.9.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 +2 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -15,6 +15,7 @@ Foundational skill execution layer for the exellix ecosystem: templates live in
|
|
|
15
15
|
| Gateway templates (v4), `invoke()` vs `invokeChat()`, `templateRendering` | **[docs/GATEWAY_TEMPLATE_PROTOCOL_V4.md](docs/GATEWAY_TEMPLATE_PROTOCOL_V4.md)** |
|
|
16
16
|
| This package: `workingMemory`, `templateRenderOptions`, client `templateRendering` | **[docs/AI_SKILLS_GATEWAY_TEMPLATES.md](docs/AI_SKILLS_GATEWAY_TEMPLATES.md)** |
|
|
17
17
|
| Invoke execution metadata (`provider`, `modelUsed`, `effectiveModelConfig`, …) | **[docs/AI_GATEWAY_INVOKE_EXECUTION_METADATA.md](docs/AI_GATEWAY_INVOKE_EXECUTION_METADATA.md)** |
|
|
18
|
+
| OpenRouter vs direct routing (`PREFER_OPENROUTER`) — not implemented here | **[docs/PREFER_OPENROUTER_ROUTING.md](docs/PREFER_OPENROUTER_ROUTING.md)** |
|
|
18
19
|
| Graph execution context (`graphId`, `nodeId`, identity mapping) | **[docs/GRAPH_EXECUTION_SUPPORT.md](docs/GRAPH_EXECUTION_SUPPORT.md)** |
|
|
19
20
|
| Gateway invoke preflight (`analyzeSkillRequest`, FuncX ≥ 4.0.1) | **[docs/SKILL_REQUEST_ANALYSIS.md](docs/SKILL_REQUEST_ANALYSIS.md)** |
|
|
20
21
|
| External follow-ups (Activix persistence vs gateway envelope) | **[docs/AI_GATEWAY_FEATURE_REQUESTS.md](docs/AI_GATEWAY_FEATURE_REQUESTS.md)** |
|
|
@@ -502,6 +503,7 @@ const res = await skills.runSkill({
|
|
|
502
503
|
- `modelConfig` is **optional**. If omitted, gateway/router defaults apply for each field.
|
|
503
504
|
- This package does **not** merge a global default `modelConfig` at construction time; only **`templateRendering`** has client-wide defaults for template rendering.
|
|
504
505
|
- The gateway and provider enforce valid ranges (e.g. temperature).
|
|
506
|
+
- **OpenRouter routing policy (`PREFER_OPENROUTER`)** is **not** applied in this package. Orchestrators (**`@exellix/ai-tasks`**, graph-engine) resolve the plan and set the wire model on `modelConfig` before `runSkill()`. See **[docs/PREFER_OPENROUTER_ROUTING.md](docs/PREFER_OPENROUTER_ROUTING.md)**.
|
|
505
507
|
|
|
506
508
|
## API Reference
|
|
507
509
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exellix/ai-skills",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.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",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@x12i/activix": "^8.3.1",
|
|
61
|
-
"@x12i/ai-gateway": "^9.
|
|
62
|
-
"@x12i/catalox": "^5.1.
|
|
61
|
+
"@x12i/ai-gateway": "^9.7.0",
|
|
62
|
+
"@x12i/catalox": "^5.1.3",
|
|
63
63
|
"@x12i/env": "^4.0.1",
|
|
64
64
|
"@x12i/execution-memory-manager": "^1.2.0",
|
|
65
|
-
"@x12i/funcx": "^4.2.
|
|
66
|
-
"@x12i/logxer": "^4.
|
|
65
|
+
"@x12i/funcx": "^4.2.4",
|
|
66
|
+
"@x12i/logxer": "^4.6.0",
|
|
67
67
|
"@x12i/rendrix": "^4.3.0",
|
|
68
68
|
"nx-helpers": "^1.5.1"
|
|
69
69
|
},
|