ring/scripts/codereview/go.mod
Fred Amaral 272aa12556
feat(codereview): implement phase 3 for call graph analysis
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
2026-01-14 02:18:46 -03:00

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
)