use std::{io::ErrorKind, path::Path};
use crate::errors::{CoreError, CoreResult};
const OBSOLETE_SPECIALIST_AGENT_REL_PATHS: &[&str] = &[
"ito-orchestrator-planner.md",
"ito-orchestrator-researcher.md",
"ito-orchestrator-reviewer.md",
"ito-orchestrator-worker.md",
"ito-orchestrator-planner/SKILL.md",
"ito-orchestrator-researcher/SKILL.md",
"ito-orchestrator-reviewer/SKILL.md",
"ito-orchestrator-worker/SKILL.md",
];
pub(super) fn remove_obsolete_specialist_agents(agent_dir: &Path) -> CoreResult<()> {
for obsolete_rel_path in OBSOLETE_SPECIALIST_AGENT_REL_PATHS {
remove_obsolete_specialist_agent(agent_dir, obsolete_rel_path)?;
}
Ok(())
}
pub(super) fn remove_obsolete_specialist_agent(
agent_dir: &Path,
obsolete_rel_path: &str,
) -> CoreResult<()> {
let obsolete = agent_dir.join(obsolete_rel_path);
let metadata = match std::fs::symlink_metadata(&obsolete) {
Ok(metadata) => metadata,
Err(err) if err.kind() == ErrorKind::NotFound => return Ok(()),
Err(err) => {
return Err(CoreError::io(
format!("reading {}", obsolete.display()),
err,
));
}
};
let file_type = metadata.file_type();
if file_type.is_file() || file_type.is_symlink() {
std::fs::remove_file(&obsolete)
.map_err(|e| CoreError::io(format!("removing {}", obsolete.display()), e))?;
} else {
return Err(CoreError::Validation(format!(
"expected obsolete specialist agent path to be a file or symlink: {}. Remove the directory manually and rerun the install.",
obsolete.display()
)));
}
prune_empty_agent_dirs(agent_dir, obsolete.parent())
}
fn prune_empty_agent_dirs(agent_dir: &Path, start: Option<&Path>) -> CoreResult<()> {
let mut current = start.map(Path::to_path_buf);
while let Some(dir) = current {
if dir == agent_dir || !dir.starts_with(agent_dir) {
break;
}
let is_empty = {
let mut entries = std::fs::read_dir(&dir)
.map_err(|e| CoreError::io(format!("reading {}", dir.display()), e))?;
entries
.next()
.transpose()
.map_err(|e| CoreError::io(format!("reading {}", dir.display()), e))?
.is_none()
};
if !is_empty {
break;
}
std::fs::remove_dir(&dir)
.map_err(|e| CoreError::io(format!("removing {}", dir.display()), e))?;
current = dir.parent().map(Path::to_path_buf);
}
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn removes_regular_specialist_files_and_prunes_empty_dirs() {
let tempdir = tempfile::tempdir().expect("tempdir");
let agent_dir = tempdir.path().join(".agents/skills");
let obsolete_dir = agent_dir.join("ito-orchestrator-planner");
std::fs::create_dir_all(&obsolete_dir).expect("obsolete dir");
let obsolete = obsolete_dir.join("SKILL.md");
std::fs::write(&obsolete, "legacy specialist asset").expect("obsolete file");
remove_obsolete_specialist_agent(&agent_dir, "ito-orchestrator-planner/SKILL.md")
.expect("cleanup succeeds");
assert!(!obsolete.exists(), "obsolete file should be removed");
assert!(
!obsolete_dir.exists(),
"empty legacy specialist directory should be pruned"
);
}
#[cfg(unix)]
#[test]
fn removes_broken_specialist_symlinks_and_prunes_empty_dirs() {
use std::os::unix::fs::symlink;
let tempdir = tempfile::tempdir().expect("tempdir");
let agent_dir = tempdir.path().join(".agents/skills");
let obsolete_dir = agent_dir.join("ito-orchestrator-planner");
std::fs::create_dir_all(&obsolete_dir).expect("obsolete dir");
let obsolete = obsolete_dir.join("SKILL.md");
symlink("missing-target.md", &obsolete).expect("symlink");
remove_obsolete_specialist_agent(&agent_dir, "ito-orchestrator-planner/SKILL.md")
.expect("cleanup succeeds");
assert!(
!obsolete.exists(),
"broken obsolete symlink should be removed"
);
assert!(
std::fs::symlink_metadata(&obsolete).is_err(),
"removed symlink should no longer have metadata"
);
assert!(
!obsolete_dir.exists(),
"empty legacy specialist directory should be pruned"
);
}
}