@ouro.bot/cli 0.1.0-alpha.11 → 0.1.0-alpha.111
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/psyche/SOUL.md +2 -2
- package/AdoptionSpecialist.ouro/psyche/identities/monty.md +2 -2
- package/README.md +147 -205
- package/assets/ouroboros.png +0 -0
- package/changelog.json +672 -0
- package/dist/heart/active-work.js +622 -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 +105 -0
- package/dist/heart/config.js +68 -23
- package/dist/heart/core.js +492 -96
- 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 +1711 -208
- 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 +59 -15
- 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 +37 -94
- package/dist/heart/daemon/specialist-prompt.js +50 -12
- 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 +197 -0
- package/dist/heart/progress-story.js +42 -0
- package/dist/heart/providers/anthropic.js +74 -9
- package/dist/heart/providers/azure.js +87 -8
- package/dist/heart/providers/github-copilot.js +149 -0
- package/dist/heart/providers/minimax.js +5 -1
- package/dist/heart/providers/openai-codex.js +13 -4
- package/dist/heart/safe-workspace.js +381 -0
- package/dist/heart/sense-truth.js +61 -0
- package/dist/heart/session-activity.js +169 -0
- package/dist/heart/session-recall.js +216 -0
- package/dist/heart/streaming.js +108 -24
- package/dist/heart/target-resolution.js +123 -0
- package/dist/heart/tool-loop.js +194 -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 +60 -14
- 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 +221 -0
- package/dist/mind/pending.js +76 -9
- package/dist/mind/phrases.js +1 -0
- package/dist/mind/prompt.js +527 -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/context-pack.js +254 -0
- package/dist/repertoire/coding/feedback.js +301 -0
- package/dist/repertoire/coding/index.js +4 -1
- package/dist/repertoire/coding/manager.js +210 -4
- package/dist/repertoire/coding/spawner.js +39 -9
- package/dist/repertoire/coding/tools.js +171 -4
- 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 +925 -250
- 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 +900 -45
- package/dist/senses/cli-layout.js +187 -0
- package/dist/senses/cli.js +448 -170
- 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 +388 -83
- package/dist/senses/pipeline.js +334 -0
- package/dist/senses/teams.js +577 -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 -177
- 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
package/dist/heart/core.js
CHANGED
|
@@ -7,7 +7,10 @@ exports.getModel = getModel;
|
|
|
7
7
|
exports.getProvider = getProvider;
|
|
8
8
|
exports.createSummarize = createSummarize;
|
|
9
9
|
exports.getProviderDisplayLabel = getProviderDisplayLabel;
|
|
10
|
+
exports.isExternalStateQuery = isExternalStateQuery;
|
|
11
|
+
exports.getFinalAnswerRetryError = getFinalAnswerRetryError;
|
|
10
12
|
exports.stripLastToolCalls = stripLastToolCalls;
|
|
13
|
+
exports.repairOrphanedToolCalls = repairOrphanedToolCalls;
|
|
11
14
|
exports.isTransientError = isTransientError;
|
|
12
15
|
exports.classifyTransientError = classifyTransientError;
|
|
13
16
|
exports.runAgent = runAgent;
|
|
@@ -15,9 +18,6 @@ const config_1 = require("./config");
|
|
|
15
18
|
const identity_1 = require("./identity");
|
|
16
19
|
const tools_1 = require("../repertoire/tools");
|
|
17
20
|
const channel_1 = require("../mind/friends/channel");
|
|
18
|
-
// Kick detection preserved but disabled — see comment in agent loop below.
|
|
19
|
-
// import { detectKick } from "./kicks";
|
|
20
|
-
// import type { KickReason } from "./kicks";
|
|
21
21
|
const runtime_1 = require("../nerves/runtime");
|
|
22
22
|
const context_1 = require("../mind/context");
|
|
23
23
|
const prompt_1 = require("../mind/prompt");
|
|
@@ -26,13 +26,48 @@ const anthropic_1 = require("./providers/anthropic");
|
|
|
26
26
|
const azure_1 = require("./providers/azure");
|
|
27
27
|
const minimax_1 = require("./providers/minimax");
|
|
28
28
|
const openai_codex_1 = require("./providers/openai-codex");
|
|
29
|
+
const github_copilot_1 = require("./providers/github-copilot");
|
|
30
|
+
const pending_1 = require("../mind/pending");
|
|
31
|
+
const identity_2 = require("./identity");
|
|
32
|
+
const socket_client_1 = require("./daemon/socket-client");
|
|
33
|
+
const obligations_1 = require("./obligations");
|
|
34
|
+
const tool_loop_1 = require("./tool-loop");
|
|
29
35
|
let _providerRuntime = null;
|
|
36
|
+
function getProviderRuntimeFingerprint() {
|
|
37
|
+
const provider = (0, identity_1.loadAgentConfig)().provider;
|
|
38
|
+
/* v8 ignore next -- switch: not all provider branches exercised in CI @preserve */
|
|
39
|
+
switch (provider) {
|
|
40
|
+
case "azure": {
|
|
41
|
+
const { apiKey, endpoint, deployment, modelName, apiVersion, managedIdentityClientId } = (0, config_1.getAzureConfig)();
|
|
42
|
+
return JSON.stringify({ provider, apiKey, endpoint, deployment, modelName, apiVersion, managedIdentityClientId });
|
|
43
|
+
}
|
|
44
|
+
case "anthropic": {
|
|
45
|
+
const { model, setupToken } = (0, config_1.getAnthropicConfig)();
|
|
46
|
+
return JSON.stringify({ provider, model, setupToken });
|
|
47
|
+
}
|
|
48
|
+
case "minimax": {
|
|
49
|
+
const { apiKey, model } = (0, config_1.getMinimaxConfig)();
|
|
50
|
+
return JSON.stringify({ provider, apiKey, model });
|
|
51
|
+
}
|
|
52
|
+
case "openai-codex": {
|
|
53
|
+
const { model, oauthAccessToken } = (0, config_1.getOpenAICodexConfig)();
|
|
54
|
+
return JSON.stringify({ provider, model, oauthAccessToken });
|
|
55
|
+
}
|
|
56
|
+
/* v8 ignore start -- fingerprint: tested via provider init tests @preserve */
|
|
57
|
+
case "github-copilot": {
|
|
58
|
+
const { model, githubToken, baseUrl } = (0, config_1.getGithubCopilotConfig)();
|
|
59
|
+
return JSON.stringify({ provider, model, githubToken, baseUrl });
|
|
60
|
+
}
|
|
61
|
+
/* v8 ignore stop */
|
|
62
|
+
}
|
|
63
|
+
}
|
|
30
64
|
function createProviderRegistry() {
|
|
31
65
|
const factories = {
|
|
32
66
|
azure: azure_1.createAzureProviderRuntime,
|
|
33
67
|
anthropic: anthropic_1.createAnthropicProviderRuntime,
|
|
34
68
|
minimax: minimax_1.createMinimaxProviderRuntime,
|
|
35
69
|
"openai-codex": openai_codex_1.createOpenAICodexProviderRuntime,
|
|
70
|
+
"github-copilot": github_copilot_1.createGithubCopilotProviderRuntime,
|
|
36
71
|
};
|
|
37
72
|
return {
|
|
38
73
|
resolve() {
|
|
@@ -42,42 +77,44 @@ function createProviderRegistry() {
|
|
|
42
77
|
};
|
|
43
78
|
}
|
|
44
79
|
function getProviderRuntime() {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
const msg = error instanceof Error ? error.message : String(error);
|
|
51
|
-
(0, runtime_1.emitNervesEvent)({
|
|
52
|
-
level: "error",
|
|
53
|
-
event: "engine.provider_init_error",
|
|
54
|
-
component: "engine",
|
|
55
|
-
message: msg,
|
|
56
|
-
meta: {},
|
|
57
|
-
});
|
|
58
|
-
// eslint-disable-next-line no-console -- pre-boot guard: provider init failure
|
|
59
|
-
console.error(`\n[fatal] ${msg}\n`);
|
|
60
|
-
process.exit(1);
|
|
61
|
-
throw new Error("unreachable");
|
|
62
|
-
}
|
|
63
|
-
if (!_providerRuntime) {
|
|
64
|
-
(0, runtime_1.emitNervesEvent)({
|
|
65
|
-
level: "error",
|
|
66
|
-
event: "engine.provider_init_error",
|
|
67
|
-
component: "engine",
|
|
68
|
-
message: "provider runtime could not be initialized.",
|
|
69
|
-
meta: {},
|
|
70
|
-
});
|
|
71
|
-
process.exit(1);
|
|
72
|
-
throw new Error("unreachable");
|
|
80
|
+
try {
|
|
81
|
+
const fingerprint = getProviderRuntimeFingerprint();
|
|
82
|
+
if (!_providerRuntime || _providerRuntime.fingerprint !== fingerprint) {
|
|
83
|
+
const runtime = createProviderRegistry().resolve();
|
|
84
|
+
_providerRuntime = runtime ? { fingerprint, runtime } : null;
|
|
73
85
|
}
|
|
74
86
|
}
|
|
75
|
-
|
|
87
|
+
catch (error) {
|
|
88
|
+
const msg = error instanceof Error ? error.message : String(error);
|
|
89
|
+
(0, runtime_1.emitNervesEvent)({
|
|
90
|
+
level: "error",
|
|
91
|
+
event: "engine.provider_init_error",
|
|
92
|
+
component: "engine",
|
|
93
|
+
message: msg,
|
|
94
|
+
meta: {},
|
|
95
|
+
});
|
|
96
|
+
// eslint-disable-next-line no-console -- pre-boot guard: provider init failure
|
|
97
|
+
console.error(`\n[fatal] ${msg}\n`);
|
|
98
|
+
process.exit(1);
|
|
99
|
+
throw new Error("unreachable");
|
|
100
|
+
}
|
|
101
|
+
if (!_providerRuntime) {
|
|
102
|
+
(0, runtime_1.emitNervesEvent)({
|
|
103
|
+
level: "error",
|
|
104
|
+
event: "engine.provider_init_error",
|
|
105
|
+
component: "engine",
|
|
106
|
+
message: "provider runtime could not be initialized.",
|
|
107
|
+
meta: {},
|
|
108
|
+
});
|
|
109
|
+
process.exit(1);
|
|
110
|
+
throw new Error("unreachable");
|
|
111
|
+
}
|
|
112
|
+
return _providerRuntime.runtime;
|
|
76
113
|
}
|
|
77
114
|
/**
|
|
78
|
-
* Clear the cached provider runtime so the next
|
|
79
|
-
*
|
|
80
|
-
*
|
|
115
|
+
* Clear the cached provider runtime so the next access re-creates it from
|
|
116
|
+
* current config. Runtime access also auto-refreshes when the selected
|
|
117
|
+
* provider fingerprint changes on disk.
|
|
81
118
|
*/
|
|
82
119
|
function resetProviderRuntime() {
|
|
83
120
|
_providerRuntime = null;
|
|
@@ -104,14 +141,19 @@ function createSummarize() {
|
|
|
104
141
|
};
|
|
105
142
|
}
|
|
106
143
|
function getProviderDisplayLabel() {
|
|
107
|
-
const
|
|
144
|
+
const provider = (0, identity_1.loadAgentConfig)().provider;
|
|
108
145
|
const providerLabelBuilders = {
|
|
109
|
-
azure: () =>
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
146
|
+
azure: () => {
|
|
147
|
+
const config = (0, config_1.getAzureConfig)();
|
|
148
|
+
return `azure openai (${config.deployment || "default"}, model: ${config.modelName || "unknown"})`;
|
|
149
|
+
},
|
|
150
|
+
anthropic: () => `anthropic (${(0, config_1.getAnthropicConfig)().model || "unknown"})`,
|
|
151
|
+
minimax: () => `minimax (${(0, config_1.getMinimaxConfig)().model || "unknown"})`,
|
|
152
|
+
"openai-codex": () => `openai codex (${(0, config_1.getOpenAICodexConfig)().model || "unknown"})`,
|
|
153
|
+
/* v8 ignore next -- branch: tested via display label unit test @preserve */
|
|
154
|
+
"github-copilot": () => `github copilot (${(0, config_1.getGithubCopilotConfig)().model || "unknown"})`,
|
|
113
155
|
};
|
|
114
|
-
return providerLabelBuilders[
|
|
156
|
+
return providerLabelBuilders[provider]();
|
|
115
157
|
}
|
|
116
158
|
// Re-export tools, execTool, summarizeArgs from ./tools for backward compat
|
|
117
159
|
var tools_2 = require("../repertoire/tools");
|
|
@@ -128,6 +170,109 @@ Object.defineProperty(exports, "toResponsesTools", { enumerable: true, get: func
|
|
|
128
170
|
// Re-export prompt functions for backward compat
|
|
129
171
|
var prompt_2 = require("../mind/prompt");
|
|
130
172
|
Object.defineProperty(exports, "buildSystem", { enumerable: true, get: function () { return prompt_2.buildSystem; } });
|
|
173
|
+
const DELEGATION_REASON_PROSE_HANDOFF = {
|
|
174
|
+
explicit_reflection: "something in the conversation called for reflection",
|
|
175
|
+
cross_session: "this touches other conversations",
|
|
176
|
+
bridge_state: "there's shared work spanning sessions",
|
|
177
|
+
task_state: "there are active tasks that relate to this",
|
|
178
|
+
non_fast_path_tool: "this needs tools beyond a simple reply",
|
|
179
|
+
unresolved_obligation: "there's an unresolved commitment from an earlier conversation",
|
|
180
|
+
};
|
|
181
|
+
function buildGoInwardHandoffPacket(params) {
|
|
182
|
+
const reasons = params.delegationDecision?.reasons ?? [];
|
|
183
|
+
const reasonProse = reasons.length > 0
|
|
184
|
+
? reasons.map((r) => DELEGATION_REASON_PROSE_HANDOFF[r]).join("; ")
|
|
185
|
+
: "this felt like it needed more thought";
|
|
186
|
+
const returnAddress = params.currentSession
|
|
187
|
+
? `${params.currentSession.friendId}/${params.currentSession.channel}/${params.currentSession.key}`
|
|
188
|
+
: "no specific return -- just thinking";
|
|
189
|
+
let obligationLine;
|
|
190
|
+
if (params.outwardClosureRequired && params.currentSession) {
|
|
191
|
+
obligationLine = `i need to come back to ${params.currentSession.friendId} with something`;
|
|
192
|
+
}
|
|
193
|
+
else {
|
|
194
|
+
obligationLine = "no obligation -- just thinking";
|
|
195
|
+
}
|
|
196
|
+
return [
|
|
197
|
+
"## what i need to think about",
|
|
198
|
+
params.content,
|
|
199
|
+
"",
|
|
200
|
+
"## why this came up",
|
|
201
|
+
reasonProse,
|
|
202
|
+
"",
|
|
203
|
+
"## where to bring it back",
|
|
204
|
+
returnAddress,
|
|
205
|
+
"",
|
|
206
|
+
"## what i owe",
|
|
207
|
+
obligationLine,
|
|
208
|
+
"",
|
|
209
|
+
"## thinking mode",
|
|
210
|
+
params.mode,
|
|
211
|
+
].join("\n");
|
|
212
|
+
}
|
|
213
|
+
function parseFinalAnswerPayload(argumentsText) {
|
|
214
|
+
try {
|
|
215
|
+
const parsed = JSON.parse(argumentsText);
|
|
216
|
+
if (typeof parsed === "string") {
|
|
217
|
+
return { answer: parsed };
|
|
218
|
+
}
|
|
219
|
+
if (!parsed || typeof parsed !== "object") {
|
|
220
|
+
return {};
|
|
221
|
+
}
|
|
222
|
+
const answer = typeof parsed.answer === "string" ? parsed.answer : undefined;
|
|
223
|
+
const rawIntent = parsed.intent;
|
|
224
|
+
const intent = rawIntent === "complete" || rawIntent === "blocked" || rawIntent === "direct_reply"
|
|
225
|
+
? rawIntent
|
|
226
|
+
: undefined;
|
|
227
|
+
return { answer, intent };
|
|
228
|
+
}
|
|
229
|
+
catch {
|
|
230
|
+
return {};
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
/** Returns true when a tool call queries external state (GitHub, npm registry). */
|
|
234
|
+
function isExternalStateQuery(toolName, args) {
|
|
235
|
+
if (toolName !== "shell")
|
|
236
|
+
return false;
|
|
237
|
+
const cmd = String(args.command ?? "");
|
|
238
|
+
return /\bgh\s+(pr|run|api|issue)\b/.test(cmd) || /\bnpm\s+(view|info|show)\b/.test(cmd);
|
|
239
|
+
}
|
|
240
|
+
function getFinalAnswerRetryError(mustResolveBeforeHandoff, intent, sawSteeringFollowUp, delegationDecision, sawSendMessageSelf, sawGoInward, sawQuerySession, currentObligation, innerJob, sawExternalStateQuery) {
|
|
241
|
+
// 1. Delegation adherence: delegate-inward without evidence of inward action
|
|
242
|
+
if (delegationDecision?.target === "delegate-inward" && !sawSendMessageSelf && !sawGoInward && !sawQuerySession) {
|
|
243
|
+
(0, runtime_1.emitNervesEvent)({
|
|
244
|
+
event: "engine.delegation_adherence_rejected",
|
|
245
|
+
component: "engine",
|
|
246
|
+
message: "delegation adherence check rejected final_answer",
|
|
247
|
+
meta: {
|
|
248
|
+
target: delegationDecision.target,
|
|
249
|
+
reasons: delegationDecision.reasons,
|
|
250
|
+
},
|
|
251
|
+
});
|
|
252
|
+
return "you're reaching for a final answer, but part of you knows this needs more thought. take it inward -- go_inward will let you think privately, or send_message(self) if you just want to leave yourself a note.";
|
|
253
|
+
}
|
|
254
|
+
// 2. Pending obligation not addressed
|
|
255
|
+
if (innerJob?.obligationStatus === "pending" && !sawSendMessageSelf && !sawGoInward) {
|
|
256
|
+
return "you're still holding something from an earlier conversation -- someone is waiting for your answer. finish the thought first, or go_inward to keep working on it privately.";
|
|
257
|
+
}
|
|
258
|
+
// 3. mustResolveBeforeHandoff + missing intent
|
|
259
|
+
if (mustResolveBeforeHandoff && !intent) {
|
|
260
|
+
return "your final_answer is missing required intent. when you must keep going until done or blocked, call final_answer again with answer plus intent=complete, blocked, or direct_reply.";
|
|
261
|
+
}
|
|
262
|
+
// 4. mustResolveBeforeHandoff + direct_reply without follow-up
|
|
263
|
+
if (mustResolveBeforeHandoff && intent === "direct_reply" && !sawSteeringFollowUp) {
|
|
264
|
+
return "your final_answer used intent=direct_reply without a newer steering follow-up. continue the unresolved work, or call final_answer again with intent=complete or blocked when appropriate.";
|
|
265
|
+
}
|
|
266
|
+
// 5. mustResolveBeforeHandoff + complete while a live return loop is still active
|
|
267
|
+
if (mustResolveBeforeHandoff && intent === "complete" && currentObligation && !sawSteeringFollowUp) {
|
|
268
|
+
return "you still owe the live session a visible return on this work. don't end the turn yet — continue until you've brought back the external-state update, or use intent=blocked with the concrete blocker.";
|
|
269
|
+
}
|
|
270
|
+
// 6. External-state grounding: obligation + complete requires fresh external verification
|
|
271
|
+
if (intent === "complete" && currentObligation && !sawExternalStateQuery && !sawSteeringFollowUp) {
|
|
272
|
+
return "you're claiming this work is complete, but the external state hasn't been verified this turn. ground your claim with a fresh check (gh pr view, npm view, gh run view, etc.) before calling final_answer.";
|
|
273
|
+
}
|
|
274
|
+
return null;
|
|
275
|
+
}
|
|
131
276
|
// Re-export kick utilities for backward compat
|
|
132
277
|
var kicks_1 = require("./kicks");
|
|
133
278
|
Object.defineProperty(exports, "hasToolIntent", { enumerable: true, get: function () { return kicks_1.hasToolIntent; } });
|
|
@@ -160,6 +305,68 @@ function stripLastToolCalls(messages) {
|
|
|
160
305
|
}
|
|
161
306
|
}
|
|
162
307
|
}
|
|
308
|
+
// Roles that end a tool-result scan. When scanning forward from an assistant
|
|
309
|
+
// message, stop at the next assistant or user message (tool results must be
|
|
310
|
+
// adjacent to their originating assistant message).
|
|
311
|
+
const TOOL_SCAN_BOUNDARY_ROLES = new Set(["assistant", "user"]);
|
|
312
|
+
// Repair orphaned tool_calls and tool results anywhere in the message history.
|
|
313
|
+
// 1. If an assistant message has tool_calls but missing tool results, inject synthetic error results.
|
|
314
|
+
// 2. If a tool result's tool_call_id doesn't match any tool_calls in a preceding assistant message, remove it.
|
|
315
|
+
// This prevents 400 errors from the API after an aborted turn.
|
|
316
|
+
function repairOrphanedToolCalls(messages) {
|
|
317
|
+
// Pass 1: collect all valid tool_call IDs from assistant messages
|
|
318
|
+
const validCallIds = new Set();
|
|
319
|
+
for (const msg of messages) {
|
|
320
|
+
if (msg.role === "assistant") {
|
|
321
|
+
const asst = msg;
|
|
322
|
+
if (asst.tool_calls) {
|
|
323
|
+
for (const tc of asst.tool_calls)
|
|
324
|
+
validCallIds.add(tc.id);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
// Pass 2: remove orphaned tool results (tool_call_id not in any assistant's tool_calls)
|
|
329
|
+
for (let i = messages.length - 1; i >= 0; i--) {
|
|
330
|
+
if (messages[i].role === "tool") {
|
|
331
|
+
const toolMsg = messages[i];
|
|
332
|
+
if (!validCallIds.has(toolMsg.tool_call_id)) {
|
|
333
|
+
messages.splice(i, 1);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
// Pass 3: inject synthetic results for tool_calls missing their tool results
|
|
338
|
+
for (let i = 0; i < messages.length; i++) {
|
|
339
|
+
const msg = messages[i];
|
|
340
|
+
if (msg.role !== "assistant")
|
|
341
|
+
continue;
|
|
342
|
+
const asst = msg;
|
|
343
|
+
if (!asst.tool_calls || asst.tool_calls.length === 0)
|
|
344
|
+
continue;
|
|
345
|
+
// Collect tool result IDs that follow this assistant message
|
|
346
|
+
const resultIds = new Set();
|
|
347
|
+
for (let j = i + 1; j < messages.length; j++) {
|
|
348
|
+
const following = messages[j];
|
|
349
|
+
if (following.role === "tool") {
|
|
350
|
+
resultIds.add(following.tool_call_id);
|
|
351
|
+
}
|
|
352
|
+
else if (TOOL_SCAN_BOUNDARY_ROLES.has(following.role)) {
|
|
353
|
+
break;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
const missing = asst.tool_calls.filter((tc) => !resultIds.has(tc.id));
|
|
357
|
+
if (missing.length > 0) {
|
|
358
|
+
const syntheticResults = missing.map((tc) => ({
|
|
359
|
+
role: "tool",
|
|
360
|
+
tool_call_id: tc.id,
|
|
361
|
+
content: "error: tool call was interrupted (previous turn timed out or was aborted)",
|
|
362
|
+
}));
|
|
363
|
+
let insertAt = i + 1;
|
|
364
|
+
while (insertAt < messages.length && messages[insertAt].role === "tool")
|
|
365
|
+
insertAt++;
|
|
366
|
+
messages.splice(insertAt, 0, ...syntheticResults);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
163
370
|
// Detect context overflow errors from Azure or MiniMax
|
|
164
371
|
function isContextOverflow(err) {
|
|
165
372
|
if (!(err instanceof Error))
|
|
@@ -242,7 +449,12 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
242
449
|
// so turn execution remains consistent and non-fatal.
|
|
243
450
|
if (channel) {
|
|
244
451
|
try {
|
|
245
|
-
const
|
|
452
|
+
const buildSystemOptions = {
|
|
453
|
+
...options,
|
|
454
|
+
providerCapabilities: providerRuntime.capabilities,
|
|
455
|
+
supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
|
|
456
|
+
};
|
|
457
|
+
const refreshed = await (0, prompt_1.buildSystem)(channel, buildSystemOptions, currentContext);
|
|
246
458
|
upsertSystemPrompt(messages, refreshed);
|
|
247
459
|
}
|
|
248
460
|
catch (error) {
|
|
@@ -265,20 +477,37 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
265
477
|
}
|
|
266
478
|
}
|
|
267
479
|
await (0, associative_recall_1.injectAssociativeRecall)(messages);
|
|
268
|
-
// kickCount and lastKickReason preserved but unused while kick detection is disabled.
|
|
269
|
-
// let kickCount = 0;
|
|
270
|
-
// let lastKickReason: KickReason | null = null;
|
|
271
480
|
let done = false;
|
|
272
481
|
let lastUsage;
|
|
273
482
|
let overflowRetried = false;
|
|
274
483
|
let retryCount = 0;
|
|
484
|
+
let outcome = "complete";
|
|
485
|
+
let completion;
|
|
486
|
+
let sawSteeringFollowUp = false;
|
|
487
|
+
let mustResolveBeforeHandoffActive = options?.mustResolveBeforeHandoff === true;
|
|
488
|
+
let currentReasoningEffort = "medium";
|
|
489
|
+
let sawSendMessageSelf = false;
|
|
490
|
+
let sawGoInward = false;
|
|
491
|
+
let sawQuerySession = false;
|
|
492
|
+
let sawBridgeManage = false;
|
|
493
|
+
let sawExternalStateQuery = false;
|
|
494
|
+
const toolLoopState = (0, tool_loop_1.createToolLoopState)();
|
|
275
495
|
// Prevent MaxListenersExceeded warning — each iteration adds a listener
|
|
276
496
|
try {
|
|
277
497
|
require("events").setMaxListeners(50, signal);
|
|
278
498
|
}
|
|
279
499
|
catch { /* unsupported */ }
|
|
280
500
|
const toolPreferences = currentContext?.friend?.toolPreferences;
|
|
281
|
-
const baseTools = (0, tools_1.getToolsForChannel)(channel ? (0, channel_1.getChannelCapabilities)(channel) : undefined, toolPreferences && Object.keys(toolPreferences).length > 0 ? toolPreferences : undefined);
|
|
501
|
+
const baseTools = options?.tools ?? (0, tools_1.getToolsForChannel)(channel ? (0, channel_1.getChannelCapabilities)(channel) : undefined, toolPreferences && Object.keys(toolPreferences).length > 0 ? toolPreferences : undefined, currentContext, providerRuntime.capabilities);
|
|
502
|
+
// Augment tool context with reasoning effort controls from provider
|
|
503
|
+
const augmentedToolContext = options?.toolContext
|
|
504
|
+
? {
|
|
505
|
+
...options.toolContext,
|
|
506
|
+
supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
|
|
507
|
+
setReasoningEffort: (level) => { currentReasoningEffort = level; },
|
|
508
|
+
activeWorkFrame: options?.activeWorkFrame,
|
|
509
|
+
}
|
|
510
|
+
: undefined;
|
|
282
511
|
// Rebase provider-owned turn state from canonical messages at user-turn start.
|
|
283
512
|
// This prevents stale provider caches from replaying prior-turn context.
|
|
284
513
|
providerRuntime.resetTurnState(messages);
|
|
@@ -287,9 +516,23 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
287
516
|
// so the model can signal completion. With tool_choice: required, the
|
|
288
517
|
// model must call a tool every turn — final_answer is how it exits.
|
|
289
518
|
// Overridable via options.toolChoiceRequired = false (e.g. CLI).
|
|
290
|
-
const activeTools = toolChoiceRequired
|
|
519
|
+
const activeTools = toolChoiceRequired
|
|
520
|
+
? [...baseTools, tools_1.goInwardTool, ...(currentContext?.isGroupChat ? [tools_1.noResponseTool] : []), tools_1.finalAnswerTool]
|
|
521
|
+
: baseTools;
|
|
291
522
|
const steeringFollowUps = options?.drainSteeringFollowUps?.() ?? [];
|
|
292
523
|
if (steeringFollowUps.length > 0) {
|
|
524
|
+
const hasSupersedingFollowUp = steeringFollowUps.some((followUp) => followUp.effect === "clear_and_supersede");
|
|
525
|
+
if (hasSupersedingFollowUp) {
|
|
526
|
+
mustResolveBeforeHandoffActive = false;
|
|
527
|
+
options?.setMustResolveBeforeHandoff?.(false);
|
|
528
|
+
outcome = "superseded";
|
|
529
|
+
break;
|
|
530
|
+
}
|
|
531
|
+
if (steeringFollowUps.some((followUp) => followUp.effect === "set_no_handoff")) {
|
|
532
|
+
mustResolveBeforeHandoffActive = true;
|
|
533
|
+
options?.setMustResolveBeforeHandoff?.(true);
|
|
534
|
+
}
|
|
535
|
+
sawSteeringFollowUp = true;
|
|
293
536
|
for (const followUp of steeringFollowUps) {
|
|
294
537
|
messages.push({ role: "user", content: followUp.text });
|
|
295
538
|
}
|
|
@@ -297,8 +540,10 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
297
540
|
}
|
|
298
541
|
// Yield so pending I/O (stdin Ctrl-C) can be processed between iterations
|
|
299
542
|
await new Promise((r) => setImmediate(r));
|
|
300
|
-
if (signal?.aborted)
|
|
543
|
+
if (signal?.aborted) {
|
|
544
|
+
outcome = "aborted";
|
|
301
545
|
break;
|
|
546
|
+
}
|
|
302
547
|
try {
|
|
303
548
|
callbacks.onModelStart();
|
|
304
549
|
const result = await providerRuntime.streamTurn({
|
|
@@ -308,6 +553,8 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
308
553
|
signal,
|
|
309
554
|
traceId,
|
|
310
555
|
toolChoiceRequired,
|
|
556
|
+
reasoningEffort: currentReasoningEffort,
|
|
557
|
+
eagerFinalAnswerStreaming: true,
|
|
311
558
|
});
|
|
312
559
|
// Track usage from the latest API call
|
|
313
560
|
if (result.usage)
|
|
@@ -331,49 +578,42 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
331
578
|
if (reasoningItems.length > 0) {
|
|
332
579
|
msg._reasoning_items = reasoningItems;
|
|
333
580
|
}
|
|
581
|
+
// Store thinking blocks (Anthropic) on the assistant message for round-tripping
|
|
582
|
+
const thinkingItems = result.outputItems.filter((item) => "type" in item && (item.type === "thinking" || item.type === "redacted_thinking"));
|
|
583
|
+
if (thinkingItems.length > 0) {
|
|
584
|
+
msg._thinking_blocks = thinkingItems;
|
|
585
|
+
}
|
|
586
|
+
// Phase annotation for Codex provider
|
|
587
|
+
const hasPhaseAnnotation = providerRuntime.capabilities.has("phase-annotation");
|
|
588
|
+
const isSoleFinalAnswer = result.toolCalls.length === 1 && result.toolCalls[0].name === "final_answer";
|
|
589
|
+
if (hasPhaseAnnotation) {
|
|
590
|
+
msg.phase = isSoleFinalAnswer ? "final_answer" : "commentary";
|
|
591
|
+
}
|
|
334
592
|
if (!result.toolCalls.length) {
|
|
335
|
-
//
|
|
336
|
-
//
|
|
337
|
-
//
|
|
338
|
-
// accept the response as-is rather than risk false-positive kicks.
|
|
339
|
-
//
|
|
340
|
-
// Preserved for future use — re-enable by uncommenting:
|
|
341
|
-
// const kick = detectKick(result.content, options);
|
|
342
|
-
// if (kick) {
|
|
343
|
-
// kickCount++;
|
|
344
|
-
// lastKickReason = kick.reason;
|
|
345
|
-
// callbacks.onKick?.();
|
|
346
|
-
// const kickContent = result.content
|
|
347
|
-
// ? result.content + "\n\n" + kick.message
|
|
348
|
-
// : kick.message;
|
|
349
|
-
// messages.push({ role: "assistant", content: kickContent });
|
|
350
|
-
// providerRuntime.resetTurnState(messages);
|
|
351
|
-
// continue;
|
|
352
|
-
// }
|
|
593
|
+
// No tool calls — accept response as-is.
|
|
594
|
+
// (Kick detection disabled; tool_choice: required + final_answer
|
|
595
|
+
// is the primary loop control. See src/heart/kicks.ts to re-enable.)
|
|
353
596
|
messages.push(msg);
|
|
354
597
|
done = true;
|
|
355
598
|
}
|
|
356
599
|
else {
|
|
357
600
|
// Check for final_answer sole call: intercept before tool execution
|
|
358
|
-
const isSoleFinalAnswer = result.toolCalls.length === 1 && result.toolCalls[0].name === "final_answer";
|
|
359
601
|
if (isSoleFinalAnswer) {
|
|
360
602
|
// Extract answer from the tool call arguments.
|
|
361
|
-
// Supports: {"answer":"text"}
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
}
|
|
376
|
-
if (answer != null) {
|
|
603
|
+
// Supports: {"answer":"text","intent":"..."} or "text" (JSON string).
|
|
604
|
+
const { answer, intent } = parseFinalAnswerPayload(result.toolCalls[0].arguments);
|
|
605
|
+
const retryError = getFinalAnswerRetryError(mustResolveBeforeHandoffActive, intent, sawSteeringFollowUp, options?.delegationDecision, sawSendMessageSelf, sawGoInward, sawQuerySession, options?.currentObligation ?? null, options?.activeWorkFrame?.inner?.job, sawExternalStateQuery);
|
|
606
|
+
const deliveredAnswer = answer;
|
|
607
|
+
const validDirectReply = mustResolveBeforeHandoffActive && intent === "direct_reply" && sawSteeringFollowUp;
|
|
608
|
+
const validTerminalIntent = intent === "complete" || intent === "blocked";
|
|
609
|
+
const validClosure = deliveredAnswer != null
|
|
610
|
+
&& !retryError
|
|
611
|
+
&& (!mustResolveBeforeHandoffActive || validDirectReply || validTerminalIntent);
|
|
612
|
+
if (validClosure) {
|
|
613
|
+
completion = {
|
|
614
|
+
answer: deliveredAnswer,
|
|
615
|
+
intent: validDirectReply ? "direct_reply" : intent === "blocked" ? "blocked" : "complete",
|
|
616
|
+
};
|
|
377
617
|
if (result.finalAnswerStreamed) {
|
|
378
618
|
// The streaming layer already parsed and emitted the answer
|
|
379
619
|
// progressively via FinalAnswerParser. Skip clearing and
|
|
@@ -384,29 +624,145 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
384
624
|
callbacks.onClearText?.();
|
|
385
625
|
// Emit the answer through the callback pipeline so channels receive it.
|
|
386
626
|
// Never truncate -- channel adapters handle splitting long messages.
|
|
387
|
-
callbacks.onTextChunk(
|
|
627
|
+
callbacks.onTextChunk(deliveredAnswer);
|
|
388
628
|
}
|
|
389
|
-
// Keep the full assistant message (with tool_calls) for debuggability,
|
|
390
|
-
// plus a synthetic tool response so the conversation stays valid on resume.
|
|
391
629
|
messages.push(msg);
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
630
|
+
if (validDirectReply) {
|
|
631
|
+
const resumeWork = "direct reply delivered. resume the unresolved obligation now and keep working until you can finish or clearly report that you are blocked.";
|
|
632
|
+
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: resumeWork });
|
|
633
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, resumeWork);
|
|
634
|
+
}
|
|
635
|
+
else {
|
|
636
|
+
const delivered = "(delivered)";
|
|
637
|
+
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: delivered });
|
|
638
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, delivered);
|
|
639
|
+
outcome = intent === "blocked" ? "blocked" : "complete";
|
|
640
|
+
done = true;
|
|
641
|
+
}
|
|
395
642
|
}
|
|
396
643
|
else {
|
|
397
644
|
// Answer is undefined -- the model's final_answer was incomplete or
|
|
398
645
|
// malformed. Clear any partial streamed text or noise, then push the
|
|
399
646
|
// assistant msg + error tool result and let the model try again.
|
|
400
647
|
callbacks.onClearText?.();
|
|
401
|
-
const retryError = "your final_answer was incomplete or malformed. call final_answer again with your complete response.";
|
|
402
648
|
messages.push(msg);
|
|
403
|
-
|
|
404
|
-
|
|
649
|
+
const toolRetryMessage = retryError
|
|
650
|
+
?? "your final_answer was incomplete or malformed. call final_answer again with your complete response.";
|
|
651
|
+
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: toolRetryMessage });
|
|
652
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, toolRetryMessage);
|
|
653
|
+
}
|
|
654
|
+
continue;
|
|
655
|
+
}
|
|
656
|
+
// Check for no_response sole call: intercept before tool execution
|
|
657
|
+
const isSoleNoResponse = result.toolCalls.length === 1 && result.toolCalls[0].name === "no_response";
|
|
658
|
+
if (isSoleNoResponse) {
|
|
659
|
+
let reason;
|
|
660
|
+
try {
|
|
661
|
+
const parsed = JSON.parse(result.toolCalls[0].arguments);
|
|
662
|
+
if (typeof parsed?.reason === "string")
|
|
663
|
+
reason = parsed.reason;
|
|
664
|
+
}
|
|
665
|
+
catch { /* ignore */ }
|
|
666
|
+
(0, runtime_1.emitNervesEvent)({
|
|
667
|
+
component: "engine",
|
|
668
|
+
event: "engine.no_response",
|
|
669
|
+
message: "agent declined to respond in group chat",
|
|
670
|
+
meta: { ...(reason ? { reason } : {}) },
|
|
671
|
+
});
|
|
672
|
+
messages.push(msg);
|
|
673
|
+
const silenced = "(silenced)";
|
|
674
|
+
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: silenced });
|
|
675
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, silenced);
|
|
676
|
+
outcome = "no_response";
|
|
677
|
+
done = true;
|
|
678
|
+
continue;
|
|
679
|
+
}
|
|
680
|
+
// Check for go_inward sole call: intercept before tool execution
|
|
681
|
+
const isSoleGoInward = result.toolCalls.length === 1 && result.toolCalls[0].name === "go_inward";
|
|
682
|
+
if (isSoleGoInward) {
|
|
683
|
+
let parsedArgs = {};
|
|
684
|
+
try {
|
|
685
|
+
parsedArgs = JSON.parse(result.toolCalls[0].arguments);
|
|
686
|
+
}
|
|
687
|
+
catch { /* ignore */ }
|
|
688
|
+
/* v8 ignore next -- defensive: content always string from model @preserve */
|
|
689
|
+
const content = typeof parsedArgs.content === "string" ? parsedArgs.content : "";
|
|
690
|
+
const answer = typeof parsedArgs.answer === "string" ? parsedArgs.answer : undefined;
|
|
691
|
+
const parsedMode = parsedArgs.mode === "reflect" || parsedArgs.mode === "plan" || parsedArgs.mode === "relay"
|
|
692
|
+
? parsedArgs.mode
|
|
693
|
+
: undefined;
|
|
694
|
+
const mode = parsedMode || "reflect";
|
|
695
|
+
// Emit outward answer if provided
|
|
696
|
+
if (answer) {
|
|
697
|
+
callbacks.onClearText?.();
|
|
698
|
+
callbacks.onTextChunk(answer);
|
|
699
|
+
}
|
|
700
|
+
// Build handoff packet and enqueue
|
|
701
|
+
const handoffContent = buildGoInwardHandoffPacket({
|
|
702
|
+
content,
|
|
703
|
+
mode,
|
|
704
|
+
delegationDecision: options?.delegationDecision,
|
|
705
|
+
currentSession: options?.toolContext?.currentSession ?? null,
|
|
706
|
+
currentObligation: options?.currentObligation ?? null,
|
|
707
|
+
outwardClosureRequired: options?.delegationDecision?.outwardClosureRequired ?? false,
|
|
708
|
+
});
|
|
709
|
+
const pendingDir = (0, pending_1.getInnerDialogPendingDir)((0, identity_2.getAgentName)());
|
|
710
|
+
const currentSession = options?.toolContext?.currentSession;
|
|
711
|
+
const isInnerChannel = currentSession?.friendId === "self" && currentSession?.channel === "inner";
|
|
712
|
+
const envelope = {
|
|
713
|
+
from: (0, identity_2.getAgentName)(),
|
|
714
|
+
friendId: "self",
|
|
715
|
+
channel: "inner",
|
|
716
|
+
key: "dialog",
|
|
717
|
+
content: handoffContent,
|
|
718
|
+
timestamp: Date.now(),
|
|
719
|
+
mode,
|
|
720
|
+
...(currentSession && !isInnerChannel ? {
|
|
721
|
+
delegatedFrom: {
|
|
722
|
+
friendId: currentSession.friendId,
|
|
723
|
+
channel: currentSession.channel,
|
|
724
|
+
key: currentSession.key,
|
|
725
|
+
},
|
|
726
|
+
obligationStatus: "pending",
|
|
727
|
+
} : {}),
|
|
728
|
+
};
|
|
729
|
+
(0, pending_1.queuePendingMessage)(pendingDir, envelope);
|
|
730
|
+
if (currentSession && !isInnerChannel) {
|
|
731
|
+
try {
|
|
732
|
+
(0, obligations_1.createObligation)((0, identity_2.getAgentRoot)(), {
|
|
733
|
+
origin: {
|
|
734
|
+
friendId: currentSession.friendId,
|
|
735
|
+
channel: currentSession.channel,
|
|
736
|
+
key: currentSession.key,
|
|
737
|
+
},
|
|
738
|
+
content,
|
|
739
|
+
});
|
|
740
|
+
}
|
|
741
|
+
catch {
|
|
742
|
+
/* v8 ignore next -- defensive: obligation store write failure should not break go_inward @preserve */
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
try {
|
|
746
|
+
await (0, socket_client_1.requestInnerWake)((0, identity_2.getAgentName)());
|
|
405
747
|
}
|
|
748
|
+
catch { /* daemon may not be running */ }
|
|
749
|
+
sawGoInward = true;
|
|
750
|
+
messages.push(msg);
|
|
751
|
+
const ack = "(going inward)";
|
|
752
|
+
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: ack });
|
|
753
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, ack);
|
|
754
|
+
(0, runtime_1.emitNervesEvent)({
|
|
755
|
+
component: "engine",
|
|
756
|
+
event: "engine.go_inward",
|
|
757
|
+
message: "taking thread inward",
|
|
758
|
+
meta: { mode, hasAnswer: answer !== undefined, contentSnippet: content.slice(0, 80) },
|
|
759
|
+
});
|
|
760
|
+
outcome = "go_inward";
|
|
761
|
+
done = true;
|
|
406
762
|
continue;
|
|
407
763
|
}
|
|
408
764
|
messages.push(msg);
|
|
409
|
-
// SHARED: execute tools (final_answer in mixed calls
|
|
765
|
+
// SHARED: execute tools (final_answer, no_response, go_inward in mixed calls are rejected inline)
|
|
410
766
|
for (const tc of result.toolCalls) {
|
|
411
767
|
if (signal?.aborted)
|
|
412
768
|
break;
|
|
@@ -417,6 +773,20 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
417
773
|
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
418
774
|
continue;
|
|
419
775
|
}
|
|
776
|
+
// Intercept no_response in mixed call: reject it
|
|
777
|
+
if (tc.name === "no_response") {
|
|
778
|
+
const rejection = "rejected: no_response must be the only tool call. call no_response alone when you want to stay silent.";
|
|
779
|
+
messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
780
|
+
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
781
|
+
continue;
|
|
782
|
+
}
|
|
783
|
+
// Intercept go_inward in mixed call: reject it
|
|
784
|
+
if (tc.name === "go_inward") {
|
|
785
|
+
const rejection = "rejected: go_inward must be the only tool call. finish your other work first, then call go_inward alone.";
|
|
786
|
+
messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
787
|
+
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
788
|
+
continue;
|
|
789
|
+
}
|
|
420
790
|
let args = {};
|
|
421
791
|
try {
|
|
422
792
|
args = JSON.parse(tc.arguments);
|
|
@@ -424,7 +794,28 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
424
794
|
catch {
|
|
425
795
|
/* ignore */
|
|
426
796
|
}
|
|
797
|
+
if (tc.name === "send_message" && args.friendId === "self") {
|
|
798
|
+
sawSendMessageSelf = true;
|
|
799
|
+
}
|
|
800
|
+
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
801
|
+
if (tc.name === "query_session")
|
|
802
|
+
sawQuerySession = true;
|
|
803
|
+
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
804
|
+
if (tc.name === "bridge_manage")
|
|
805
|
+
sawBridgeManage = true;
|
|
806
|
+
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
807
|
+
if (isExternalStateQuery(tc.name, args))
|
|
808
|
+
sawExternalStateQuery = true;
|
|
427
809
|
const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
|
|
810
|
+
const toolLoop = (0, tool_loop_1.detectToolLoop)(toolLoopState, tc.name, args);
|
|
811
|
+
if (toolLoop.stuck) {
|
|
812
|
+
const rejection = `loop guard: ${toolLoop.message}`;
|
|
813
|
+
callbacks.onToolStart(tc.name, args);
|
|
814
|
+
callbacks.onToolEnd(tc.name, argSummary, false);
|
|
815
|
+
messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
816
|
+
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
817
|
+
continue;
|
|
818
|
+
}
|
|
428
819
|
// Confirmation check for mutate tools
|
|
429
820
|
if ((0, tools_1.isConfirmationRequired)(tc.name) && !options?.skipConfirmation) {
|
|
430
821
|
let decision = "denied";
|
|
@@ -444,13 +835,15 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
444
835
|
let toolResult;
|
|
445
836
|
let success;
|
|
446
837
|
try {
|
|
447
|
-
|
|
838
|
+
const execToolFn = options?.execTool ?? tools_1.execTool;
|
|
839
|
+
toolResult = await execToolFn(tc.name, args, augmentedToolContext ?? options?.toolContext);
|
|
448
840
|
success = true;
|
|
449
841
|
}
|
|
450
842
|
catch (e) {
|
|
451
843
|
toolResult = `error: ${e}`;
|
|
452
844
|
success = false;
|
|
453
845
|
}
|
|
846
|
+
(0, tool_loop_1.recordToolOutcome)(toolLoopState, tc.name, args, toolResult, success);
|
|
454
847
|
callbacks.onToolEnd(tc.name, argSummary, success);
|
|
455
848
|
messages.push({ role: "tool", tool_call_id: tc.id, content: toolResult });
|
|
456
849
|
providerRuntime.appendToolOutput(tc.id, toolResult);
|
|
@@ -461,6 +854,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
461
854
|
// Abort is not an error — just stop cleanly
|
|
462
855
|
if (signal?.aborted) {
|
|
463
856
|
stripLastToolCalls(messages);
|
|
857
|
+
outcome = "aborted";
|
|
464
858
|
break;
|
|
465
859
|
}
|
|
466
860
|
// Context overflow: trim aggressively and retry once
|
|
@@ -495,6 +889,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
495
889
|
});
|
|
496
890
|
if (aborted) {
|
|
497
891
|
stripLastToolCalls(messages);
|
|
892
|
+
outcome = "aborted";
|
|
498
893
|
break;
|
|
499
894
|
}
|
|
500
895
|
providerRuntime.resetTurnState(messages);
|
|
@@ -510,6 +905,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
510
905
|
meta: {},
|
|
511
906
|
});
|
|
512
907
|
stripLastToolCalls(messages);
|
|
908
|
+
outcome = "errored";
|
|
513
909
|
done = true;
|
|
514
910
|
}
|
|
515
911
|
}
|
|
@@ -518,7 +914,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
518
914
|
trace_id: traceId,
|
|
519
915
|
component: "engine",
|
|
520
916
|
message: "runAgent turn completed",
|
|
521
|
-
meta: { done },
|
|
917
|
+
meta: { done, sawGoInward, sawQuerySession, sawBridgeManage },
|
|
522
918
|
});
|
|
523
|
-
return { usage: lastUsage };
|
|
919
|
+
return { usage: lastUsage, outcome, completion };
|
|
524
920
|
}
|