MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / codex_plugin_managed_paths

Function codex_plugin_managed_paths

src/agents/codex.rs:1022–1029  ·  view source on GitHub ↗
(install_dir: &Path)

Source from the content-addressed store, hash-verified

1020}
1021
1022fn 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
1031fn remove_codex_marketplace_entry(home: &Path) -> Result<()> {
1032 let marketplace_path = codex_personal_marketplace_path(home);

Calls 3

collectMethod · 0.80
pushMethod · 0.80

Tested by

no test coverage detected