[goose2] MCP Apps: hydrate and replay app payloads in Goose2 (#8632)

Signed-off-by: Andrew Harvard <aharvard@squareup.com>
This commit is contained in:
Andrew Harvard
2026-04-28 11:03:40 -04:00
committed by GitHub
parent e95811966a
commit b59ef3a46f
24 changed files with 1287 additions and 225 deletions
+2 -2
View File
@@ -81,8 +81,8 @@ pub fn playback(log_file_path: &String) -> io::Result<()> {
writeln!(
&errors_file,
"expected:\n{}\ngot:\n{}",
serde_json::to_string(&input_value)?,
serde_json::to_string(&entry_value)?
serde_json::to_string(&entry_value)?,
serde_json::to_string(&input_value)?
)?;
process::exit(1);
}