Available scoped cache eviction through cache clear:
vp cache clear
vp cache clear --task <task-name>
vp cache clear --package <package-name>Examples:
vp cache clear
vp cache clear --task build
vp cache clear --package @my/abcvp cache clear: evict all cache entries.vp cache clear --task build: evict entries for task namebuildacross workspace.vp cache clear --package @my/abc: evict entries for package@my/abcacross all tasks.
Matching is exact (no wildcard/regex in this RFC).
--taskand--packageare mutually exclusive.- No flag means full clear.
- Success message includes cleared count.
- Non-zero exit only on invalid args or storage errors.