2026-07-20 09:04:57 +07:00
|
|
|
//! Auto-subagent path resolution.
|
|
|
|
|
|
2026-07-20 17:22:09 +07:00
|
|
|
use std::path::{Path, PathBuf};
|
2026-07-20 09:04:57 +07:00
|
|
|
|
|
|
|
|
/// Resolve paths for auto-subagent scripts.
|
2026-07-20 17:22:09 +07:00
|
|
|
pub fn auto_subagent_dir(base_dir: &Path) -> PathBuf {
|
2026-07-20 09:04:57 +07:00
|
|
|
base_dir.join("auto-agents")
|
|
|
|
|
}
|