Zenable builds production-grade tools to help developers use coding agents. One of the key pieces is our CLI, zenable. If you need to assess an existing codebase against your Zenable requirements, you can use zenable check, and now those findings are available in whatever format you need.
We've added SARIF output (--format sarif) conforming to the OASIS SARIF 2.1.0 standard, so you can pipe findings directly into GitHub Advanced
Security, VS Code's SARIF Viewer, or any other tool in the ecosystem. HTML reports give you a shareable, visual summary you can drop into a ticket
or send to a stakeholder. And JSON output is there for scripting and automation.
We also gave the default terminal output a facelift. The new output is easier to scan, includes progress bars while it's running, detailed findings, scope details about what was run, and a finding summary.



Write any format to a file, or combine multiple at once:
zenable check '**/*.py' --format sarif=results.sarif
zenable check '**/*.py' --format text,sarif=results.sarif,json=results.json