@cat-factory/orchestration 0.266.0 → 0.268.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/modules/execution/AgentContextBuilder.d.ts +0 -22
- package/dist/modules/execution/AgentContextBuilder.d.ts.map +1 -1
- package/dist/modules/execution/AgentContextBuilder.js +5 -46
- package/dist/modules/execution/AgentContextBuilder.js.map +1 -1
- package/dist/modules/execution/CompanionController.d.ts.map +1 -1
- package/dist/modules/execution/CompanionController.js +1 -0
- package/dist/modules/execution/CompanionController.js.map +1 -1
- package/dist/modules/execution/DeployerStepController.js +2 -2
- package/dist/modules/execution/FollowUpGateController.d.ts.map +1 -1
- package/dist/modules/execution/FollowUpGateController.js +3 -1
- package/dist/modules/execution/FollowUpGateController.js.map +1 -1
- package/dist/modules/execution/IterationCapController.d.ts.map +1 -1
- package/dist/modules/execution/IterationCapController.js +3 -0
- package/dist/modules/execution/IterationCapController.js.map +1 -1
- package/dist/modules/execution/JudgeStepController.d.ts.map +1 -1
- package/dist/modules/execution/JudgeStepController.js +4 -0
- package/dist/modules/execution/JudgeStepController.js.map +1 -1
- package/dist/modules/execution/PrReviewController.d.ts.map +1 -1
- package/dist/modules/execution/PrReviewController.js +6 -5
- package/dist/modules/execution/PrReviewController.js.map +1 -1
- package/dist/modules/execution/RalphController.js +1 -1
- package/dist/modules/execution/RalphController.js.map +1 -1
- package/dist/modules/execution/RunAdmission.d.ts +38 -0
- package/dist/modules/execution/RunAdmission.d.ts.map +1 -1
- package/dist/modules/execution/RunAdmission.js +102 -10
- package/dist/modules/execution/RunAdmission.js.map +1 -1
- package/dist/modules/execution/StepDecisionController.d.ts.map +1 -1
- package/dist/modules/execution/StepDecisionController.js +3 -0
- package/dist/modules/execution/StepDecisionController.js.map +1 -1
- package/dist/modules/execution/companion-review-context.d.ts.map +1 -1
- package/dist/modules/execution/companion-review-context.js +12 -1
- package/dist/modules/execution/companion-review-context.js.map +1 -1
- package/dist/modules/execution/deployer.logic.d.ts +18 -4
- package/dist/modules/execution/deployer.logic.d.ts.map +1 -1
- package/dist/modules/execution/deployer.logic.js +20 -5
- package/dist/modules/execution/deployer.logic.js.map +1 -1
- package/dist/modules/execution/prReview.logic.d.ts.map +1 -1
- package/dist/modules/execution/prReview.logic.js +3 -2
- package/dist/modules/execution/prReview.logic.js.map +1 -1
- package/dist/modules/execution/step-fold.logic.d.ts +45 -0
- package/dist/modules/execution/step-fold.logic.d.ts.map +1 -1
- package/dist/modules/execution/step-fold.logic.js +51 -0
- package/dist/modules/execution/step-fold.logic.js.map +1 -1
- package/dist/modules/modelPresets/ModelPresetService.d.ts +3 -2
- package/dist/modules/modelPresets/ModelPresetService.d.ts.map +1 -1
- package/dist/modules/modelPresets/ModelPresetService.js +12 -11
- package/dist/modules/modelPresets/ModelPresetService.js.map +1 -1
- package/dist/validation/validateBinaryGenerators.d.ts.map +1 -1
- package/dist/validation/validateBinaryGenerators.js +25 -1
- package/dist/validation/validateBinaryGenerators.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.268.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.58",
|
|
28
|
-
"@cat-factory/agents": "0.
|
|
29
|
-
"@cat-factory/caching": "0.20.
|
|
30
|
-
"@cat-factory/contracts": "0.
|
|
31
|
-
"@cat-factory/integrations": "0.160.
|
|
32
|
-
"@cat-factory/kernel": "0.
|
|
33
|
-
"@cat-factory/prompt-fragments": "1.0.
|
|
34
|
-
"@cat-factory/sandbox": "0.11.
|
|
35
|
-
"@cat-factory/spend": "0.15.
|
|
36
|
-
"@cat-factory/workspaces": "0.
|
|
28
|
+
"@cat-factory/agents": "0.128.0",
|
|
29
|
+
"@cat-factory/caching": "0.20.13",
|
|
30
|
+
"@cat-factory/contracts": "0.306.0",
|
|
31
|
+
"@cat-factory/integrations": "0.160.11",
|
|
32
|
+
"@cat-factory/kernel": "0.296.0",
|
|
33
|
+
"@cat-factory/prompt-fragments": "1.0.68",
|
|
34
|
+
"@cat-factory/sandbox": "0.11.145",
|
|
35
|
+
"@cat-factory/spend": "0.15.86",
|
|
36
|
+
"@cat-factory/workspaces": "0.28.1"
|
|
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.347"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc -b tsconfig.build.json",
|