mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
This change prototypes support for Skills with the CLI. This is an **experimental** feature for internal testing. --------- Co-authored-by: Gav Verma <gverma@openai.com>
10 lines
206 B
Rust
10 lines
206 B
Rust
pub mod loader;
|
|
pub mod model;
|
|
pub mod render;
|
|
|
|
pub use loader::load_skills;
|
|
pub use model::SkillError;
|
|
pub use model::SkillLoadOutcome;
|
|
pub use model::SkillMetadata;
|
|
pub use render::render_skills_section;
|