{"id":51598861,"url":"https://github.com/jamessanford/gover","last_synced_at":"2026-07-11T20:02:10.996Z","repository":{"id":367832693,"uuid":"1220469053","full_name":"jamessanford/gover","owner":"jamessanford","description":" Inspect Go version info from binaries or running processes","archived":false,"fork":false,"pushed_at":"2026-04-25T00:45:05.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-27T23:07:13.357Z","etag":null,"topics":["ai-generated"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jamessanford.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-24T23:51:43.000Z","updated_at":"2026-04-25T00:44:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jamessanford/gover","commit_stats":null,"previous_names":["jamessanford/gover"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/jamessanford/gover","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamessanford%2Fgover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamessanford%2Fgover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamessanford%2Fgover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamessanford%2Fgover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamessanford","download_url":"https://codeload.github.com/jamessanford/gover/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamessanford%2Fgover/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35374165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-generated"],"created_at":"2026-07-11T20:02:10.234Z","updated_at":"2026-07-11T20:02:10.989Z","avatar_url":"https://github.com/jamessanford.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gover - Go Version Inspector\n\n`gover` shows package version and Go build metadata from binaries or running processes.  Think of it as a cross between `go version -m` and `gops`.\n\nWith no arguments, `gover` scans `/proc` for PIDs to identify Go-based processes.\n\nThis tool was written by agentic AI tools.\n\n\n## Install\n```bash\ngo install github.com/jamessanford/gover@latest\n```\n\n## Example output\n```bash\n# Scan running processes\n\n% sudo gover\nPID    Go Version  Exe                     Go Package                                                                                      Env\n11337  go1.26.2    remote-tsdb-clickhouse  github.com/jamessanford/remote-tsdb-clickhouse@v0.1.0                                           GOMAXPROCS=4\n14600  go1.24.5    blackbox_exporter       github.com/prometheus/blackbox_exporter@v0.27.1-0.20250712065533-b4c6d9dd1d4a                   GOMAXPROCS=4\n37068  go1.26.0    prometheus              github.com/prometheus/prometheus/cmd/prometheus@v0.0.0-20260225185413-54e010926b0a+dirty\n```\n\n```bash\n# Inspect one or more binaries\ngover /usr/bin/grafana $HOME/go/bin/revive\n```\n\n```bash\n# Inspect one or more PIDs\ngover --pid 1234 5678\n```\n\n```bash\n# JSON output\ngover --json /usr/bin/grafana\n{\n  \"exe\": \"/usr/bin/grafana\",\n  \"path\": \"github.com/grafana/grafana/pkg/cmd/grafana\",\n  \"version\": \"devel\",\n  \"go_version\": \"go1.26.1-X:nodwarf5\",\n  \"exe_mtime\": 1774523528,\n  \"package\": \"github.com/grafana/grafana/pkg/cmd/grafana@latest\"\n}\n```\n\n```bash\n# Package output\n% gover --package /usr/bin/tailscale\ntailscale.com/cmd/tailscale@v1.96.4+dirty\n```\n\n\n## Help output\n```bash\nInspect Go version info from binaries or running processes\n\nUsage:\n  gover [flags] [pid|binary...]\n\nFlags:\n  -p, --pid         Inspect PIDs rather than binaries\n  -j, --json        Output JSON\n  -s, --sort        Sort output by Go version\n      --package     Output only the package path@version\n      --no-header   Suppress table headers\n      --debug       Log process scans to stderr\n      --verbose     Include build settings in JSON\n                    Include binary name with --package\n  -h, --help        help for gover\n```\n\n## Similar tools\n\n- [gops](https://github.com/google/gops)\n- [go version -m](https://pkg.go.dev/cmd/go#hdr-Print_Go_version)\n- [gup](https://github.com/nao1215/gup)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamessanford%2Fgover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamessanford%2Fgover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamessanford%2Fgover/lists"}