import type { AgentContext } from "../context/AgentContext.js"; import type { Context } from "@steve.kite/stdlib"; import type { Skill } from "./Skill.js"; /** * Loads the one skill catalog used by prompts, slash commands, and future skill consumers. * * Plugin discovery is optional enrichment. If it fails, ordinary filesystem skills remain * available and the agent turn continues. */ export declare function loadAgentSkillCatalog(ctx: Context, context: Pick): Promise;