/** * Frontmatter scanner: emits ALLOWED_TOOLS_LOCAL_SHELL evidence when * SKILL.md frontmatter declares allowed-tools that imply a local shell * environment (Bash/Edit/Write/NotebookEdit). * * Delegates to the agent-skills detector so the rules are consistent * with standalone skill validation. */ import { type EvidenceRecord } from '@vibe-agent-toolkit/agent-skills'; /** * Scan SKILL.md frontmatter (and prose tool references) for compatibility * signals. Returns evidence records for each matched pattern. */ export declare function scanFrontmatter(content: string, filePath: string): EvidenceRecord[]; //# sourceMappingURL=frontmatter-scanner.d.ts.map