@botbotgo/agent-harness 0.0.457 → 0.0.458
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const AGENT_HARNESS_VERSION = "0.0.
|
|
1
|
+
export declare const AGENT_HARNESS_VERSION = "0.0.458";
|
|
2
2
|
export declare const AGENT_HARNESS_RELEASE_DATE = "2026-05-04";
|
package/dist/package-version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const AGENT_HARNESS_VERSION = "0.0.
|
|
1
|
+
export const AGENT_HARNESS_VERSION = "0.0.458";
|
|
2
2
|
export const AGENT_HARNESS_RELEASE_DATE = "2026-05-04";
|
|
@@ -152,9 +152,7 @@ export function resolveExecutionWithoutToolEvidenceTextInstruction(request, assi
|
|
|
152
152
|
if (!normalizedText || !hasUnfinishedExecution) {
|
|
153
153
|
return null;
|
|
154
154
|
}
|
|
155
|
-
return hasExecutionEvidence
|
|
156
|
-
? REQUIRED_EXECUTION_CONTINUATION_INSTRUCTION
|
|
157
|
-
: EXECUTION_WITH_TOOL_EVIDENCE_RETRY_INSTRUCTION;
|
|
155
|
+
return hasExecutionEvidence ? REQUIRED_EXECUTION_CONTINUATION_INSTRUCTION : null;
|
|
158
156
|
}
|
|
159
157
|
export function resolveToolCallRecoveryInstruction(error) {
|
|
160
158
|
if (isRepairableWriteTodosEmptyFailure(error))
|