@cleocode/cleo 2026.4.23 → 2026.4.24
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/README.md +79 -313
- package/dist/cli/index.js +35 -15
- package/dist/cli/index.js.map +3 -3
- package/package.json +7 -7
package/dist/cli/index.js
CHANGED
|
@@ -104181,11 +104181,11 @@ var init_registry5 = __esm({
|
|
|
104181
104181
|
// orchestrate — Wave 7a: analyze parallel-safety mode (T410)
|
|
104182
104182
|
// Note: orchestrate.analyze already registered above; this documents the new
|
|
104183
104183
|
// mode="parallel-safety" variant via the existing analyze operation's params.
|
|
104184
|
-
// conduit — agent messaging operations (
|
|
104184
|
+
// conduit — agent messaging operations (ADR-042: moved under orchestrate domain)
|
|
104185
104185
|
{
|
|
104186
104186
|
gateway: "query",
|
|
104187
|
-
domain: "
|
|
104188
|
-
operation: "status",
|
|
104187
|
+
domain: "orchestrate",
|
|
104188
|
+
operation: "conduit.status",
|
|
104189
104189
|
description: "conduit.status (query) \u2014 check agent connection status and unread count",
|
|
104190
104190
|
tier: 2,
|
|
104191
104191
|
idempotent: true,
|
|
@@ -104202,8 +104202,8 @@ var init_registry5 = __esm({
|
|
|
104202
104202
|
},
|
|
104203
104203
|
{
|
|
104204
104204
|
gateway: "query",
|
|
104205
|
-
domain: "
|
|
104206
|
-
operation: "peek",
|
|
104205
|
+
domain: "orchestrate",
|
|
104206
|
+
operation: "conduit.peek",
|
|
104207
104207
|
description: "conduit.peek (query) \u2014 one-shot poll for new messages without acking",
|
|
104208
104208
|
tier: 2,
|
|
104209
104209
|
idempotent: true,
|
|
@@ -104226,8 +104226,8 @@ var init_registry5 = __esm({
|
|
|
104226
104226
|
},
|
|
104227
104227
|
{
|
|
104228
104228
|
gateway: "mutate",
|
|
104229
|
-
domain: "
|
|
104230
|
-
operation: "start",
|
|
104229
|
+
domain: "orchestrate",
|
|
104230
|
+
operation: "conduit.start",
|
|
104231
104231
|
description: "conduit.start (mutate) \u2014 start continuous message polling for the active agent",
|
|
104232
104232
|
tier: 2,
|
|
104233
104233
|
idempotent: true,
|
|
@@ -104256,8 +104256,8 @@ var init_registry5 = __esm({
|
|
|
104256
104256
|
},
|
|
104257
104257
|
{
|
|
104258
104258
|
gateway: "mutate",
|
|
104259
|
-
domain: "
|
|
104260
|
-
operation: "stop",
|
|
104259
|
+
domain: "orchestrate",
|
|
104260
|
+
operation: "conduit.stop",
|
|
104261
104261
|
description: "conduit.stop (mutate) \u2014 stop the active polling loop",
|
|
104262
104262
|
tier: 2,
|
|
104263
104263
|
idempotent: true,
|
|
@@ -104266,8 +104266,8 @@ var init_registry5 = __esm({
|
|
|
104266
104266
|
},
|
|
104267
104267
|
{
|
|
104268
104268
|
gateway: "mutate",
|
|
104269
|
-
domain: "
|
|
104270
|
-
operation: "send",
|
|
104269
|
+
domain: "orchestrate",
|
|
104270
|
+
operation: "conduit.send",
|
|
104271
104271
|
description: "conduit.send (mutate) \u2014 send a message to an agent or conversation",
|
|
104272
104272
|
tier: 2,
|
|
104273
104273
|
idempotent: false,
|
|
@@ -111679,7 +111679,7 @@ async function orchestrateAnalyzeParallelSafety(taskIds, projectRoot) {
|
|
|
111679
111679
|
};
|
|
111680
111680
|
}
|
|
111681
111681
|
}
|
|
111682
|
-
var OrchestrateHandler, FANOUT_MANIFEST_MAX_SIZE, fanoutManifestStore;
|
|
111682
|
+
var conduitHandler, OrchestrateHandler, FANOUT_MANIFEST_MAX_SIZE, fanoutManifestStore;
|
|
111683
111683
|
var init_orchestrate2 = __esm({
|
|
111684
111684
|
"packages/cleo/src/dispatch/domains/orchestrate.ts"() {
|
|
111685
111685
|
"use strict";
|
|
@@ -111688,6 +111688,8 @@ var init_orchestrate2 = __esm({
|
|
|
111688
111688
|
init_base();
|
|
111689
111689
|
init_meta2();
|
|
111690
111690
|
init_routing2();
|
|
111691
|
+
init_conduit2();
|
|
111692
|
+
conduitHandler = new ConduitHandler();
|
|
111691
111693
|
OrchestrateHandler = class {
|
|
111692
111694
|
// -----------------------------------------------------------------------
|
|
111693
111695
|
// DomainHandler interface
|
|
@@ -111866,6 +111868,11 @@ var init_orchestrate2 = __esm({
|
|
|
111866
111868
|
page: page.page
|
|
111867
111869
|
};
|
|
111868
111870
|
}
|
|
111871
|
+
// ADR-042: conduit sub-operations routed through orchestrate domain
|
|
111872
|
+
case "conduit.status":
|
|
111873
|
+
return conduitHandler.query("status", params);
|
|
111874
|
+
case "conduit.peek":
|
|
111875
|
+
return conduitHandler.query("peek", params);
|
|
111869
111876
|
default:
|
|
111870
111877
|
return errorResult(
|
|
111871
111878
|
"query",
|
|
@@ -112115,6 +112122,13 @@ var init_orchestrate2 = __esm({
|
|
|
112115
112122
|
data: instance
|
|
112116
112123
|
};
|
|
112117
112124
|
}
|
|
112125
|
+
// ADR-042: conduit sub-operations routed through orchestrate domain
|
|
112126
|
+
case "conduit.start":
|
|
112127
|
+
return conduitHandler.mutate("start", params);
|
|
112128
|
+
case "conduit.stop":
|
|
112129
|
+
return conduitHandler.mutate("stop", params);
|
|
112130
|
+
case "conduit.send":
|
|
112131
|
+
return conduitHandler.mutate("send", params);
|
|
112118
112132
|
default:
|
|
112119
112133
|
return errorResult(
|
|
112120
112134
|
"mutate",
|
|
@@ -112147,7 +112161,10 @@ var init_orchestrate2 = __esm({
|
|
|
112147
112161
|
"tessera.list",
|
|
112148
112162
|
// Wave 7a (T379)
|
|
112149
112163
|
"classify",
|
|
112150
|
-
"fanout.status"
|
|
112164
|
+
"fanout.status",
|
|
112165
|
+
// ADR-042: conduit sub-operations
|
|
112166
|
+
"conduit.status",
|
|
112167
|
+
"conduit.peek"
|
|
112151
112168
|
],
|
|
112152
112169
|
mutate: [
|
|
112153
112170
|
"start",
|
|
@@ -112158,7 +112175,11 @@ var init_orchestrate2 = __esm({
|
|
|
112158
112175
|
"parallel",
|
|
112159
112176
|
"tessera.instantiate",
|
|
112160
112177
|
// Wave 7a (T379)
|
|
112161
|
-
"fanout"
|
|
112178
|
+
"fanout",
|
|
112179
|
+
// ADR-042: conduit sub-operations
|
|
112180
|
+
"conduit.start",
|
|
112181
|
+
"conduit.stop",
|
|
112182
|
+
"conduit.send"
|
|
112162
112183
|
]
|
|
112163
112184
|
};
|
|
112164
112185
|
}
|
|
@@ -115255,7 +115276,6 @@ function createDomainHandlers() {
|
|
|
115255
115276
|
handlers.set("admin", new AdminHandler());
|
|
115256
115277
|
handlers.set("nexus", new NexusHandler());
|
|
115257
115278
|
handlers.set("sticky", new StickyHandler());
|
|
115258
|
-
handlers.set("conduit", new ConduitHandler());
|
|
115259
115279
|
return handlers;
|
|
115260
115280
|
}
|
|
115261
115281
|
var init_domains = __esm({
|