mirror of
https://github.com/openai/codex.git
synced 2026-04-29 02:41:12 +03:00
## Summary - move skill loading and management into codex-core-skills - leave codex-core with the thin integration layer and shared wiring ## Testing - CI --------- Co-authored-by: Codex <noreply@openai.com>
10 lines
308 B
Rust
10 lines
308 B
Rust
pub(crate) use codex_skills::install_system_skills;
|
|
pub(crate) use codex_skills::system_cache_root_dir;
|
|
|
|
use std::path::Path;
|
|
|
|
pub(crate) fn uninstall_system_skills(codex_home: &Path) {
|
|
let system_skills_dir = system_cache_root_dir(codex_home);
|
|
let _ = std::fs::remove_dir_all(&system_skills_dir);
|
|
}
|