mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
1. Adds SkillScope::Public end-to-end (core + protocol) and loads skills from the public cache directory 2. Improves repo skill discovery by searching upward for the nearest .codex/skills within a git repo 3. Deduplicates skills by name with deterministic ordering to avoid duplicates across sources 4. Fixes garbled “Skill errors” overlay rendering by preventing pending history lines from being injected during the modal 5. Updates the project docs “Skills” intro wording to avoid hardcoded paths
16 lines
383 B
Rust
16 lines
383 B
Rust
pub mod injection;
|
|
pub mod loader;
|
|
pub mod manager;
|
|
pub mod model;
|
|
pub mod public;
|
|
pub mod render;
|
|
|
|
pub(crate) use injection::SkillInjections;
|
|
pub(crate) use injection::build_skill_injections;
|
|
pub use loader::load_skills;
|
|
pub use manager::SkillsManager;
|
|
pub use model::SkillError;
|
|
pub use model::SkillLoadOutcome;
|
|
pub use model::SkillMetadata;
|
|
pub use render::render_skills_section;
|