export interface SkillDiscoverySettings { enabled?: boolean; enableSkillCommands?: boolean; enableCodexUser?: boolean; enableClaudeUser?: boolean; enableClaudeProject?: boolean; /** * User-facing trust controls for filesystem-discovered skills. Discovery is * on by default: a valid skill placed in a documented project or user * location is loaded without extra configuration ceremony. Setting either of * these to `false` disables that scope while leaving the other scope (and * the `skills.enabled` master switch) intact. * * `enablePiUser` / `enablePiProject` are deprecated legacy aliases for the * same effective setting: an explicitly configured legacy value is honored * only when the corresponding trust flag is not configured. */ trustProjectSkills?: boolean; trustUserSkills?: boolean; /** @deprecated Legacy alias for `trustUserSkills`. */ enablePiUser?: boolean; /** @deprecated Legacy alias for `trustProjectSkills`. */ enablePiProject?: boolean; customDirectories?: string[]; ignoredSkills?: string[]; includeSkills?: string[]; } /** Default trust for a skill scope when neither the trust flag nor its legacy alias is configured. */ export declare const DEFAULT_SKILL_SCOPE_TRUST = true; /** * Resolve whether a skill scope is trusted, honoring the user-facing trust flag * first and the deprecated `enablePiUser` / `enablePiProject` aliases second. * * Because both settings are optional (`undefined` when unconfigured), an * explicitly configured legacy value keeps working, and a fresh install with no * configuration resolves to the zero-config default (`true`). */ export declare function resolveSkillScopeTrust(settings: Pick, scope: "project" | "user"): boolean; export declare const DEFAULT_SKILL_DISCOVERY_SETTINGS: SkillDiscoverySettings; export declare const DEFAULT_DISABLED_EXTENSIONS: string[];