/** * atr_scan_skill MCP tool - Scan SKILL.md content for threats * * Uses scanSkillFull() which only runs skill-targeted rules (scan_target: skill) * to avoid false positives from MCP-oriented rules. * * @module agent-threat-rules/mcp-tools/scan-skill */ import type { ATREngine } from '../engine.js'; export declare function handleScanSkill(engine: ATREngine, args: Record): Promise<{ content: Array<{ type: string; text: string; }>; isError?: boolean; }>; //# sourceMappingURL=scan-skill.d.ts.map