@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.
Files changed (47) hide show
  1. package/dist/container/dependencies.d.ts +18 -7
  2. package/dist/container/dependencies.d.ts.map +1 -1
  3. package/dist/container/execution-service.d.ts.map +1 -1
  4. package/dist/container/execution-service.js +4 -0
  5. package/dist/container/execution-service.js.map +1 -1
  6. package/dist/container/runtime.d.ts +1 -0
  7. package/dist/container/runtime.d.ts.map +1 -1
  8. package/dist/container/runtime.js +6 -0
  9. package/dist/container/runtime.js.map +1 -1
  10. package/dist/container.d.ts +8 -1
  11. package/dist/container.d.ts.map +1 -1
  12. package/dist/container.js.map +1 -1
  13. package/dist/modules/execution/AgentContextBuilder.d.ts +9 -10
  14. package/dist/modules/execution/AgentContextBuilder.d.ts.map +1 -1
  15. package/dist/modules/execution/AgentContextBuilder.js +35 -4
  16. package/dist/modules/execution/AgentContextBuilder.js.map +1 -1
  17. package/dist/modules/execution/ExecutionServiceDependencies.d.ts +7 -1
  18. package/dist/modules/execution/ExecutionServiceDependencies.d.ts.map +1 -1
  19. package/dist/modules/execution/run-context-admission.d.ts +1 -1
  20. package/dist/modules/execution/run-context-admission.d.ts.map +1 -1
  21. package/dist/modules/execution/run-context-admission.js +1 -0
  22. package/dist/modules/execution/run-context-admission.js.map +1 -1
  23. package/dist/modules/execution/run-skills.d.ts +27 -1
  24. package/dist/modules/execution/run-skills.d.ts.map +1 -1
  25. package/dist/modules/execution/run-skills.js +32 -2
  26. package/dist/modules/execution/run-skills.js.map +1 -1
  27. package/dist/modules/sandbox/SandboxRunService.d.ts +6 -1
  28. package/dist/modules/sandbox/SandboxRunService.d.ts.map +1 -1
  29. package/dist/modules/sandbox/SandboxRunService.js +34 -27
  30. package/dist/modules/sandbox/SandboxRunService.js.map +1 -1
  31. package/dist/modules/sandbox/SandboxService.d.ts +26 -3
  32. package/dist/modules/sandbox/SandboxService.d.ts.map +1 -1
  33. package/dist/modules/sandbox/SandboxService.js +81 -19
  34. package/dist/modules/sandbox/SandboxService.js.map +1 -1
  35. package/dist/modules/sandbox/sandbox-input.d.ts +16 -0
  36. package/dist/modules/sandbox/sandbox-input.d.ts.map +1 -0
  37. package/dist/modules/sandbox/sandbox-input.js +274 -0
  38. package/dist/modules/sandbox/sandbox-input.js.map +1 -0
  39. package/dist/modules/sandbox/sandbox.logic.d.ts +0 -8
  40. package/dist/modules/sandbox/sandbox.logic.d.ts.map +1 -1
  41. package/dist/modules/sandbox/sandbox.logic.js +4 -48
  42. package/dist/modules/sandbox/sandbox.logic.js.map +1 -1
  43. package/dist/modules/sandbox/sandboxAdmission.d.ts +36 -0
  44. package/dist/modules/sandbox/sandboxAdmission.d.ts.map +1 -0
  45. package/dist/modules/sandbox/sandboxAdmission.js +83 -0
  46. package/dist/modules/sandbox/sandboxAdmission.js.map +1 -0
  47. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/orchestration",
3
- "version": "0.278.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.135.0",
29
- "@cat-factory/caching": "0.20.30",
30
- "@cat-factory/contracts": "0.319.0",
31
- "@cat-factory/integrations": "0.165.3",
32
- "@cat-factory/kernel": "0.309.0",
33
- "@cat-factory/prompt-fragments": "1.0.85",
34
- "@cat-factory/sandbox": "0.11.162",
35
- "@cat-factory/spend": "0.16.1",
36
- "@cat-factory/workspaces": "0.28.18"
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.7.361"
41
+ "@cat-factory/sandbox-fixtures": "0.8.0"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsc -b tsconfig.build.json",