mirror of
https://github.com/LerianStudio/ring
synced 2026-04-21 13:37:27 +00:00
feat(codereview): add call graph analyzers for Go, TS, and Python feat(codereview): add JSON output and markdown impact summary report docs(codereview): add handoff documents for phase 2 and 3 test(codereview): add unit and integration tests for call graph feature refactor(*): standardize all agent and skill names with `ring:` prefix docs(*): update all documentation to use new `ring:` prefix for names
16 lines
366 B
Modula-2
16 lines
366 B
Modula-2
module github.com/lerianstudio/ring/scripts/codereview
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/tools v0.41.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|