@cleocode/cleo 2026.4.146 → 2026.4.148
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/index.js +90 -0
- package/dist/cli/index.js.map +2 -2
- package/package.json +9 -9
package/dist/cli/index.js
CHANGED
|
@@ -7906,6 +7906,96 @@ var init_registry = __esm({
|
|
|
7906
7906
|
}
|
|
7907
7907
|
]
|
|
7908
7908
|
},
|
|
7909
|
+
{
|
|
7910
|
+
gateway: "mutate",
|
|
7911
|
+
domain: "conduit",
|
|
7912
|
+
operation: "publish",
|
|
7913
|
+
description: "conduit.publish (mutate) \u2014 publish message to a topic (A2A, T1252)",
|
|
7914
|
+
tier: 2,
|
|
7915
|
+
idempotent: false,
|
|
7916
|
+
sessionRequired: false,
|
|
7917
|
+
requiredParams: ["topicName", "payload"],
|
|
7918
|
+
params: [
|
|
7919
|
+
{
|
|
7920
|
+
name: "topicName",
|
|
7921
|
+
type: "string",
|
|
7922
|
+
required: true,
|
|
7923
|
+
description: "Topic to publish to"
|
|
7924
|
+
},
|
|
7925
|
+
{
|
|
7926
|
+
name: "payload",
|
|
7927
|
+
type: "string",
|
|
7928
|
+
required: true,
|
|
7929
|
+
description: "Message payload (JSON-stringified object)"
|
|
7930
|
+
},
|
|
7931
|
+
{
|
|
7932
|
+
name: "agentId",
|
|
7933
|
+
type: "string",
|
|
7934
|
+
required: false,
|
|
7935
|
+
description: "Publish as this agent (defaults to active agent)"
|
|
7936
|
+
}
|
|
7937
|
+
]
|
|
7938
|
+
},
|
|
7939
|
+
{
|
|
7940
|
+
gateway: "mutate",
|
|
7941
|
+
domain: "conduit",
|
|
7942
|
+
operation: "subscribe",
|
|
7943
|
+
description: "conduit.subscribe (mutate) \u2014 subscribe agent to a topic (A2A, T1252)",
|
|
7944
|
+
tier: 2,
|
|
7945
|
+
idempotent: true,
|
|
7946
|
+
sessionRequired: false,
|
|
7947
|
+
requiredParams: ["topicName"],
|
|
7948
|
+
params: [
|
|
7949
|
+
{
|
|
7950
|
+
name: "topicName",
|
|
7951
|
+
type: "string",
|
|
7952
|
+
required: true,
|
|
7953
|
+
description: "Topic to subscribe to"
|
|
7954
|
+
},
|
|
7955
|
+
{
|
|
7956
|
+
name: "agentId",
|
|
7957
|
+
type: "string",
|
|
7958
|
+
required: false,
|
|
7959
|
+
description: "Agent to subscribe (defaults to active agent)"
|
|
7960
|
+
},
|
|
7961
|
+
{
|
|
7962
|
+
name: "filter",
|
|
7963
|
+
type: "string",
|
|
7964
|
+
required: false,
|
|
7965
|
+
description: "Optional filter expression (JSON-stringified) for subscription"
|
|
7966
|
+
}
|
|
7967
|
+
]
|
|
7968
|
+
},
|
|
7969
|
+
{
|
|
7970
|
+
gateway: "query",
|
|
7971
|
+
domain: "conduit",
|
|
7972
|
+
operation: "listen",
|
|
7973
|
+
description: "conduit.listen (query) \u2014 one-shot poll for topic messages (A2A, T1252)",
|
|
7974
|
+
tier: 2,
|
|
7975
|
+
idempotent: true,
|
|
7976
|
+
sessionRequired: false,
|
|
7977
|
+
requiredParams: ["topicName"],
|
|
7978
|
+
params: [
|
|
7979
|
+
{
|
|
7980
|
+
name: "topicName",
|
|
7981
|
+
type: "string",
|
|
7982
|
+
required: true,
|
|
7983
|
+
description: "Topic to poll"
|
|
7984
|
+
},
|
|
7985
|
+
{
|
|
7986
|
+
name: "agentId",
|
|
7987
|
+
type: "string",
|
|
7988
|
+
required: false,
|
|
7989
|
+
description: "Agent to poll as (defaults to active agent)"
|
|
7990
|
+
},
|
|
7991
|
+
{
|
|
7992
|
+
name: "max",
|
|
7993
|
+
type: "number",
|
|
7994
|
+
required: false,
|
|
7995
|
+
description: "Max messages to return (default: 20)"
|
|
7996
|
+
}
|
|
7997
|
+
]
|
|
7998
|
+
},
|
|
7909
7999
|
// ===========================================================================
|
|
7910
8000
|
// intelligence — Predictive Quality Intelligence (query-only)
|
|
7911
8001
|
// ===========================================================================
|