(install_dir: &Path)
| 1020 | } |
| 1021 | |
| 1022 | fn codex_plugin_managed_paths(install_dir: &Path) -> Vec<PathBuf> { |
| 1023 | let mut paths: Vec<PathBuf> = codex_embedded_plugin_files() |
| 1024 | .into_iter() |
| 1025 | .map(|(relative, _)| install_dir.join(relative)) |
| 1026 | .collect(); |
| 1027 | paths.push(install_dir.join("skills/agent-managed-memory/SKILL.md")); |
| 1028 | paths |
| 1029 | } |
| 1030 | |
| 1031 | fn remove_codex_marketplace_entry(home: &Path) -> Result<()> { |
| 1032 | let marketplace_path = codex_personal_marketplace_path(home); |
no test coverage detected