@ouro.bot/cli 0.1.0-alpha.9 → 0.1.0-alpha.90
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/AdoptionSpecialist.ouro/agent.json +70 -9
- package/AdoptionSpecialist.ouro/psyche/SOUL.md +5 -2
- package/AdoptionSpecialist.ouro/psyche/identities/monty.md +2 -2
- package/README.md +147 -205
- package/assets/ouroboros.png +0 -0
- package/changelog.json +529 -0
- package/dist/heart/active-work.js +251 -0
- package/dist/heart/bridges/manager.js +358 -0
- package/dist/heart/bridges/state-machine.js +135 -0
- package/dist/heart/bridges/store.js +123 -0
- package/dist/heart/commitments.js +109 -0
- package/dist/heart/config.js +68 -23
- package/dist/heart/core.js +452 -93
- package/dist/heart/cross-chat-delivery.js +146 -0
- package/dist/heart/daemon/agent-discovery.js +81 -0
- package/dist/heart/daemon/auth-flow.js +430 -0
- package/dist/heart/daemon/daemon-cli.js +1737 -269
- package/dist/heart/daemon/daemon-entry.js +55 -6
- package/dist/heart/daemon/daemon-runtime-sync.js +212 -0
- package/dist/heart/daemon/daemon.js +216 -10
- package/dist/heart/daemon/hatch-animation.js +10 -3
- package/dist/heart/daemon/hatch-flow.js +7 -82
- package/dist/heart/daemon/hooks/bundle-meta.js +92 -0
- package/dist/heart/daemon/launchd.js +159 -0
- package/dist/heart/daemon/log-tailer.js +4 -3
- package/dist/heart/daemon/message-router.js +17 -8
- package/dist/heart/daemon/ouro-bot-entry.js +0 -0
- package/dist/heart/daemon/ouro-bot-global-installer.js +128 -0
- package/dist/heart/daemon/ouro-entry.js +0 -0
- package/dist/heart/daemon/ouro-path-installer.js +260 -0
- package/dist/heart/daemon/ouro-uti.js +11 -2
- package/dist/heart/daemon/ouro-version-manager.js +171 -0
- package/dist/heart/daemon/process-manager.js +14 -1
- package/dist/heart/daemon/run-hooks.js +37 -0
- package/dist/heart/daemon/runtime-logging.js +58 -15
- package/dist/heart/daemon/runtime-metadata.js +219 -0
- package/dist/heart/daemon/runtime-mode.js +67 -0
- package/dist/heart/daemon/sense-manager.js +307 -0
- package/dist/heart/daemon/skill-management-installer.js +94 -0
- package/dist/heart/daemon/socket-client.js +202 -0
- package/dist/heart/daemon/specialist-orchestrator.js +53 -84
- package/dist/heart/daemon/specialist-prompt.js +63 -11
- package/dist/heart/daemon/specialist-tools.js +211 -60
- package/dist/heart/daemon/staged-restart.js +114 -0
- package/dist/heart/daemon/thoughts.js +507 -0
- package/dist/heart/daemon/update-checker.js +111 -0
- package/dist/heart/daemon/update-hooks.js +138 -0
- package/dist/heart/daemon/wrapper-publish-guard.js +86 -0
- package/dist/heart/delegation.js +62 -0
- package/dist/heart/identity.js +126 -21
- package/dist/heart/kicks.js +1 -19
- package/dist/heart/model-capabilities.js +48 -0
- package/dist/heart/obligations.js +191 -0
- package/dist/heart/progress-story.js +42 -0
- package/dist/heart/providers/anthropic.js +74 -9
- package/dist/heart/providers/azure.js +86 -7
- package/dist/heart/providers/github-copilot.js +149 -0
- package/dist/heart/providers/minimax.js +4 -0
- package/dist/heart/providers/openai-codex.js +12 -3
- package/dist/heart/safe-workspace.js +362 -0
- package/dist/heart/sense-truth.js +61 -0
- package/dist/heart/session-activity.js +169 -0
- package/dist/heart/session-recall.js +116 -0
- package/dist/heart/streaming.js +100 -22
- package/dist/heart/target-resolution.js +123 -0
- package/dist/heart/turn-coordinator.js +28 -0
- package/dist/mind/associative-recall.js +14 -2
- package/dist/mind/bundle-manifest.js +70 -0
- package/dist/mind/context.js +57 -11
- package/dist/mind/first-impressions.js +16 -2
- package/dist/mind/friends/channel.js +35 -0
- package/dist/mind/friends/group-context.js +144 -0
- package/dist/mind/friends/store-file.js +19 -0
- package/dist/mind/friends/trust-explanation.js +74 -0
- package/dist/mind/friends/types.js +8 -0
- package/dist/mind/memory.js +27 -26
- package/dist/mind/obligation-steering.js +31 -0
- package/dist/mind/pending.js +76 -9
- package/dist/mind/phrases.js +1 -0
- package/dist/mind/prompt.js +467 -77
- package/dist/mind/token-estimate.js +8 -12
- package/dist/nerves/cli-logging.js +15 -2
- package/dist/nerves/coverage/run-artifacts.js +1 -1
- package/dist/nerves/index.js +12 -0
- package/dist/repertoire/ado-client.js +4 -2
- package/dist/repertoire/coding/feedback.js +180 -0
- package/dist/repertoire/coding/index.js +4 -1
- package/dist/repertoire/coding/manager.js +69 -4
- package/dist/repertoire/coding/spawner.js +21 -3
- package/dist/repertoire/coding/tools.js +105 -2
- package/dist/repertoire/data/ado-endpoints.json +188 -0
- package/dist/repertoire/guardrails.js +290 -0
- package/dist/repertoire/mcp-client.js +254 -0
- package/dist/repertoire/mcp-manager.js +195 -0
- package/dist/repertoire/skills.js +3 -26
- package/dist/repertoire/tasks/board.js +12 -0
- package/dist/repertoire/tasks/index.js +23 -9
- package/dist/repertoire/tasks/transitions.js +1 -2
- package/dist/repertoire/tools-base.js +714 -249
- package/dist/repertoire/tools-bluebubbles.js +93 -0
- package/dist/repertoire/tools-teams.js +58 -25
- package/dist/repertoire/tools.js +106 -53
- package/dist/senses/bluebubbles-client.js +210 -5
- package/dist/senses/bluebubbles-entry.js +2 -0
- package/dist/senses/bluebubbles-inbound-log.js +109 -0
- package/dist/senses/bluebubbles-media.js +339 -0
- package/dist/senses/bluebubbles-model.js +12 -4
- package/dist/senses/bluebubbles-mutation-log.js +45 -5
- package/dist/senses/bluebubbles-runtime-state.js +109 -0
- package/dist/senses/bluebubbles-session-cleanup.js +72 -0
- package/dist/senses/bluebubbles.js +894 -45
- package/dist/senses/cli-layout.js +187 -0
- package/dist/senses/cli.js +400 -164
- package/dist/senses/continuity.js +94 -0
- package/dist/senses/debug-activity.js +154 -0
- package/dist/senses/inner-dialog-worker.js +47 -18
- package/dist/senses/inner-dialog.js +377 -83
- package/dist/senses/pipeline.js +307 -0
- package/dist/senses/teams.js +573 -129
- package/dist/senses/trust-gate.js +112 -2
- package/package.json +14 -3
- package/subagents/README.md +4 -70
- package/dist/heart/daemon/specialist-session.js +0 -142
- package/dist/heart/daemon/subagent-installer.js +0 -125
- package/dist/inner-worker-entry.js +0 -4
- package/subagents/work-doer.md +0 -233
- package/subagents/work-merger.md +0 -624
- package/subagents/work-planner.md +0 -373
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Shared per-turn pipeline for all senses.
|
|
3
|
+
// Senses are thin transport adapters; this module owns the common lifecycle:
|
|
4
|
+
// resolve friend -> trust gate -> load session -> drain pending -> runAgent -> postTurn -> token accumulation.
|
|
5
|
+
//
|
|
6
|
+
// Transport-level concerns (BB API calls, Teams cards, readline) stay in sense adapters.
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.handleInboundTurn = handleInboundTurn;
|
|
9
|
+
const runtime_1 = require("../nerves/runtime");
|
|
10
|
+
const continuity_1 = require("./continuity");
|
|
11
|
+
const manager_1 = require("../heart/bridges/manager");
|
|
12
|
+
const identity_1 = require("../heart/identity");
|
|
13
|
+
const tasks_1 = require("../repertoire/tasks");
|
|
14
|
+
const session_activity_1 = require("../heart/session-activity");
|
|
15
|
+
const active_work_1 = require("../heart/active-work");
|
|
16
|
+
const delegation_1 = require("../heart/delegation");
|
|
17
|
+
const target_resolution_1 = require("../heart/target-resolution");
|
|
18
|
+
const thoughts_1 = require("../heart/daemon/thoughts");
|
|
19
|
+
const pending_1 = require("../mind/pending");
|
|
20
|
+
const obligations_1 = require("../heart/obligations");
|
|
21
|
+
function emptyTaskBoard() {
|
|
22
|
+
return {
|
|
23
|
+
compact: "",
|
|
24
|
+
full: "",
|
|
25
|
+
byStatus: {
|
|
26
|
+
drafting: [],
|
|
27
|
+
processing: [],
|
|
28
|
+
validating: [],
|
|
29
|
+
collaborating: [],
|
|
30
|
+
paused: [],
|
|
31
|
+
blocked: [],
|
|
32
|
+
done: [],
|
|
33
|
+
},
|
|
34
|
+
actionRequired: [],
|
|
35
|
+
unresolvedDependencies: [],
|
|
36
|
+
activeSessions: [],
|
|
37
|
+
activeBridges: [],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function readInnerWorkState() {
|
|
41
|
+
const defaultJob = {
|
|
42
|
+
status: "idle",
|
|
43
|
+
content: null,
|
|
44
|
+
origin: null,
|
|
45
|
+
mode: "reflect",
|
|
46
|
+
obligationStatus: null,
|
|
47
|
+
surfacedResult: null,
|
|
48
|
+
queuedAt: null,
|
|
49
|
+
startedAt: null,
|
|
50
|
+
surfacedAt: null,
|
|
51
|
+
};
|
|
52
|
+
try {
|
|
53
|
+
const agentRoot = (0, identity_1.getAgentRoot)();
|
|
54
|
+
const pendingDir = (0, pending_1.getInnerDialogPendingDir)((0, identity_1.getAgentName)());
|
|
55
|
+
const sessionPath = (0, thoughts_1.getInnerDialogSessionPath)(agentRoot);
|
|
56
|
+
const { pendingMessages, turns, runtimeState } = (0, thoughts_1.readInnerDialogRawData)(sessionPath, pendingDir);
|
|
57
|
+
const dialogStatus = (0, thoughts_1.deriveInnerDialogStatus)(pendingMessages, turns, runtimeState);
|
|
58
|
+
const job = (0, thoughts_1.deriveInnerJob)(pendingMessages, turns, runtimeState);
|
|
59
|
+
// Derive obligationPending from both the pending message field and the obligation store
|
|
60
|
+
const storeObligationPending = (0, obligations_1.readPendingObligations)(agentRoot).length > 0;
|
|
61
|
+
return {
|
|
62
|
+
status: dialogStatus.processing === "started" ? "running" : "idle",
|
|
63
|
+
hasPending: dialogStatus.queue !== "clear",
|
|
64
|
+
origin: dialogStatus.origin,
|
|
65
|
+
contentSnippet: dialogStatus.contentSnippet,
|
|
66
|
+
obligationPending: dialogStatus.obligationPending || storeObligationPending,
|
|
67
|
+
job,
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
catch {
|
|
71
|
+
return {
|
|
72
|
+
status: "idle",
|
|
73
|
+
hasPending: false,
|
|
74
|
+
job: defaultJob,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
// ── Pipeline ──────────────────────────────────────────────────────
|
|
79
|
+
async function handleInboundTurn(input) {
|
|
80
|
+
// Step 1: Resolve friend
|
|
81
|
+
const resolvedContext = await input.friendResolver.resolve();
|
|
82
|
+
(0, runtime_1.emitNervesEvent)({
|
|
83
|
+
component: "senses",
|
|
84
|
+
event: "senses.pipeline_start",
|
|
85
|
+
message: "inbound turn pipeline started",
|
|
86
|
+
meta: {
|
|
87
|
+
channel: input.channel,
|
|
88
|
+
friendId: resolvedContext.friend.id,
|
|
89
|
+
senseType: input.capabilities.senseType,
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
// Step 2: Trust gate
|
|
93
|
+
const gateInput = {
|
|
94
|
+
friend: resolvedContext.friend,
|
|
95
|
+
provider: input.provider ?? "local",
|
|
96
|
+
externalId: input.externalId ?? "",
|
|
97
|
+
tenantId: input.tenantId,
|
|
98
|
+
channel: input.channel,
|
|
99
|
+
senseType: input.capabilities.senseType,
|
|
100
|
+
isGroupChat: input.isGroupChat ?? false,
|
|
101
|
+
groupHasFamilyMember: input.groupHasFamilyMember ?? false,
|
|
102
|
+
hasExistingGroupWithFamily: input.hasExistingGroupWithFamily ?? false,
|
|
103
|
+
};
|
|
104
|
+
const gateResult = input.enforceTrustGate(gateInput);
|
|
105
|
+
// Gate rejection: return early, no agent turn
|
|
106
|
+
if (!gateResult.allowed) {
|
|
107
|
+
(0, runtime_1.emitNervesEvent)({
|
|
108
|
+
component: "senses",
|
|
109
|
+
event: "senses.pipeline_gate_reject",
|
|
110
|
+
message: "trust gate rejected inbound turn",
|
|
111
|
+
meta: {
|
|
112
|
+
channel: input.channel,
|
|
113
|
+
friendId: resolvedContext.friend.id,
|
|
114
|
+
reason: gateResult.reason,
|
|
115
|
+
},
|
|
116
|
+
});
|
|
117
|
+
return {
|
|
118
|
+
resolvedContext,
|
|
119
|
+
gateResult,
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
// Step 3: Load/create session
|
|
123
|
+
const session = await input.sessionLoader.loadOrCreate();
|
|
124
|
+
const sessionMessages = session.messages;
|
|
125
|
+
let mustResolveBeforeHandoff = (0, continuity_1.resolveMustResolveBeforeHandoff)(session.state?.mustResolveBeforeHandoff === true, input.continuityIngressTexts);
|
|
126
|
+
const lastFriendActivityAt = input.channel === "inner"
|
|
127
|
+
? session.state?.lastFriendActivityAt
|
|
128
|
+
: new Date().toISOString();
|
|
129
|
+
const currentObligation = input.continuityIngressTexts
|
|
130
|
+
?.map((text) => text.trim())
|
|
131
|
+
.filter((text) => text.length > 0)
|
|
132
|
+
.at(-1);
|
|
133
|
+
const currentSession = {
|
|
134
|
+
friendId: resolvedContext.friend.id,
|
|
135
|
+
channel: input.channel,
|
|
136
|
+
key: input.sessionKey ?? "session",
|
|
137
|
+
sessionPath: session.sessionPath,
|
|
138
|
+
};
|
|
139
|
+
const activeBridges = (0, manager_1.createBridgeManager)().findBridgesForSession({
|
|
140
|
+
friendId: currentSession.friendId,
|
|
141
|
+
channel: currentSession.channel,
|
|
142
|
+
key: currentSession.key,
|
|
143
|
+
});
|
|
144
|
+
const bridgeContext = (0, manager_1.formatBridgeContext)(activeBridges) || undefined;
|
|
145
|
+
let sessionActivity = [];
|
|
146
|
+
try {
|
|
147
|
+
const agentRoot = (0, identity_1.getAgentRoot)();
|
|
148
|
+
sessionActivity = (0, session_activity_1.listSessionActivity)({
|
|
149
|
+
sessionsDir: `${agentRoot}/state/sessions`,
|
|
150
|
+
friendsDir: `${agentRoot}/friends`,
|
|
151
|
+
agentName: (0, identity_1.getAgentName)(),
|
|
152
|
+
currentSession: {
|
|
153
|
+
friendId: currentSession.friendId,
|
|
154
|
+
channel: currentSession.channel,
|
|
155
|
+
key: currentSession.key,
|
|
156
|
+
},
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
catch {
|
|
160
|
+
sessionActivity = [];
|
|
161
|
+
}
|
|
162
|
+
let targetCandidates = [];
|
|
163
|
+
try {
|
|
164
|
+
if (input.channel !== "inner") {
|
|
165
|
+
const agentRoot = (0, identity_1.getAgentRoot)();
|
|
166
|
+
targetCandidates = await (0, target_resolution_1.listTargetSessionCandidates)({
|
|
167
|
+
sessionsDir: `${agentRoot}/state/sessions`,
|
|
168
|
+
friendsDir: `${agentRoot}/friends`,
|
|
169
|
+
agentName: (0, identity_1.getAgentName)(),
|
|
170
|
+
currentSession: {
|
|
171
|
+
friendId: currentSession.friendId,
|
|
172
|
+
channel: currentSession.channel,
|
|
173
|
+
key: currentSession.key,
|
|
174
|
+
},
|
|
175
|
+
friendStore: input.friendStore,
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
catch {
|
|
180
|
+
targetCandidates = [];
|
|
181
|
+
}
|
|
182
|
+
let pendingObligations = [];
|
|
183
|
+
try {
|
|
184
|
+
pendingObligations = (0, obligations_1.readPendingObligations)((0, identity_1.getAgentRoot)());
|
|
185
|
+
}
|
|
186
|
+
catch {
|
|
187
|
+
pendingObligations = [];
|
|
188
|
+
}
|
|
189
|
+
const activeWorkFrame = (0, active_work_1.buildActiveWorkFrame)({
|
|
190
|
+
currentSession,
|
|
191
|
+
currentObligation,
|
|
192
|
+
mustResolveBeforeHandoff,
|
|
193
|
+
inner: readInnerWorkState(),
|
|
194
|
+
bridges: activeBridges,
|
|
195
|
+
pendingObligations,
|
|
196
|
+
taskBoard: (() => {
|
|
197
|
+
try {
|
|
198
|
+
return (0, tasks_1.getTaskModule)().getBoard();
|
|
199
|
+
}
|
|
200
|
+
catch {
|
|
201
|
+
return emptyTaskBoard();
|
|
202
|
+
}
|
|
203
|
+
})(),
|
|
204
|
+
friendActivity: sessionActivity,
|
|
205
|
+
targetCandidates,
|
|
206
|
+
});
|
|
207
|
+
const delegationDecision = (0, delegation_1.decideDelegation)({
|
|
208
|
+
channel: input.channel,
|
|
209
|
+
ingressTexts: input.continuityIngressTexts ?? [],
|
|
210
|
+
activeWork: activeWorkFrame,
|
|
211
|
+
mustResolveBeforeHandoff,
|
|
212
|
+
});
|
|
213
|
+
// Step 4: Drain deferred friend returns, then ordinary per-session pending.
|
|
214
|
+
const deferredReturns = input.channel === "inner"
|
|
215
|
+
? []
|
|
216
|
+
: (input.drainDeferredReturns?.(resolvedContext.friend.id) ?? []);
|
|
217
|
+
const sessionPending = input.drainPending(input.pendingDir);
|
|
218
|
+
const pending = [...deferredReturns, ...sessionPending];
|
|
219
|
+
// Assemble messages: session messages + pending (formatted) + inbound user messages
|
|
220
|
+
if (pending.length > 0) {
|
|
221
|
+
// Format pending messages and prepend to the user content
|
|
222
|
+
const pendingSection = pending
|
|
223
|
+
.map((msg) => `[pending from ${msg.from}]: ${msg.content}`)
|
|
224
|
+
.join("\n");
|
|
225
|
+
// If there are inbound user messages, prepend pending to the first one
|
|
226
|
+
if (input.messages.length > 0) {
|
|
227
|
+
const firstMsg = input.messages[0];
|
|
228
|
+
if (firstMsg.role === "user") {
|
|
229
|
+
if (typeof firstMsg.content === "string") {
|
|
230
|
+
input.messages[0] = {
|
|
231
|
+
...firstMsg,
|
|
232
|
+
content: `## pending messages\n${pendingSection}\n\n${firstMsg.content}`,
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
else {
|
|
236
|
+
input.messages[0] = {
|
|
237
|
+
...firstMsg,
|
|
238
|
+
content: [
|
|
239
|
+
{ type: "text", text: `## pending messages\n${pendingSection}\n\n` },
|
|
240
|
+
...firstMsg.content,
|
|
241
|
+
],
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
// Append user messages from the inbound turn
|
|
248
|
+
for (const msg of input.messages) {
|
|
249
|
+
sessionMessages.push(msg);
|
|
250
|
+
}
|
|
251
|
+
// Step 5: runAgent
|
|
252
|
+
const existingToolContext = input.runAgentOptions?.toolContext;
|
|
253
|
+
const runAgentOptions = {
|
|
254
|
+
...input.runAgentOptions,
|
|
255
|
+
bridgeContext,
|
|
256
|
+
activeWorkFrame,
|
|
257
|
+
delegationDecision,
|
|
258
|
+
currentSessionKey: currentSession.key,
|
|
259
|
+
currentObligation,
|
|
260
|
+
mustResolveBeforeHandoff,
|
|
261
|
+
setMustResolveBeforeHandoff: (value) => {
|
|
262
|
+
mustResolveBeforeHandoff = value;
|
|
263
|
+
},
|
|
264
|
+
toolContext: {
|
|
265
|
+
/* v8 ignore next -- default no-op signin satisfies interface; real signin injected by sense adapter @preserve */
|
|
266
|
+
signin: async () => undefined,
|
|
267
|
+
...existingToolContext,
|
|
268
|
+
context: resolvedContext,
|
|
269
|
+
friendStore: input.friendStore,
|
|
270
|
+
currentSession,
|
|
271
|
+
activeBridges,
|
|
272
|
+
},
|
|
273
|
+
};
|
|
274
|
+
const result = await input.runAgent(sessionMessages, input.callbacks, input.channel, input.signal, runAgentOptions);
|
|
275
|
+
// Step 6: postTurn
|
|
276
|
+
const continuingState = {
|
|
277
|
+
...(mustResolveBeforeHandoff ? { mustResolveBeforeHandoff: true } : {}),
|
|
278
|
+
...(typeof lastFriendActivityAt === "string" ? { lastFriendActivityAt } : {}),
|
|
279
|
+
};
|
|
280
|
+
const nextState = result.outcome === "complete" || result.outcome === "blocked" || result.outcome === "superseded" || result.outcome === "no_response"
|
|
281
|
+
? (typeof lastFriendActivityAt === "string"
|
|
282
|
+
? { lastFriendActivityAt }
|
|
283
|
+
: undefined)
|
|
284
|
+
: (Object.keys(continuingState).length > 0 ? continuingState : undefined);
|
|
285
|
+
input.postTurn(sessionMessages, session.sessionPath, result.usage, undefined, nextState);
|
|
286
|
+
// Step 7: Token accumulation
|
|
287
|
+
await input.accumulateFriendTokens(input.friendStore, resolvedContext.friend.id, result.usage);
|
|
288
|
+
(0, runtime_1.emitNervesEvent)({
|
|
289
|
+
component: "senses",
|
|
290
|
+
event: "senses.pipeline_end",
|
|
291
|
+
message: "inbound turn pipeline completed",
|
|
292
|
+
meta: {
|
|
293
|
+
channel: input.channel,
|
|
294
|
+
friendId: resolvedContext.friend.id,
|
|
295
|
+
},
|
|
296
|
+
});
|
|
297
|
+
return {
|
|
298
|
+
resolvedContext,
|
|
299
|
+
gateResult,
|
|
300
|
+
usage: result.usage,
|
|
301
|
+
turnOutcome: result.outcome,
|
|
302
|
+
completion: result.completion,
|
|
303
|
+
sessionPath: session.sessionPath,
|
|
304
|
+
messages: sessionMessages,
|
|
305
|
+
drainedPending: pending,
|
|
306
|
+
};
|
|
307
|
+
}
|