Add set_output tool (#205)

This commit is contained in:
Mateusz Burzyński
2026-01-29 22:49:00 +00:00
committed by pullfrog[bot]
parent 2daab6fc78
commit c1f8247077
9 changed files with 116 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import type { AgentResult } from "../agents/shared.ts";
import type { MainResult } from "../main.ts";
import { log } from "./cli.ts";
export async function handleAgentResult(result: AgentResult): Promise<MainResult> {
export function handleAgentResult(result: AgentResult): MainResult {
if (!result.success) {
return {
success: false,