mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
Deletes the skill env var dependency prompt feature and its runtime path. env_var entries in skill dependency metadata are now silently ignored during skill loading.
32 lines
1.0 KiB
Rust
32 lines
1.0 KiB
Rust
pub mod config_rules;
|
|
pub mod injection;
|
|
pub(crate) mod invocation_utils;
|
|
pub mod loader;
|
|
pub mod manager;
|
|
mod mention_counts;
|
|
pub mod model;
|
|
pub mod remote;
|
|
pub mod render;
|
|
pub mod system;
|
|
|
|
pub(crate) use invocation_utils::build_implicit_skill_path_indexes;
|
|
pub use invocation_utils::detect_implicit_skill_invocation_for_command;
|
|
pub use manager::SkillsLoadInput;
|
|
pub use manager::SkillsManager;
|
|
pub use mention_counts::build_skill_name_counts;
|
|
pub use model::SkillError;
|
|
pub use model::SkillLoadOutcome;
|
|
pub use model::SkillMetadata;
|
|
pub use model::SkillPolicy;
|
|
pub use model::filter_skill_load_outcome_for_product;
|
|
pub use render::AvailableSkills;
|
|
pub use render::SKILLS_HOW_TO_USE_WITH_ABSOLUTE_PATHS;
|
|
pub use render::SKILLS_HOW_TO_USE_WITH_ALIASES;
|
|
pub use render::SKILLS_INTRO_WITH_ABSOLUTE_PATHS;
|
|
pub use render::SKILLS_INTRO_WITH_ALIASES;
|
|
pub use render::SkillMetadataBudget;
|
|
pub use render::SkillRenderReport;
|
|
pub use render::build_available_skills;
|
|
pub use render::default_skill_metadata_budget;
|
|
pub use render::render_available_skills_body;
|