@cat-factory/orchestration 0.278.0 → 0.280.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/dist/container/dependencies.d.ts +18 -7
- package/dist/container/dependencies.d.ts.map +1 -1
- package/dist/container/execution-service.d.ts.map +1 -1
- package/dist/container/execution-service.js +4 -0
- package/dist/container/execution-service.js.map +1 -1
- package/dist/container/runtime.d.ts +1 -0
- package/dist/container/runtime.d.ts.map +1 -1
- package/dist/container/runtime.js +6 -0
- package/dist/container/runtime.js.map +1 -1
- package/dist/container.d.ts +8 -1
- package/dist/container.d.ts.map +1 -1
- package/dist/container.js.map +1 -1
- package/dist/modules/execution/AgentContextBuilder.d.ts +9 -10
- package/dist/modules/execution/AgentContextBuilder.d.ts.map +1 -1
- package/dist/modules/execution/AgentContextBuilder.js +35 -4
- package/dist/modules/execution/AgentContextBuilder.js.map +1 -1
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts +7 -1
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts.map +1 -1
- package/dist/modules/execution/run-context-admission.d.ts +1 -1
- package/dist/modules/execution/run-context-admission.d.ts.map +1 -1
- package/dist/modules/execution/run-context-admission.js +1 -0
- package/dist/modules/execution/run-context-admission.js.map +1 -1
- package/dist/modules/execution/run-skills.d.ts +27 -1
- package/dist/modules/execution/run-skills.d.ts.map +1 -1
- package/dist/modules/execution/run-skills.js +32 -2
- package/dist/modules/execution/run-skills.js.map +1 -1
- package/dist/modules/sandbox/SandboxRunService.d.ts +6 -1
- package/dist/modules/sandbox/SandboxRunService.d.ts.map +1 -1
- package/dist/modules/sandbox/SandboxRunService.js +34 -27
- package/dist/modules/sandbox/SandboxRunService.js.map +1 -1
- package/dist/modules/sandbox/SandboxService.d.ts +26 -3
- package/dist/modules/sandbox/SandboxService.d.ts.map +1 -1
- package/dist/modules/sandbox/SandboxService.js +81 -19
- package/dist/modules/sandbox/SandboxService.js.map +1 -1
- package/dist/modules/sandbox/sandbox-input.d.ts +16 -0
- package/dist/modules/sandbox/sandbox-input.d.ts.map +1 -0
- package/dist/modules/sandbox/sandbox-input.js +274 -0
- package/dist/modules/sandbox/sandbox-input.js.map +1 -0
- package/dist/modules/sandbox/sandbox.logic.d.ts +0 -8
- package/dist/modules/sandbox/sandbox.logic.d.ts.map +1 -1
- package/dist/modules/sandbox/sandbox.logic.js +4 -48
- package/dist/modules/sandbox/sandbox.logic.js.map +1 -1
- package/dist/modules/sandbox/sandboxAdmission.d.ts +36 -0
- package/dist/modules/sandbox/sandboxAdmission.d.ts.map +1 -0
- package/dist/modules/sandbox/sandboxAdmission.js +83 -0
- package/dist/modules/sandbox/sandboxAdmission.js.map +1 -0
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/orchestration",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.280.0",
|
|
4
4
|
"description": "Delivery-workflow engine for the Agent Architecture Board (execution, bootstrap, pipelines, board, boardScan, requirements, and composition root).",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"ai": "^7.0.64",
|
|
28
|
-
"@cat-factory/agents": "0.
|
|
29
|
-
"@cat-factory/caching": "0.20.
|
|
30
|
-
"@cat-factory/contracts": "0.
|
|
31
|
-
"@cat-factory/integrations": "0.165.
|
|
32
|
-
"@cat-factory/kernel": "0.
|
|
33
|
-
"@cat-factory/prompt-fragments": "1.0.
|
|
34
|
-
"@cat-factory/sandbox": "0.
|
|
35
|
-
"@cat-factory/spend": "0.16.
|
|
36
|
-
"@cat-factory/workspaces": "0.28.
|
|
28
|
+
"@cat-factory/agents": "0.137.0",
|
|
29
|
+
"@cat-factory/caching": "0.20.32",
|
|
30
|
+
"@cat-factory/contracts": "0.320.0",
|
|
31
|
+
"@cat-factory/integrations": "0.165.5",
|
|
32
|
+
"@cat-factory/kernel": "0.311.0",
|
|
33
|
+
"@cat-factory/prompt-fragments": "1.0.87",
|
|
34
|
+
"@cat-factory/sandbox": "0.12.1",
|
|
35
|
+
"@cat-factory/spend": "0.16.3",
|
|
36
|
+
"@cat-factory/workspaces": "0.28.20"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "7.0.2",
|
|
40
40
|
"vitest": "^4.1.10",
|
|
41
|
-
"@cat-factory/sandbox-fixtures": "0.
|
|
41
|
+
"@cat-factory/sandbox-fixtures": "0.8.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc -b tsconfig.build.json",
|