What's new Based on early user feedback, Permi can now save your vulnerability scan results in three distinct formats to fit your workflow: --export results.txt – Human-readable plain text for quick reviews. --export results.json – Structured data designed for scripts and CI/CD automation. --export results.md – Clean Markdown, perfect for GitHub documentation or internal wikis. Example To try out the new export feature, ensure you have the latest version installed: bash pip install -U permi permi scan --path ./src --export report.md The exported file includes: Scan metadata: Target path, timestamp, and duration. AI filter summary: Raw findings vs. real findings and noise reduction percentage. Detailed findings: Each vulnerability includes the file path, line number, code snippet, confidence score, and the AI's reasoning. Why this matters Developers told me they wanted to share results with their teams, attach reports to Jira tickets, or archive scans for compliance.…