/** * Detector: MARKETPLACE_PLUGIN_SOURCE_MISSING * * Pure function — no I/O. Consumes a MarketplaceInventory and returns a * ValidationIssue for each path-sourced plugin declaration whose resolved * path does not exist on disk. Git/npm/unknown source types are out of scope * and are silently skipped. */ import type { ValidationIssue } from '@vibe-agent-toolkit/agent-schema'; import type { MarketplaceInventory } from '../types.js'; export declare function detectMarketplacePluginSourceMissing(inv: MarketplaceInventory, locationRoot: string): ValidationIssue[]; //# sourceMappingURL=marketplace-source-missing.d.ts.map