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-command | Description |
|---|---|
clear | Drop 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-command | Description |
|---|---|
show-patterns | Print 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).
Related
vulkro scan---no-cacheand the auth-pattern env vars.- Baselines explained - baseline vs cache.