Skip to main content

vulkro cache and vulkro config

Two maintenance commands: cache manages the per-file extraction cache, and config inspects Vulkro's static pattern configuration.

vulkro cache

Manage the per-file extraction cache that speeds up repeat scans.

vulkro cache clear
Sub-commandDescription
clearDrop every per-file extraction cache row across all projects. Cheap and idempotent; the next scan re-populates from scratch.

Individual scans can bypass the cache for one run with --no-cache (or VULKRO_DISABLE_CACHE=1) instead of clearing it globally.

vulkro config

Inspect and explain Vulkro's static configuration.

vulkro config show-patterns
Sub-commandDescription
show-patternsPrint the hardcoded pattern lists the engine matches against (auth-middleware names, monorepo umbrella dirs, auth-helper body shapes) plus any user-extended additions picked up from vulkro.toml and env vars.

Run show-patterns before defining a custom auth-middleware name: many shapes are already covered by the built-in patterns, so you can extend only what is genuinely missing (via VULKRO_AUTH_MIDDLEWARE_NAMES and VULKRO_AUTH_HELPER_NAMES).