@cleocode/contracts 2026.4.95 → 2026.4.97

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.
Files changed (58) hide show
  1. package/dist/facade.d.ts +63 -1
  2. package/dist/facade.d.ts.map +1 -1
  3. package/dist/index.d.ts +2 -2
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/operations/brain.d.ts +579 -0
  7. package/dist/operations/brain.d.ts.map +1 -0
  8. package/dist/operations/brain.js +39 -0
  9. package/dist/operations/brain.js.map +1 -0
  10. package/dist/operations/conduit.d.ts +151 -0
  11. package/dist/operations/conduit.d.ts.map +1 -0
  12. package/dist/operations/conduit.js +29 -0
  13. package/dist/operations/conduit.js.map +1 -0
  14. package/dist/operations/index.d.ts +4 -0
  15. package/dist/operations/index.d.ts.map +1 -1
  16. package/dist/operations/index.js +4 -0
  17. package/dist/operations/index.js.map +1 -1
  18. package/dist/operations/lifecycle.d.ts +29 -1
  19. package/dist/operations/lifecycle.d.ts.map +1 -1
  20. package/dist/operations/memory.d.ts +814 -0
  21. package/dist/operations/memory.d.ts.map +1 -0
  22. package/dist/operations/memory.js +26 -0
  23. package/dist/operations/memory.js.map +1 -0
  24. package/dist/operations/nexus.d.ts +577 -0
  25. package/dist/operations/nexus.d.ts.map +1 -0
  26. package/dist/operations/nexus.js +22 -0
  27. package/dist/operations/nexus.js.map +1 -0
  28. package/dist/operations/orchestrate.d.ts +451 -38
  29. package/dist/operations/orchestrate.d.ts.map +1 -1
  30. package/dist/operations/orchestrate.js +6 -0
  31. package/dist/operations/orchestrate.js.map +1 -1
  32. package/dist/operations/release.d.ts +78 -8
  33. package/dist/operations/release.d.ts.map +1 -1
  34. package/dist/operations/session.d.ts +26 -3
  35. package/dist/operations/session.d.ts.map +1 -1
  36. package/dist/operations/tasks.d.ts +140 -2
  37. package/dist/operations/tasks.d.ts.map +1 -1
  38. package/dist/status-registry.d.ts +1 -1
  39. package/dist/status-registry.d.ts.map +1 -1
  40. package/dist/status-registry.js +3 -0
  41. package/dist/status-registry.js.map +1 -1
  42. package/dist/task.d.ts +66 -0
  43. package/dist/task.d.ts.map +1 -1
  44. package/package.json +1 -1
  45. package/src/facade.ts +64 -1
  46. package/src/index.ts +5 -0
  47. package/src/operations/brain.ts +635 -0
  48. package/src/operations/conduit.ts +189 -0
  49. package/src/operations/index.ts +4 -0
  50. package/src/operations/lifecycle.ts +29 -1
  51. package/src/operations/memory.ts +959 -0
  52. package/src/operations/nexus.ts +711 -0
  53. package/src/operations/orchestrate.ts +447 -38
  54. package/src/operations/release.ts +77 -7
  55. package/src/operations/session.ts +26 -3
  56. package/src/operations/tasks.ts +141 -3
  57. package/src/status-registry.ts +3 -0
  58. package/src/task.ts +75 -0
@@ -0,0 +1,151 @@
1
+ /**
2
+ * Conduit Domain Operations (5 operations)
3
+ *
4
+ * Query operations: 2
5
+ * Mutate operations: 3
6
+ *
7
+ * CONDUIT is the agent-to-agent messaging subsystem. The protocol wraps a
8
+ * pluggable Transport (HTTP to cloud SignalDock, LocalTransport over
9
+ * `conduit.db`, future SSE). These wire-format contracts describe the CLI +
10
+ * HTTP dispatch surface for `cleo agent` and equivalent programmatic calls.
11
+ *
12
+ * SYNC: Canonical runtime implementation at
13
+ * packages/cleo/src/dispatch/domains/conduit.ts (ConduitHandler)
14
+ * and the lower-level interfaces at
15
+ * packages/contracts/src/conduit.ts (Conduit, ConduitMessage, ...).
16
+ *
17
+ * Registry note (T964 — supersedes ADR-042 Decision 1): the dispatcher
18
+ * registers these operations under `domain: 'conduit'` with short operation
19
+ * names (`status`, `peek`, `start`, `stop`, `send`). The public/HTTP identifier
20
+ * `conduit.<op>` remains the stable wire-format surface and what these
21
+ * contracts describe; CLI and HTTP adapters map between the two forms.
22
+ *
23
+ * @task T910 — Orchestration Coherence v4 (contract surface completion)
24
+ * @task T964 — CONDUIT promotion to canonical domain #15
25
+ * @see packages/cleo/src/dispatch/domains/conduit.ts
26
+ * @see packages/contracts/src/conduit.ts
27
+ */
28
+ /** Transport implementation backing a conduit call. */
29
+ export type ConduitTransportKind = 'local' | 'http' | 'sse' | 'ws';
30
+ /**
31
+ * Compact inbox message projection returned by `conduit.peek`.
32
+ *
33
+ * @remarks
34
+ * This is the LAFS-friendly wire format — a reduction of the richer
35
+ * `ConduitMessage` interface at `../conduit.ts` that drops internal fields
36
+ * (tags, metadata, threadId) unless the receiving client needs them. Clients
37
+ * that want the full envelope should use the transport directly.
38
+ */
39
+ export interface ConduitInboxMessage {
40
+ /** Unique message id. */
41
+ id: string;
42
+ /** Sender agent id. */
43
+ from: string;
44
+ /** Message content (text). */
45
+ content: string;
46
+ /** Conversation / thread id when the message belongs to one. */
47
+ conversationId?: string;
48
+ /** ISO 8601 timestamp of delivery. */
49
+ timestamp?: string;
50
+ }
51
+ /** Parameters for `conduit.status`. */
52
+ export interface ConduitStatusParams {
53
+ /** Agent id to check. Omit to use the registry's active agent. */
54
+ agentId?: string;
55
+ }
56
+ /** Result of `conduit.status`. */
57
+ export interface ConduitStatusResult {
58
+ /** The agent id checked. */
59
+ agentId: string;
60
+ /** Whether the transport reports a healthy connection. */
61
+ connected: boolean;
62
+ /** Transport backing this call. */
63
+ transport: ConduitTransportKind;
64
+ /** True if a long-running polling loop is active for this agent. */
65
+ pollerRunning: boolean;
66
+ /** Total unread messages in the agent's inbox. */
67
+ unreadTotal?: number;
68
+ /** Count of action-required messages (subset of unread). */
69
+ actionItems?: number;
70
+ /** Error summary when `connected=false`. */
71
+ error?: string;
72
+ }
73
+ /** Parameters for `conduit.peek`. */
74
+ export interface ConduitPeekParams {
75
+ /** Agent id to poll as. Omit to use the active agent. */
76
+ agentId?: string;
77
+ /** Max messages to fetch (default 20). */
78
+ limit?: number;
79
+ }
80
+ /** Result of `conduit.peek`. */
81
+ export interface ConduitPeekResult {
82
+ /** The agent id polled. */
83
+ agentId: string;
84
+ /** Messages retrieved. Empty array when the inbox is empty. */
85
+ messages: ConduitInboxMessage[];
86
+ }
87
+ /** Parameters for `conduit.start`. */
88
+ export interface ConduitStartParams {
89
+ /** Agent id to poll as. Omit to use the active agent. */
90
+ agentId?: string;
91
+ /** Poll interval in milliseconds (default 5000). */
92
+ pollIntervalMs?: number;
93
+ /** Group conversation ids to monitor for @-mentions. */
94
+ groupConversationIds?: string[];
95
+ }
96
+ /** Result of `conduit.start`. */
97
+ export interface ConduitStartResult {
98
+ /** Agent id polling was started for. */
99
+ agentId: string;
100
+ /** Effective poll interval (after defaulting). */
101
+ pollIntervalMs: number;
102
+ /** Group conversation ids being watched. */
103
+ groupConversationIds: string[];
104
+ /** Transport backing the poller. */
105
+ transport: ConduitTransportKind;
106
+ /** Human-readable status line. */
107
+ message: string;
108
+ /** True when `start` was a no-op because a poller was already running. */
109
+ alreadyRunning?: boolean;
110
+ }
111
+ /** Parameters for `conduit.stop` — none. */
112
+ export type ConduitStopParams = Record<string, never>;
113
+ /** Result of `conduit.stop`. */
114
+ export interface ConduitStopResult {
115
+ /** Agent id whose poller was stopped (null if no poller was active). */
116
+ agentId: string | null;
117
+ /** Human-readable status line. */
118
+ message: string;
119
+ }
120
+ /**
121
+ * Parameters for `conduit.send`.
122
+ *
123
+ * @remarks
124
+ * Caller MUST provide exactly one of `to` (direct message) or
125
+ * `conversationId` (group/thread message). Supplying neither yields
126
+ * `E_ARGS`; supplying both is a client-side mistake.
127
+ */
128
+ export interface ConduitSendParams {
129
+ /** Message content (required). */
130
+ content: string;
131
+ /** Target agent id for a direct message. */
132
+ to?: string;
133
+ /** Target conversation id for a group / thread message. */
134
+ conversationId?: string;
135
+ /** Send as this agent. Omit to use the active agent from the registry. */
136
+ agentId?: string;
137
+ }
138
+ /** Result of `conduit.send`. */
139
+ export interface ConduitSendResult {
140
+ /** The assigned message id. */
141
+ messageId: string;
142
+ /** Sender agent id. */
143
+ from: string;
144
+ /** Target of the send — agent id or conversation id. */
145
+ to: string;
146
+ /** Transport that was used. */
147
+ transport: ConduitTransportKind;
148
+ /** ISO 8601 send timestamp. */
149
+ sentAt: string;
150
+ }
151
+ //# sourceMappingURL=conduit.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conduit.d.ts","sourceRoot":"","sources":["../../src/operations/conduit.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Conduit Domain Operations (5 operations)
3
+ *
4
+ * Query operations: 2
5
+ * Mutate operations: 3
6
+ *
7
+ * CONDUIT is the agent-to-agent messaging subsystem. The protocol wraps a
8
+ * pluggable Transport (HTTP to cloud SignalDock, LocalTransport over
9
+ * `conduit.db`, future SSE). These wire-format contracts describe the CLI +
10
+ * HTTP dispatch surface for `cleo agent` and equivalent programmatic calls.
11
+ *
12
+ * SYNC: Canonical runtime implementation at
13
+ * packages/cleo/src/dispatch/domains/conduit.ts (ConduitHandler)
14
+ * and the lower-level interfaces at
15
+ * packages/contracts/src/conduit.ts (Conduit, ConduitMessage, ...).
16
+ *
17
+ * Registry note (T964 — supersedes ADR-042 Decision 1): the dispatcher
18
+ * registers these operations under `domain: 'conduit'` with short operation
19
+ * names (`status`, `peek`, `start`, `stop`, `send`). The public/HTTP identifier
20
+ * `conduit.<op>` remains the stable wire-format surface and what these
21
+ * contracts describe; CLI and HTTP adapters map between the two forms.
22
+ *
23
+ * @task T910 — Orchestration Coherence v4 (contract surface completion)
24
+ * @task T964 — CONDUIT promotion to canonical domain #15
25
+ * @see packages/cleo/src/dispatch/domains/conduit.ts
26
+ * @see packages/contracts/src/conduit.ts
27
+ */
28
+ export {};
29
+ //# sourceMappingURL=conduit.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conduit.js","sourceRoot":"","sources":["../../src/operations/conduit.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG"}
@@ -4,8 +4,12 @@
4
4
  * These are re-exported under `ops` namespace from the package root
5
5
  * to avoid name collisions with canonical domain types.
6
6
  */
7
+ export * from './brain.js';
8
+ export * from './conduit.js';
7
9
  export * from './issues.js';
8
10
  export * from './lifecycle.js';
11
+ export * from './memory.js';
12
+ export * from './nexus.js';
9
13
  export * from './orchestrate.js';
10
14
  export * from './params.js';
11
15
  export * from './release.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
@@ -4,8 +4,12 @@
4
4
  * These are re-exported under `ops` namespace from the package root
5
5
  * to avoid name collisions with canonical domain types.
6
6
  */
7
+ export * from './brain.js';
8
+ export * from './conduit.js';
7
9
  export * from './issues.js';
8
10
  export * from './lifecycle.js';
11
+ export * from './memory.js';
12
+ export * from './nexus.js';
9
13
  export * from './orchestrate.js';
10
14
  export * from './params.js';
11
15
  export * from './release.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
@@ -30,15 +30,43 @@ export interface Gate {
30
30
  /**
31
31
  * Query Operations
32
32
  */
33
+ /**
34
+ * Parameters for `lifecycle.check`.
35
+ *
36
+ * @remarks
37
+ * Re-synced to match `lifecycleCheck(epicId, targetStage)` in
38
+ * `packages/cleo/src/dispatch/engines/lifecycle-engine.ts`. The legacy
39
+ * contract used `taskId`; the engine operates on the epic/pipeline
40
+ * container. Both forms accept a task ID string — the parameter is named
41
+ * after its semantic role (the epic whose pipeline stage is being checked).
42
+ *
43
+ * @task T963 — contract↔impl drift reconciliation (T910 audit)
44
+ */
33
45
  export interface LifecycleCheckParams {
34
- taskId: string;
46
+ /**
47
+ * Epic (or task with a pipeline) whose stage prerequisites should be
48
+ * checked. Matches `epicId` in the engine signature.
49
+ * @task T963
50
+ */
51
+ epicId: string;
52
+ /** Target lifecycle stage to validate prerequisites for. @task T963 */
35
53
  targetStage: LifecycleStage;
36
54
  }
37
55
  export interface LifecycleCheckResult {
56
+ /**
57
+ * The epic ID that was checked (mirrors `epicId` param). Named
58
+ * `taskId` historically for wire compatibility; new callers should use
59
+ * the param name `epicId`.
60
+ * @task T963
61
+ */
38
62
  taskId: string;
63
+ /** The target stage that was checked. @task T963 */
39
64
  targetStage: LifecycleStage;
65
+ /** True when prerequisites are satisfied and the stage can be entered. @task T963 */
40
66
  canProceed: boolean;
67
+ /** Ordered list of stages that must complete first. @task T963 */
41
68
  missingPrerequisites: LifecycleStage[];
69
+ /** Current gate status for the target stage. @task T963 */
42
70
  gateStatus: 'passed' | 'failed' | 'pending';
43
71
  }
44
72
  export interface LifecycleStatusParams {
@@ -1 +1 @@
1
- {"version":3,"file":"lifecycle.d.ts","sourceRoot":"","sources":["../../src/operations/lifecycle.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"lifecycle.d.ts","sourceRoot":"","sources":["../../src/operations/lifecycle.ts"],"names":[],"mappings":"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"}