(
profile_home: &Path,
install_dir: &Path,
)
| 556 | } |
| 557 | |
| 558 | fn install_codex_managed_skill_overlay( |
| 559 | profile_home: &Path, |
| 560 | install_dir: &Path, |
| 561 | ) -> Result<crate::automation::skill_targets::SkillInstallSummary> { |
| 562 | let profile_root = crate::automation::skill_targets::profile_root_for_agent_home(profile_home); |
| 563 | crate::automation::skill_targets::install_managed_skills( |
| 564 | &profile_root, |
| 565 | crate::automation::skill_targets::SkillInstallTarget::Codex, |
| 566 | install_dir, |
| 567 | ) |
| 568 | } |
| 569 | |
| 570 | fn write_codex_plugin_files( |
| 571 | install_dir: &Path, |
no test coverage detected