/** * Code-block scanner for marketplace plugin analysis. * * Delegates to the agent-skills compat detectors so that markdown content * inside plugins is analysed with the same rules used for standalone * skill validation. This emits FENCED_SHELL_BLOCK and EXTERNAL_CLI_* * evidence (browser-auth detection lives in scanBrowserAuthEvidence). */ import { type EvidenceRecord } from '@vibe-agent-toolkit/agent-skills'; /** * Scan markdown content for fenced shell blocks and the external-CLI / * browser-auth invocations they may contain. Returns an EvidenceRecord * for each detected pattern. */ export declare function scanCodeBlocks(content: string, filePath: string): EvidenceRecord[]; //# sourceMappingURL=code-block-scanner.d.ts.map