Add CLI module files
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-03 06:55:51 +00:00
parent 8b2e98d51e
commit 5fcfa537d8

12
vibeguard/__main__.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""VibeGuard - AI Code Anti-Pattern Detector CLI entry point."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent.parent))
from vibeguard.cli.main import main
if __name__ == "__main__":
main(prog_name="vibeguard")