@exaudeus/workrail 3.41.0 → 3.42.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/cli-worktrain.js +40 -11
- package/dist/console-ui/assets/{index-CQt4UhPB.js → index-DwfWMKvv.js} +1 -1
- package/dist/console-ui/index.html +1 -1
- package/dist/context-assembly/deps.d.ts +8 -0
- package/dist/context-assembly/deps.js +2 -0
- package/dist/context-assembly/index.d.ts +6 -0
- package/dist/context-assembly/index.js +50 -0
- package/dist/context-assembly/infra.d.ts +3 -0
- package/dist/context-assembly/infra.js +154 -0
- package/dist/context-assembly/types.d.ts +30 -0
- package/dist/context-assembly/types.js +2 -0
- package/dist/coordinators/pr-review.d.ts +3 -1
- package/dist/coordinators/pr-review.js +25 -4
- package/dist/daemon/workflow-runner.js +11 -0
- package/dist/domain/execution/state.d.ts +6 -6
- package/dist/manifest.json +64 -32
- package/dist/mcp/handlers/v2-workflow.d.ts +2 -2
- package/dist/mcp/output-schemas.d.ts +234 -234
- package/dist/mcp/tools.d.ts +2 -2
- package/dist/mcp/v2/tools.d.ts +24 -24
- package/dist/v2/durable-core/schemas/artifacts/assessment.d.ts +2 -2
- package/dist/v2/durable-core/schemas/artifacts/coordinator-signal.d.ts +2 -2
- package/dist/v2/durable-core/schemas/artifacts/loop-control.d.ts +6 -6
- package/dist/v2/durable-core/schemas/artifacts/review-verdict.d.ts +6 -6
- package/dist/v2/durable-core/schemas/compiled-workflow/index.d.ts +56 -56
- package/dist/v2/durable-core/schemas/execution-snapshot/blocked-snapshot.d.ts +83 -83
- package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +1024 -1024
- package/dist/v2/durable-core/schemas/export-bundle/index.d.ts +2336 -2336
- package/dist/v2/durable-core/schemas/session/dag-topology.d.ts +6 -6
- package/dist/v2/durable-core/schemas/session/events.d.ts +339 -339
- package/dist/v2/durable-core/schemas/session/gaps.d.ts +30 -30
- package/dist/v2/durable-core/schemas/session/manifest.d.ts +6 -6
- package/dist/v2/durable-core/schemas/session/outputs.d.ts +8 -8
- package/dist/v2/durable-core/schemas/session/validation-event.d.ts +3 -3
- package/docs/design/context-assembly-design-candidates.md +199 -0
- package/docs/design/context-assembly-implementation-plan.md +211 -0
- package/docs/design/context-assembly-review-findings.md +112 -0
- package/docs/ideas/backlog.md +64 -0
- package/package.json +1 -1
|
@@ -43,35 +43,35 @@ export declare const EdgeCreatedDataV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
43
43
|
eventId: string;
|
|
44
44
|
}>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
edgeKind: "acked_step" | "checkpoint";
|
|
47
|
+
fromNodeId: string;
|
|
48
|
+
toNodeId: string;
|
|
46
49
|
cause: {
|
|
47
50
|
kind: "intentional_fork" | "non_tip_advance" | "idempotent_replay" | "checkpoint_created";
|
|
48
51
|
eventId: string;
|
|
49
52
|
};
|
|
53
|
+
}, {
|
|
50
54
|
edgeKind: "acked_step" | "checkpoint";
|
|
51
55
|
fromNodeId: string;
|
|
52
56
|
toNodeId: string;
|
|
53
|
-
}, {
|
|
54
57
|
cause: {
|
|
55
58
|
kind: "intentional_fork" | "non_tip_advance" | "idempotent_replay" | "checkpoint_created";
|
|
56
59
|
eventId: string;
|
|
57
60
|
};
|
|
61
|
+
}>, {
|
|
58
62
|
edgeKind: "acked_step" | "checkpoint";
|
|
59
63
|
fromNodeId: string;
|
|
60
64
|
toNodeId: string;
|
|
61
|
-
}>, {
|
|
62
65
|
cause: {
|
|
63
66
|
kind: "intentional_fork" | "non_tip_advance" | "idempotent_replay" | "checkpoint_created";
|
|
64
67
|
eventId: string;
|
|
65
68
|
};
|
|
69
|
+
}, {
|
|
66
70
|
edgeKind: "acked_step" | "checkpoint";
|
|
67
71
|
fromNodeId: string;
|
|
68
72
|
toNodeId: string;
|
|
69
|
-
}, {
|
|
70
73
|
cause: {
|
|
71
74
|
kind: "intentional_fork" | "non_tip_advance" | "idempotent_replay" | "checkpoint_created";
|
|
72
75
|
eventId: string;
|
|
73
76
|
};
|
|
74
|
-
edgeKind: "acked_step" | "checkpoint";
|
|
75
|
-
fromNodeId: string;
|
|
76
|
-
toNodeId: string;
|
|
77
77
|
}>;
|