feat(tui): implement agent turn engine for background processing and enhance input handling

This commit is contained in:
asepharyana
2026-07-20 10:55:09 +07:00
parent da2ed6da25
commit 792695b65a
31 changed files with 603 additions and 153 deletions
+3 -1
View File
@@ -29,7 +29,9 @@ pub fn check_dangerous_pattern(tool_name: &str, args: &serde_json::Value) -> Opt
return Some(format!("Deleting '{}' is too dangerous", path));
}
}
_ => {}
_ => {
tracing::debug!("no guard pattern registered for tool: {tool_name}");
}
}
None
}