vexal
v1.5.6
Published
Developer workflow CLI with dependency graph, AI tooling, and repo automation.
Downloads
263
Readme
vexal
Developer workflow CLI with dependency graph, AI tooling, and repo automation.
Installation
npm install -g vexalUsage
vx [command]Commands
vx overview— repo structure at a glance: top dependents, file count, edge countvx deps <file>— what a file imports and what depends on itvx impact <file>— blast radius: all files affected if this file changesvx init— initialize vexal and build the dependency graphvx pr— AI-assisted PR generation based on your commit historyvx todos— find all TODO comments in your codebasevx fixme— find all FIXME comments in your codebase
Why vexal
Tested on Excalidraw, a real well-maintained open-source monorepo:
$ grep -r "@excalidraw/common" .
# 6 callers
$ vx impact packages/excalidraw/common/index.ts
# 290 files affected284 files completely missed — they import via @excalidraw/common, a path alias grep can't follow. A dev relying on grep would have shipped a breaking change across 284 files they didn't know existed.
