Right now, Phase 1 is an open-source CLI. It wraps standard static analysis tools (Semgrep, Bandit, pip-audit, Safety, and TruffleHog) and runs them in parallel using asyncio.
Instead of dealing with 5 different JSON formats, It maps everything to a unified finding schema with CWE and OWASP Top 10 tags, creates a deterministic hash for each finding, and deduplicates the noise. It outputs to a clean terminal UI or SARIF 2.1.0 for CI integration.
You can install it using (pip install velonus)
I'd love for you try it out on your messiest Python repos and let me know how the deduplication holds up. Happy to answer any technical questions about the architecture.
(venv) $ velonus scan data
Traceback (most recent call last):
File "~/venv/bin/velonus", line 5, in <module>
from shield.main import app
File "~/venv/lib/python3.12/site-packages/shield/main.py", line 15, in <module>
from shield.commands import auth, config, scan
File "~/venv/lib/python3.12/site-packages/shield/commands/scan.py", line 32, in <module>
from scanner.pipeline import ScanPipeline
ModuleNotFoundError: No module named 'scanner'