Skip to main content

vulkro export

Export the detected API surface in another format. Where vulkro discover shows the endpoint map interactively, export writes it out for another tool.

Usage

vulkro export [PATH] --target openapi -o openapi.json
ArgumentDescriptionDefault
PATHPath to the project root..

Flags

FlagDescription
--target <TARGET>Export target: openapi (default) or json.
--output, -o <OUTPUT>Write to a file instead of stdout.

Examples

# OpenAPI 3.x of the discovered surface.
vulkro export . --target openapi -o openapi.json

# Raw JSON of the endpoint surface.
vulkro export . --target json > surface.json

Command reference

Generated from vulkro help export on vulkro 0.26.0. This block is the authoritative flag, usage, and exit-code reference for this command; the prose above is the friendly explanation. Do not edit this block by hand; run npm run docs:cli after a release.

Write the discovered API surface in another format.

Export the detected API surface in another format.

Exit code: 0 written (to stdout or `--output`), 2 scan / IO error.

Usage: vulkro export [OPTIONS] [PATH]

Arguments:
[PATH]
Path to the project root (default: current directory)

[default: .]

Options:
--offline
Hard-disable every outbound network call for this run (sets VULKRO_OFFLINE=1). Blocks the CVE feed, the license heartbeat, the update check, webhooks, and any cloud AI endpoint; a loopback model (http://127.0.0.1, http://localhost) is still allowed. Equivalent to exporting VULKRO_OFFLINE=1, and the flag wins when both are set

--target <TARGET>
Export target

[default: openapi]
[possible values: openapi, json]

-o, --output <OUTPUT>
Write to file instead of stdout

-h, --help
Print help (see a summary with '-h')