@cat-factory/worker 0.14.0 → 0.14.1

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,15 @@
1
+ -- Epics + dependency-graph enhancements.
2
+ --
3
+ -- 1. `epic_id`: a task's membership link to an `epic`-level block. An epic groups
4
+ -- tasks that may live under different modules/services, so this is INDEPENDENT of
5
+ -- `parent_id` (the structural container) — deleting an epic only clears this link,
6
+ -- it never cascades the member tasks. NULL ⇒ the task is not in an epic.
7
+ -- (`level` is free-text, so the new 'epic' level needs no schema change.)
8
+ ALTER TABLE blocks ADD COLUMN epic_id TEXT;
9
+
10
+ -- 2. `auto_start_dependents`: preceding-task toggle (0/1). When a task with this set
11
+ -- reaches `done` (its PR merged), the engine auto-starts every task that depends on
12
+ -- it whose other dependencies are also done. NULL ⇒ off.
13
+ ALTER TABLE blocks ADD COLUMN auto_start_dependents INTEGER;
14
+
15
+ CREATE INDEX idx_blocks_epic ON blocks (workspace_id, epic_id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/worker",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
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",
@@ -39,17 +39,17 @@
39
39
  "pino": "^10.3.1",
40
40
  "valibot": "^1.4.1",
41
41
  "workers-ai-provider": "^3.2.0",
42
- "@cat-factory/agents": "0.11.14",
43
- "@cat-factory/consensus": "0.7.24",
44
- "@cat-factory/contracts": "0.18.0",
45
- "@cat-factory/integrations": "0.13.0",
46
- "@cat-factory/kernel": "0.17.0",
47
- "@cat-factory/observability-langfuse": "0.7.22",
48
- "@cat-factory/orchestration": "0.12.0",
49
- "@cat-factory/prompt-fragments": "0.7.15",
50
- "@cat-factory/provider-cloudflare": "0.7.24",
51
- "@cat-factory/server": "0.18.0",
52
- "@cat-factory/spend": "0.8.16"
42
+ "@cat-factory/agents": "0.11.15",
43
+ "@cat-factory/consensus": "0.7.25",
44
+ "@cat-factory/contracts": "0.19.0",
45
+ "@cat-factory/integrations": "0.14.0",
46
+ "@cat-factory/kernel": "0.18.0",
47
+ "@cat-factory/observability-langfuse": "0.7.23",
48
+ "@cat-factory/orchestration": "0.13.0",
49
+ "@cat-factory/prompt-fragments": "0.7.16",
50
+ "@cat-factory/provider-cloudflare": "0.7.25",
51
+ "@cat-factory/server": "0.19.0",
52
+ "@cat-factory/spend": "0.8.17"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@cloudflare/vitest-pool-workers": "^0.16.19",
@@ -57,7 +57,7 @@
57
57
  "typescript": "7.0.1-rc",
58
58
  "vitest": "^4.1.9",
59
59
  "wrangler": "^4.104.0",
60
- "@cat-factory/conformance": "0.7.24"
60
+ "@cat-factory/conformance": "0.7.25"
61
61
  },
62
62
  "scripts": {
63
63
  "build": "tsc -b tsconfig.build.json",