/** * Automatic discovery and registration of tools, agents, resources, * prompts, and workflows from the project directory. * * This is a framework-level capability — servers call discoverAll() * during startup and on HMR file changes. The CLI provides configuration * but does not orchestrate discovery directly. * * @module discovery */ export type { DiscoveryConfig, DiscoveryHandler, DiscoveryResult, FileDiscoveryContext, } from "./types.js"; export { discoverAll } from "./discovery-engine.js"; export { createProjectDiscoveryConfig, DEFAULT_PROJECT_DISCOVERY_DIRS, } from "./project-discovery-config.js"; export { clearTrackedAgents, createEmptyDiscoveryResult, filenameToId, filePathToPattern, } from "./discovery-utils.js"; export { clearTranspileCache } from "./transpiler.js"; export { validateProviderConfig, type ValidationResult } from "./provider-config-validator.js"; //# sourceMappingURL=index.d.ts.map