@cat-factory/orchestration 0.133.2 → 0.135.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.d.ts.map +1 -1
- package/dist/container.js +13 -6
- package/dist/container.js.map +1 -1
- package/dist/modules/board/BoardService.d.ts +13 -1
- package/dist/modules/board/BoardService.d.ts.map +1 -1
- package/dist/modules/board/BoardService.js +13 -1
- package/dist/modules/board/BoardService.js.map +1 -1
- package/dist/modules/board/reviewFrictionGuard.d.ts +45 -0
- package/dist/modules/board/reviewFrictionGuard.d.ts.map +1 -0
- package/dist/modules/board/reviewFrictionGuard.js +72 -0
- package/dist/modules/board/reviewFrictionGuard.js.map +1 -0
- package/dist/modules/execution/DeployerStepController.d.ts +3 -2
- package/dist/modules/execution/DeployerStepController.d.ts.map +1 -1
- package/dist/modules/execution/DeployerStepController.js +1 -1
- package/dist/modules/execution/DeployerStepController.js.map +1 -1
- package/dist/modules/execution/PollCompletionController.d.ts +3 -2
- package/dist/modules/execution/PollCompletionController.d.ts.map +1 -1
- package/dist/modules/execution/PollCompletionController.js +4 -1
- package/dist/modules/execution/PollCompletionController.js.map +1 -1
- package/dist/modules/execution/RunDispatcher.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcher.js +16 -4
- package/dist/modules/execution/RunDispatcher.js.map +1 -1
- package/dist/modules/execution/advance.d.ts +7 -0
- package/dist/modules/execution/advance.d.ts.map +1 -1
- package/dist/modules/execution/drive.d.ts.map +1 -1
- package/dist/modules/execution/drive.js +3 -1
- package/dist/modules/execution/drive.js.map +1 -1
- package/dist/modules/execution/job.logic.d.ts +28 -1
- package/dist/modules/execution/job.logic.d.ts.map +1 -1
- package/dist/modules/execution/job.logic.js +15 -0
- package/dist/modules/execution/job.logic.js.map +1 -1
- package/dist/modules/observability/LlmObservabilityService.d.ts +8 -2
- package/dist/modules/observability/LlmObservabilityService.d.ts.map +1 -1
- package/dist/modules/observability/LlmObservabilityService.js +9 -3
- package/dist/modules/observability/LlmObservabilityService.js.map +1 -1
- package/dist/modules/settings/WorkspaceSettingsService.d.ts.map +1 -1
- package/dist/modules/settings/WorkspaceSettingsService.js +21 -1
- package/dist/modules/settings/WorkspaceSettingsService.js.map +1 -1
- 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.135.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": "^6.0.230",
|
|
28
|
-
"@cat-factory/agents": "0.68.
|
|
29
|
-
"@cat-factory/caching": "0.10.
|
|
30
|
-
"@cat-factory/contracts": "0.
|
|
31
|
-
"@cat-factory/integrations": "0.
|
|
32
|
-
"@cat-factory/kernel": "0.
|
|
33
|
-
"@cat-factory/prompt-fragments": "0.14.
|
|
34
|
-
"@cat-factory/sandbox": "0.9.
|
|
35
|
-
"@cat-factory/spend": "0.12.
|
|
36
|
-
"@cat-factory/workspaces": "0.17.
|
|
28
|
+
"@cat-factory/agents": "0.68.4",
|
|
29
|
+
"@cat-factory/caching": "0.10.33",
|
|
30
|
+
"@cat-factory/contracts": "0.160.0",
|
|
31
|
+
"@cat-factory/integrations": "0.92.0",
|
|
32
|
+
"@cat-factory/kernel": "0.154.0",
|
|
33
|
+
"@cat-factory/prompt-fragments": "0.14.7",
|
|
34
|
+
"@cat-factory/sandbox": "0.9.137",
|
|
35
|
+
"@cat-factory/spend": "0.12.77",
|
|
36
|
+
"@cat-factory/workspaces": "0.17.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.
|
|
41
|
+
"@cat-factory/sandbox-fixtures": "0.7.190"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc -b tsconfig.build.json",
|