@cat-factory/orchestration 0.178.1 → 0.179.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 (51) hide show
  1. package/dist/container/dependencies.d.ts +4 -1
  2. package/dist/container/dependencies.d.ts.map +1 -1
  3. package/dist/container/execution-service.d.ts +33 -0
  4. package/dist/container/execution-service.d.ts.map +1 -0
  5. package/dist/container/execution-service.js +84 -0
  6. package/dist/container/execution-service.js.map +1 -0
  7. package/dist/container/platform-modules.d.ts +2 -1
  8. package/dist/container/platform-modules.d.ts.map +1 -1
  9. package/dist/container/platform-modules.js +3 -1
  10. package/dist/container/platform-modules.js.map +1 -1
  11. package/dist/container-content-libraries.d.ts +28 -1
  12. package/dist/container-content-libraries.d.ts.map +1 -1
  13. package/dist/container-content-libraries.js +47 -1
  14. package/dist/container-content-libraries.js.map +1 -1
  15. package/dist/container.d.ts +4 -2
  16. package/dist/container.d.ts.map +1 -1
  17. package/dist/container.js +20 -68
  18. package/dist/container.js.map +1 -1
  19. package/dist/index.d.ts +1 -1
  20. package/dist/index.d.ts.map +1 -1
  21. package/dist/index.js.map +1 -1
  22. package/dist/modules/execution/AgentContextBuilder.d.ts +26 -0
  23. package/dist/modules/execution/AgentContextBuilder.d.ts.map +1 -1
  24. package/dist/modules/execution/AgentContextBuilder.js +52 -42
  25. package/dist/modules/execution/AgentContextBuilder.js.map +1 -1
  26. package/dist/modules/execution/ExecutionService.d.ts +6 -0
  27. package/dist/modules/execution/ExecutionService.d.ts.map +1 -1
  28. package/dist/modules/execution/ExecutionService.js +49 -62
  29. package/dist/modules/execution/ExecutionService.js.map +1 -1
  30. package/dist/modules/execution/ExecutionServiceDependencies.d.ts +7 -0
  31. package/dist/modules/execution/ExecutionServiceDependencies.d.ts.map +1 -1
  32. package/dist/modules/execution/RunDispatcher.d.ts.map +1 -1
  33. package/dist/modules/execution/RunDispatcher.js +2 -39
  34. package/dist/modules/execution/RunDispatcher.js.map +1 -1
  35. package/dist/modules/execution/builder-context-files.d.ts +36 -0
  36. package/dist/modules/execution/builder-context-files.d.ts.map +1 -0
  37. package/dist/modules/execution/builder-context-files.js +54 -0
  38. package/dist/modules/execution/builder-context-files.js.map +1 -0
  39. package/dist/modules/execution/job-facts.d.ts +12 -0
  40. package/dist/modules/execution/job-facts.d.ts.map +1 -0
  41. package/dist/modules/execution/job-facts.js +50 -0
  42. package/dist/modules/execution/job-facts.js.map +1 -0
  43. package/dist/modules/execution/run-context-admission.d.ts +1 -1
  44. package/dist/modules/execution/run-context-admission.d.ts.map +1 -1
  45. package/dist/modules/execution/run-context-admission.js +1 -0
  46. package/dist/modules/execution/run-context-admission.js.map +1 -1
  47. package/dist/modules/execution/run-foundational-services.d.ts +83 -0
  48. package/dist/modules/execution/run-foundational-services.d.ts.map +1 -0
  49. package/dist/modules/execution/run-foundational-services.js +76 -0
  50. package/dist/modules/execution/run-foundational-services.js.map +1 -0
  51. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/orchestration",
3
- "version": "0.178.1",
3
+ "version": "0.179.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.37",
28
- "@cat-factory/agents": "0.95.1",
29
- "@cat-factory/caching": "0.11.32",
30
- "@cat-factory/contracts": "0.203.0",
31
- "@cat-factory/integrations": "0.113.7",
32
- "@cat-factory/kernel": "0.202.0",
33
- "@cat-factory/prompt-fragments": "0.15.26",
34
- "@cat-factory/sandbox": "0.11.17",
35
- "@cat-factory/spend": "0.12.133",
36
- "@cat-factory/workspaces": "0.21.10"
28
+ "@cat-factory/agents": "0.96.0",
29
+ "@cat-factory/caching": "0.12.0",
30
+ "@cat-factory/contracts": "0.204.0",
31
+ "@cat-factory/integrations": "0.113.8",
32
+ "@cat-factory/kernel": "0.203.0",
33
+ "@cat-factory/prompt-fragments": "0.15.27",
34
+ "@cat-factory/sandbox": "0.11.18",
35
+ "@cat-factory/spend": "0.12.134",
36
+ "@cat-factory/workspaces": "0.21.11"
37
37
  },
38
38
  "devDependencies": {
39
39
  "typescript": "7.0.2",
40
40
  "vitest": "^4.1.10",
41
- "@cat-factory/sandbox-fixtures": "0.7.234"
41
+ "@cat-factory/sandbox-fixtures": "0.7.235"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsc -b tsconfig.build.json",