2026-03-11 05:09:18 +00:00
|
|
|
# cstat
|
|
|
|
|
Terminal CLI tool to examine a codebase through a statistical lens
|
|
|
|
|
|
|
|
|
|
## helpful commands
|
|
|
|
|
```bash
|
|
|
|
|
cstat --help # cli options
|
2026-07-23 08:55:53 +00:00
|
|
|
cstat scorecard --path . --json # machine-readable code complexity cost
|
2026-07-23 05:55:53 +00:00
|
|
|
cstat loc --path . -v # size-shape analysis plus explanations
|
|
|
|
|
cstat test-reachability --path . --json # structured static test/bench reachability
|
2026-03-11 05:09:18 +00:00
|
|
|
```
|