Feature Request
Add Python bindings so users can install via pip and use ClawGuard from Python scripts.
Why
Many AI agent frameworks (LangChain, CrewAI, AutoGen, MetaGPT) are Python-based. Native Python support would expand adoption significantly.
Proposed API
\\python
from clawguard import Scanner
scanner = Scanner()
report = scanner.scan('./path/to/skill')
print(report.critical_count)
print(report.findings)
\\
Implementation Options
- subprocess wrapper calling the Node.js CLI
- Native Python port of core detection engine
- WASM compilation of the TypeScript core