vulkro ci
Produce a CI-friendly Markdown report: endpoints, findings, and a surface diff if you pass a base ref. Designed to be attached to a pipeline job or posted as a PR comment.
For the exit-code gate itself, use vulkro gate or
vulkro scan with --fail-on; vulkro ci is a reporting command.
Usage
vulkro ci [PATH] -o report.md
| Argument | Description | Default |
|---|---|---|
PATH | Path to the project root. | . |
Flags
| Flag | Description |
|---|---|
--base <BASE> | Optional base ref to include a surface diff. |
--output, -o <OUTPUT> | Write to a file instead of stdout. |
Examples
# Markdown report to a file.
vulkro ci . -o vulkro-ci.md
# Include a surface diff vs main.
vulkro ci . --base origin/main -o vulkro-ci.md
Related
vulkro gate- the fail-on-new-only gate.vulkro scan- the full pipeline and PR-comment formats.- CI/CD integration - wiring Vulkro into pipelines.