refactor: streamline agent turn handling and background review process

This commit is contained in:
asepharyana
2026-07-20 17:25:23 +07:00
parent 4c186b62d4
commit dd7825b481
14 changed files with 409 additions and 327 deletions
@@ -1,8 +1,8 @@
//! Auto-subagent path resolution.
use std::path::PathBuf;
use std::path::{Path, PathBuf};
/// Resolve paths for auto-subagent scripts.
pub fn auto_subagent_dir(base_dir: &PathBuf) -> PathBuf {
pub fn auto_subagent_dir(base_dir: &Path) -> PathBuf {
base_dir.join("auto-agents")
}