Go
Manifest
go.mod — parses require directives (both single-line and block form). Version suffixes are stripped.
Import scanning
Uses tree-sitter with the Go grammar. Extracts from import_declaration / import_spec nodes. Handles single imports, grouped imports, aliased imports, and blank imports (_ "pkg").
All Go imports are static — confidence is always high.
Normalization
github.com/foo/bar/baz→github.com/foo/bar(first 3 segments for domain-style paths)golang.org/x/sync→golang.org/x/syncfmt→fmt(stdlib, filtered out)
Stdlib detection
~150 known Go stdlib packages compiled into the binary. Includes nested paths like net/http, encoding/json, etc.
Aliases
None — Go packages use their module path directly.