@exellix/ai-tasks 10.0.8 → 10.0.10
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 +19 -0
- package/README.md +17 -17
- package/RUNTASK_REQUEST.md +1 -1
- package/dist/core/task-sdk.d.ts.map +1 -1
- package/dist/core/task-sdk.js +26 -12
- package/dist/core/task-sdk.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/localTasks/collectEvidence.d.ts.map +1 -1
- package/dist/localTasks/collectEvidence.js +12 -22
- package/dist/localTasks/collectEvidence.js.map +1 -1
- package/dist/localTasks/decideWebScope.js +1 -1
- package/dist/localTasks/decideWebScope.js.map +1 -1
- package/dist/localTasks/index.d.ts.map +1 -1
- package/dist/localTasks/index.js +2 -0
- package/dist/localTasks/index.js.map +1 -1
- package/dist/localTasks/playgroundSeedMain.d.ts +4 -0
- package/dist/localTasks/playgroundSeedMain.d.ts.map +1 -0
- package/dist/localTasks/playgroundSeedMain.js +26 -0
- package/dist/localTasks/playgroundSeedMain.js.map +1 -0
- package/dist/narrix/narrixUnitExecution.d.ts.map +1 -1
- package/dist/narrix/narrixUnitExecution.js +9 -2
- package/dist/narrix/narrixUnitExecution.js.map +1 -1
- package/dist/narrix/webContextMarkdown.d.ts +4 -25
- package/dist/narrix/webContextMarkdown.d.ts.map +1 -1
- package/dist/narrix/webContextMarkdown.js +42 -57
- package/dist/narrix/webContextMarkdown.js.map +1 -1
- package/dist/node-execution/createNodeExecutionHost.js +1 -1
- package/dist/node-execution/createNodeExecutionHost.js.map +1 -1
- package/dist/node-execution/executePlaygroundElement.d.ts +23 -0
- package/dist/node-execution/executePlaygroundElement.d.ts.map +1 -0
- package/dist/node-execution/executePlaygroundElement.js +80 -0
- package/dist/node-execution/executePlaygroundElement.js.map +1 -0
- package/dist/node-execution/index.d.ts +2 -0
- package/dist/node-execution/index.d.ts.map +1 -1
- package/dist/node-execution/index.js +1 -0
- package/dist/node-execution/index.js.map +1 -1
- package/dist/types/task-types.d.ts +17 -34
- package/dist/types/task-types.d.ts.map +1 -1
- package/dist/types/task-types.js.map +1 -1
- package/dist/types/web-scope-types.d.ts +22 -0
- package/dist/types/web-scope-types.d.ts.map +1 -0
- package/dist/types/web-scope-types.js +2 -0
- package/dist/types/web-scope-types.js.map +1 -0
- package/dist/web-scope/applyWebScopeToRequest.d.ts +11 -0
- package/dist/web-scope/applyWebScopeToRequest.d.ts.map +1 -0
- package/dist/web-scope/applyWebScopeToRequest.js +75 -0
- package/dist/web-scope/applyWebScopeToRequest.js.map +1 -0
- package/dist/web-scope/buildSearchInput.d.ts +19 -0
- package/dist/web-scope/buildSearchInput.d.ts.map +1 -0
- package/dist/web-scope/buildSearchInput.js +178 -0
- package/dist/web-scope/buildSearchInput.js.map +1 -0
- package/dist/web-scope/client.d.ts +12 -0
- package/dist/web-scope/client.d.ts.map +1 -0
- package/dist/web-scope/client.js +72 -0
- package/dist/web-scope/client.js.map +1 -0
- package/documenations/web-scoping-in-ai-tasks.md +101 -424
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exellix/ai-tasks",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.10",
|
|
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",
|
|
@@ -65,7 +65,12 @@
|
|
|
65
65
|
"@x12i/catalox-contracts": "^5.9.7"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@exellix/ai-skills": "^6.12.
|
|
68
|
+
"@exellix/ai-skills": "^6.12.3",
|
|
69
|
+
"@exellix/fact-guard-adapters": "file:../fact-guard/packages/adapters",
|
|
70
|
+
"@exellix/fact-guard-enrichment": "file:../fact-guard/packages/enrichment",
|
|
71
|
+
"@exellix/fact-guard-policies": "file:../fact-guard/packages/policies",
|
|
72
|
+
"@exellix/fact-guard-types": "file:../fact-guard/packages/types",
|
|
73
|
+
"@exellix/fact-guard-validation": "file:../fact-guard/packages/validation",
|
|
69
74
|
"@exellix/memorix-narrix-adapter": "^2.0.0",
|
|
70
75
|
"@exellix/narrix-adapter-chat": "^2.0.0",
|
|
71
76
|
"@exellix/narrix-adapter-docs": "^2.0.0",
|
|
@@ -76,35 +81,30 @@
|
|
|
76
81
|
"@exellix/narrix-cni": "^2.0.0",
|
|
77
82
|
"@exellix/narrix-ingest": "^2.0.0",
|
|
78
83
|
"@exellix/narrix-runner": "^2.0.0",
|
|
79
|
-
"@exellix/narrix-web-scoper": "^2.0.0",
|
|
80
84
|
"@exellix/xynthesis": "^4.8.4",
|
|
81
85
|
"@x12i/activix": "^8.6.3",
|
|
82
86
|
"@x12i/ai-profiles": "^3.4.0",
|
|
83
87
|
"@x12i/catalox": "^5.9.7",
|
|
84
|
-
"@exellix/fact-guard-adapters": "^1.0.1",
|
|
85
|
-
"@exellix/fact-guard-enrichment": "^1.0.1",
|
|
86
|
-
"@exellix/fact-guard-policies": "^1.0.1",
|
|
87
|
-
"@exellix/fact-guard-types": "^1.0.1",
|
|
88
|
-
"@exellix/fact-guard-validation": "^1.0.1",
|
|
89
88
|
"@x12i/execution-memory-manager": "^1.2.0",
|
|
90
89
|
"@x12i/funcx": "^4.9.13",
|
|
91
|
-
"@x12i/graphenix-core": "^2.
|
|
92
|
-
"@x12i/graphenix-executable-contracts": "^2.
|
|
93
|
-
"@x12i/graphenix-plan-format": "^2.
|
|
94
|
-
"@x12i/graphenix-trace-format": "^2.
|
|
90
|
+
"@x12i/graphenix-core": "^2.7.0",
|
|
91
|
+
"@x12i/graphenix-executable-contracts": "^2.7.0",
|
|
92
|
+
"@x12i/graphenix-plan-format": "^2.7.0",
|
|
93
|
+
"@x12i/graphenix-trace-format": "^2.7.0",
|
|
95
94
|
"@x12i/logxer": "^4.6.0",
|
|
96
95
|
"@x12i/optimixer": "^3.5.2",
|
|
97
96
|
"@x12i/rendrix": "^4.3.0",
|
|
98
97
|
"@x12i/search-adapter": "^1.5.1",
|
|
98
|
+
"@x12i/web-scoper": "^1.1.1",
|
|
99
99
|
"handlebars": "^4.7.8",
|
|
100
100
|
"nx-cache": "^1.0.2"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@types/node": "^18.0.0 || ^20.0.0",
|
|
104
104
|
"@x12i/catalox-contracts": "^5.9.7",
|
|
105
|
-
"@x12i/graphenix-authoring-format": "^2.
|
|
106
|
-
"@x12i/graphenix-plan-compiler": "^2.
|
|
107
|
-
"@x12i/graphenix-task-node-format": "^2.
|
|
105
|
+
"@x12i/graphenix-authoring-format": "^2.7.0",
|
|
106
|
+
"@x12i/graphenix-plan-compiler": "^2.7.0",
|
|
107
|
+
"@x12i/graphenix-task-node-format": "^2.7.0",
|
|
108
108
|
"dotenv": "^16.0.0",
|
|
109
109
|
"ts-node": "^10.9.0",
|
|
110
110
|
"tsx": "^4.0.0",
|