@ouro.bot/cli 0.1.0-alpha.781 → 0.1.0-alpha.783
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/changelog.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.783",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Allow Telegram approval settlement receipts without acceptance-only recovery metadata, so manual approvals can resume from a suspended turn."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"version": "0.1.0-alpha.782",
|
|
12
|
+
"changes": [
|
|
13
|
+
"Clarify external-event timed-wake tool guidance and verify single-disposition schema validation."
|
|
14
|
+
]
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.1.0-alpha.781",
|
|
6
18
|
"changes": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0"?>
|
|
2
2
|
<Container version="2">
|
|
3
3
|
<Name>Mendelow Cloud Butler</Name>
|
|
4
|
-
<Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.
|
|
4
|
+
<Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.783</Repository>
|
|
5
5
|
<Registry>https://github.com/ourostack/ouroboros/pkgs/container/ouroboros-butler</Registry>
|
|
6
6
|
<Network>host</Network>
|
|
7
7
|
<Shell>sh</Shell>
|
|
@@ -55,9 +55,9 @@ const externalEventDispositionProperties = {
|
|
|
55
55
|
stewardPolicyVersion: { type: "number", description: "Exact current policy version used for this decision" },
|
|
56
56
|
decision: { type: "string", enum: ["silent", "act", "ask", "report"] },
|
|
57
57
|
reason: { type: "string", description: "Short plain-language reason for the decision" },
|
|
58
|
-
nextWake: { type: "string", enum: ["on_change", "on_escalation", "on_recovery", "at"] },
|
|
59
|
-
wakeAt: { type: "string", description: "ISO time required when nextWake=at" },
|
|
60
|
-
awaitId: { type: "string", description: "Existing
|
|
58
|
+
nextWake: { type: "string", enum: ["on_change", "on_escalation", "on_recovery", "at"], description: "Use on_change unless you already called await_condition for this exact event and are supplying its awaitId" },
|
|
59
|
+
wakeAt: { type: "string", description: "ISO time required only when nextWake=at" },
|
|
60
|
+
awaitId: { type: "string", description: "Existing await_condition receipt required when nextWake=at; never invent one" },
|
|
61
61
|
careId: { type: "string", description: "Existing Care adopted for this incident, if any" },
|
|
62
62
|
actionRefs: { type: "array", items: { type: "string" } },
|
|
63
63
|
verificationRefs: { type: "array", items: { type: "string" } },
|
|
@@ -929,7 +929,7 @@ function createTelegramApprovalTransport(options) {
|
|
|
929
929
|
accepted: receipt.accepted,
|
|
930
930
|
reason: receipt.reason,
|
|
931
931
|
acknowledgementState: receipt.acknowledgementState,
|
|
932
|
-
recoveredAt: receipt.recoveredAt,
|
|
932
|
+
recoveredAt: receipt.recoveredAt ?? null,
|
|
933
933
|
decisionAttemptDigest: receipt.decisionAttemptDigest,
|
|
934
934
|
});
|
|
935
935
|
const terminalOutcomeFields = (pending) => ({
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ouro.bot/cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.783",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@ouro.bot/cli",
|
|
9
|
-
"version": "0.1.0-alpha.
|
|
9
|
+
"version": "0.1.0-alpha.783",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sdk": "^0.78.0",
|
|
12
12
|
"@azure/identity": "^4.13.0",
|