You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
veripak currently accepts a single package per invocation. To audit a project's dependencies, users must manually extract package names from manifest files and run veripak check once per package. The discover skill integration (and general CLI usability) requires automatic dependency extraction.
Proposed Solution
Add a --from flag to veripak check that accepts a manifest file path:
Problem
veripak currently accepts a single package per invocation. To audit a project's dependencies, users must manually extract package names from manifest files and run
veripak checkonce per package. Thediscoverskill integration (and general CLI usability) requires automatic dependency extraction.Proposed Solution
Add a
--fromflag toveripak checkthat accepts a manifest file path:Behavior
(package, version, ecosystem)tuplesManifest Formats to Support (initial)
requirements.txtpyproject.tomlpom.xml<dependencies>sectionpackage.jsondependencies+devDependenciesDependencies
Complexity
Medium-high. Requires parsers for 4+ formats, integration with batch engine, and CLI changes.