/** * Discovery and fuzzy matching helpers for adapters * * Exports types and utilities for: * - Fuzzy matching with Levenshtein distance (finding similar strings) * - Discovery cache management (lazy loading, deduplication) * - Tool/prompt/resource validation with suggestions * * @module @wavespec/kit/discovery */ export * from './types.js'; export * from './fuzzy.js'; export * from './cache.js';