@cat-factory/worker 0.54.1 → 0.54.2
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
-- Connections between services (phase 1 of the service-connections initiative —
|
|
2
|
+
-- see docs/initiatives/service-connections.md).
|
|
3
|
+
--
|
|
4
|
+
-- `service_connections`: a `service`-type frame's directed connections to the other
|
|
5
|
+
-- services it USES (stored on the consumer end), serialized as a JSON array of
|
|
6
|
+
-- `{ serviceBlockId, description? }`. Drawn as board edges and the source of the
|
|
7
|
+
-- per-task "involved services" choices. Stored as JSON, mirroring `frontend_config`.
|
|
8
|
+
ALTER TABLE blocks ADD COLUMN service_connections TEXT;
|
|
9
|
+
-- `involved_service_ids`: a task's selected connected service frames (JSON array of
|
|
10
|
+
-- frame block ids) that are directly involved beyond the task's own service — they
|
|
11
|
+
-- spin up as ephemeral environments too, and the coding agent may change their repos.
|
|
12
|
+
ALTER TABLE blocks ADD COLUMN involved_service_ids TEXT;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/worker",
|
|
3
|
-
"version": "0.54.
|
|
3
|
+
"version": "0.54.2",
|
|
4
4
|
"description": "Reusable Cloudflare Worker library (Hono + D1) exposing the Agent Architecture Board core: the `createApp()` Hono factory, the default fetch/scheduled/queue handler, and the Durable Object + Workflow classes. Deployments (see deploy/backend) supply the wrangler.toml + config and re-export these.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"pino": "^10.3.1",
|
|
43
43
|
"valibot": "^1.4.2",
|
|
44
44
|
"workers-ai-provider": "^3.2.1",
|
|
45
|
-
"@cat-factory/agents": "0.26.
|
|
46
|
-
"@cat-factory/consensus": "0.8.
|
|
47
|
-
"@cat-factory/contracts": "0.
|
|
48
|
-
"@cat-factory/gates": "0.2.
|
|
49
|
-
"@cat-factory/gitlab": "0.4.
|
|
50
|
-
"@cat-factory/integrations": "0.56.
|
|
51
|
-
"@cat-factory/kernel": "0.70.
|
|
52
|
-
"@cat-factory/observability-langfuse": "0.7.
|
|
53
|
-
"@cat-factory/orchestration": "0.59.
|
|
54
|
-
"@cat-factory/prompt-fragments": "0.9.
|
|
55
|
-
"@cat-factory/provider-cloudflare": "0.7.
|
|
56
|
-
"@cat-factory/server": "0.68.
|
|
57
|
-
"@cat-factory/spend": "0.10.
|
|
45
|
+
"@cat-factory/agents": "0.26.15",
|
|
46
|
+
"@cat-factory/consensus": "0.8.16",
|
|
47
|
+
"@cat-factory/contracts": "0.83.0",
|
|
48
|
+
"@cat-factory/gates": "0.2.72",
|
|
49
|
+
"@cat-factory/gitlab": "0.4.43",
|
|
50
|
+
"@cat-factory/integrations": "0.56.3",
|
|
51
|
+
"@cat-factory/kernel": "0.70.2",
|
|
52
|
+
"@cat-factory/observability-langfuse": "0.7.115",
|
|
53
|
+
"@cat-factory/orchestration": "0.59.2",
|
|
54
|
+
"@cat-factory/prompt-fragments": "0.9.43",
|
|
55
|
+
"@cat-factory/provider-cloudflare": "0.7.121",
|
|
56
|
+
"@cat-factory/server": "0.68.2",
|
|
57
|
+
"@cat-factory/spend": "0.10.76"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@cloudflare/vitest-pool-workers": "^0.16.20",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"typescript": "7.0.1-rc",
|
|
63
63
|
"vitest": "^4.1.9",
|
|
64
64
|
"wrangler": "^4.105.0",
|
|
65
|
-
"@cat-factory/conformance": "0.9.
|
|
65
|
+
"@cat-factory/conformance": "0.9.96"
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
68
|
"build": "tsc -b tsconfig.build.json",
|