merge main

This commit is contained in:
Shawn Morreau
2025-11-21 11:08:03 -05:00
22 changed files with 424 additions and 89 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ import { log } from "../utils/cli.ts";
*/
export interface AgentResult {
success: boolean;
output?: string;
error?: string;
output?: string | undefined;
error?: string | undefined;
metadata?: Record<string, unknown>;
}