Codex Handbook
ext/skills/src/config.rs 8 lines
/// Host-supplied configuration used by the skills extension.#[derive(Clone, Debug, Eq, PartialEq)]pub struct SkillsExtensionConfig {    /// Whether the available-skills catalog is included in model context.    pub include_instructions: bool,    /// Whether bundled skills are eligible for discovery.    pub bundled_skills_enabled: bool,}