for some time,\nbut they weren't documented. Do that.\n\n`goversion` doesn't belong here, as it was moved to `gotooltest`.\n\n`TMPDIR` was slightly wrong; it has started with a period for some time,\nto ensure that tools like `go list ./...` don't descend into it.", "is_bot": false, "headline": "testscript: update docs on set variables", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-08-22T10:17:05Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "c16c0a26aefb7d22d09791cc724b392fa061a4f7", "body": null, "is_bot": false, "headline": "testscript: remove leading newline before results", "author_name": "John Arundel", "author_login": "bitfield", "committed_at": "2022-08-22T08:40:39Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0d96cbeaca6d36184f6712033f98e3d1b98673c0", "body": null, "is_bot": false, "headline": "Use 0o prefix for octal literals", "author_name": "John Arundel", "author_login": "bitfield", "committed_at": "2022-08-22T08:40:28Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "57a71e030224bd7a0ea9eb7b5c60b91dbe48c11a", "body": null, "is_bot": false, "headline": "Trim '.txtar' extension from subtest name", "author_name": "John Arundel", "author_login": "bitfield", "committed_at": "2022-08-20T16:27:41Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "77fe68fd64d5ff8e87842e8ff370837f3dc33fd1", "body": "They used args[0], which is the first argument to the command,\nrather than the command name itself:\n\n\t> gofumpt foo.go\n\tFAIL: [...] use 'exec foo.go' rather than 'foo.go' (because RequireExplicitExec is enabled)\n\nI believe I introduced this regression when refactoring the pull request\ndue to Roger's\n[…]\n does not produce stdout nor stderr.\nThe change seems easy enough to review manually,\nand our tests don't strictly check all error messages anyway.\n\nWhile here, remove the unnecessary use of -verbose.", "is_bot": false, "headline": "testscript: fix RequireExplicitExec error messages", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-08-04T14:54:08Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "bb36173db5cf27fb334e48a224d98dfbf713dda8", "body": "They used args[0], which is the first argument to the command,\nrather than the command name itself:\n\n\t> gofumpt foo.go\n\tFAIL: [...] use 'exec foo.go' rather than 'foo.go' (because RequireExplicitExec is enabled)\n\nI believe I introduced this regression when refactoring the pull request\ndue to Roger's\n[…]\n does not produce stdout nor stderr.\nThe change seems easy enough to review manually,\nand our tests don't strictly check all error messages anyway.\n\nWhile here, remove the unnecessary use of -verbose.", "is_bot": false, "headline": "testscript: fix RequireExplicitExec error messages", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-08-03T08:32:56Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "24313847d41c3559138ddd35a8c1ece8d7bfe550", "body": "From Go 1.19, the build constraint 'unix' proposed in golang/go#20322 is\nsatisfied by any sufficiently Unix-like value of GOOS, as defined by\nsrc/go/build/syslist.go. This commit adds a predefined 'unix' condition\nwith the same meaning, available for use in test scripts. The condition\nis satisfied if the target GOOS is one of the list of Unix-like systems\ndefined in 'imports.UnixOS'.\n\nFixes #166.\n\nCo-authored-by: Daniel Martí \u003cmvdan@mvdan.cc>", "is_bot": false, "headline": "testscript: add 'unix' condition", "author_name": "John Arundel", "author_login": "bitfield", "committed_at": "2022-07-28T14:18:44Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "8da7db87cbaa3ce88c8999f25ee2a61deb855001", "body": "From Go 1.19, the build constraint 'unix' proposed in golang/go#20322 is\nsatisfied by any sufficiently Unix-like value of GOOS, as defined by\nsrc/go/build/syslist.go. This commit adds a 'UnixOS' list containing the\nvalues of GOOS that would satisfy the 'unix' constraint in Go 1.19.\n\nCo-authored-by: Paul Jolly \u003cpaul@myitcv.io>", "is_bot": false, "headline": "imports: add 'UnixOS' list of Unix-like systems", "author_name": "John Arundel", "author_login": "bitfield", "committed_at": "2022-07-28T14:18:44Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "9d15b660d1d64391571fc7befe7dc128590a9ea3", "body": "We also document how top-level commands fed to RunMain work with and\nwithout \"exec\" the same way, and how RequireExplicitExec can drop\nbackwards compatibility for greater consistency.\n\nFixes #163.", "is_bot": false, "headline": "testscript: add Params.RequireExplicitExec", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-07-06T19:45:32Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "af73bbc5c731c56393fcbc15274944fb589ccbcc", "body": "For backwards compatibility, both testscript and goproxytest, which used\r\nto glob on `*.txt`, now look for both file extensions.\r\nNote that this required a bit of a refactor in testscript,\r\nas we cannot use a single glob expression to accomplish this.\r\n\r\nCode which produces files, such as txtar-addm\n[…]\nr, the diff churn would make this patch harder to review.\r\nIf a future version of go-internal only supports txtar extensions,\r\nthen it could replace all of those extensions accordingly.\r\n\r\nFixes #126.", "is_bot": false, "headline": "all: add support for txtar extension and prefer it (#159)", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-06-24T10:42:57Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "e9142ea72799679bef404f3a4ae63012aa4c9577", "body": "flag.ExitOnError will exit 0 for -h/-help, while the flag.PanicOnError\noverride in runCoverSubcommand was always exiting 2, making the\nsuccess/failure of running a command with -hhelp depend on whether\ncoverage is active.", "is_bot": false, "headline": "testscript: exit 0 in runCoverSubcommand if -help is used", "author_name": "Filippo Valsorda", "author_login": "FiloSottile", "committed_at": "2022-06-21T12:32:36Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "3b43157f323660f3bc1875a91bca5b697756ba7b", "body": "While here, bump gotip and the action versions.", "is_bot": false, "headline": "drop Go 1.16, add Go 1.18 (#158)", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-06-20T15:13:22Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "009359f0a81056fd155119a185c78dc37800f828", "body": "Otherwise, commands like `go mod tidy` will try to walk into the default\nGOPATH directory. At best, that's a waste of resources, since\ndirectories like GOMODPATH may contain lots of files. At worst, it\nresults in errors, as directories in GOMODPATH are not valid import paths:\n\n\t--- FAIL: TestScripts\n[…]\nath \"mod/gopath/pkg/mod/fruit.com@v1.1.0/fruit\" should not have @version\n\nWe add the test in goproxytest, as goproxytest already uses gotooltest,\nand we need an external module to reproduce the error.", "is_bot": false, "headline": "gotooltest: move default GOPATH out of the main module", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2022-04-22T15:25:52Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "3461ca1f2345421c6d6d05407a3ac0381bbd5c42", "body": null, "is_bot": false, "headline": "testscript: add go version conditions", "author_name": "Tom Payne", "author_login": "twpayne", "committed_at": "2022-03-12T16:09:53Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "635e0f0cfef5b8a3d60d1fcbd1bf5524f82bcfae", "body": "Trivia: the first defined Go version build constraint is go1.1.", "is_bot": false, "headline": "gotooltest: fix Go version regular expression", "author_name": "Tom Payne", "author_login": "twpayne", "committed_at": "2022-03-12T16:09:53Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b00b0791a63f23e694536b22df83152cffbc72db", "body": null, "is_bot": false, "headline": "testscript: add gc and gccgo conditions", "author_name": "Tom Payne", "author_login": "twpayne", "committed_at": "2022-03-12T16:09:53Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f1aca1d6f5fac8a207b72c9a084fa25fbee0e24e", "body": null, "is_bot": false, "headline": "testscript: tidy up condition logic", "author_name": "Tom Payne", "author_login": "twpayne", "committed_at": "2022-03-12T16:09:53Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b66946f698c53fa874bf0bb13a244a6658d9e365", "body": "There's no need to use it and every dependency lost is good.", "is_bot": false, "headline": "testscript: remove errgo dependency (#155)", "author_name": "Roger Peppe", "author_login": "rogpeppe", "committed_at": "2022-03-09T10:19:52Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f3cb5c2c6412a18a724f11dd790e0d676ff9ff3a", "body": "This lets us wait for an individual background command rather\r\nthan all of them at once.", "is_bot": false, "headline": "testscript: support named background commands (#152)", "author_name": "Roger Peppe", "author_login": "rogpeppe", "committed_at": "2022-01-12T17:50:52Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "dc66b3287aa4a31065a2da696768d9234f57316d", "body": "When a script has failed, the output of the commands running in the\r\nbackground can be useful to see, so display it then and also in verbose\r\nmode.", "is_bot": false, "headline": "testscript: print background command output on failure (#148)", "author_name": "Roger Peppe", "author_login": "rogpeppe", "committed_at": "2022-01-12T13:48:27Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "115ce09fd6b421993aafa8cdae0171429e9bd2c4", "body": null, "is_bot": false, "headline": "imports: Update goosList and goarchList", "author_name": "Tom Payne", "author_login": "twpayne", "committed_at": "2021-10-23T09:48:30Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "426834f3785d4a82afa50fcae091b69ce53fc5e1", "body": "In https://go-review.googlesource.com/c/go/+/354632,\none of the struct field names in corpusEntry got renamed.\n\nA minor change with a very easy fix.\nStill, this probably signals that we shouldn't release a tagged version\nwith Go 1.18 support just yet, as it's still in flux.\n\nBump the Go tip version we test against, too.", "is_bot": false, "headline": "testscript: adapt to another Go 1.18 tip change", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2021-10-14T10:30:43Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "86f73c5174517f64a171ff56b0fc5252242753db", "body": "Fuzzing support brought a new parameter to MainStart,\nas well as more methods on testDeps.\nUse build tags to support those without breaking 1.16 nor 1.17.\n\nWhile at it, bump CI to test the two latest Go versions,\nand run 1.17's gofmt, as CI demands it.\n\nFinally, make CI also test with Go's master version,\nto ensure that we are compatible with it.\nWe pin a specific commit, since that keeps CI stable.\n\nFixes #144.\n\nCo-authored-by: Roger Peppe \u003crogpeppe@gmail.com>", "is_bot": false, "headline": "testscript: add support for Go master aka 1.18", "author_name": "Daniel Martí", "author_login": "mvdan", "committed_at": "2021-09-23T15:10:22Z", "body_truncated": false, "is_coding_agent": false } ], "releases_count": 28, "commits_last_year": 9, "latest_release_at": "2026-05-28T10:29:43Z", "latest_release_tag": "v1.15.0", "releases_from_tags": false, "days_since_last_push": 26, "active_weeks_last_year": 5, "days_since_latest_release": 61, "mean_days_between_releases": 211.4 }, "community": { "has_readme": true, "has_license": true, "has_description": true, "has_contributing": false, "health_percentage": 42, "has_issue_template": false, "has_code_of_conduct": false, "has_pull_request_template": false }, "ecosystem": { "packages": [ { "name": "github.com/rogpeppe/go-internal", "exists": true, "license": null, "keywords": [], "ecosystem": "go", "matches_repo": true, "registry_url": "https://pkg.go.dev/github.com/rogpeppe/go-internal", "is_deprecated": false, "latest_version": "v1.15.0", "repository_url": "https://github.com/rogpeppe/go-internal", "versions_count": 45, "total_downloads": null, "dependents_count": null, "deprecation_note": null, "maintainers_count": null, "monthly_downloads": null, "first_published_at": null, "latest_published_at": "2026-04-17T09:53:34Z", "latest_version_yanked": null, "days_since_latest_publish": 102 } ] }, "popularity": { "forks": 89, "stars": 988, "watchers": 16, "fork_history": { "days": [ { "date": "2018-10-22", "count": 1 }, { "date": "2018-11-05", "count": 2 }, { "date": "2018-11-06", "count": 1 }, { "date": "2019-05-05", "count": 1 }, { "date": "2019-05-27", "count": 1 }, { "date": "2019-07-10", "count": 1 }, { "date": "2019-07-30", "count": 1 }, { "date": "2019-08-09", "count": 1 }, { "date": "2019-08-13", "count": 1 }, { "date": "2020-04-22", "count": 1 }, { "date": "2020-05-04", "count": 1 }, { "date": "2020-07-14", "count": 1 }, { "date": "2020-09-08", "count": 1 }, { "date": "2020-09-22", "count": 1 }, { "date": "2020-09-23", "count": 1 }, { "date": "2020-10-04", "count": 1 }, { "date": "2020-10-12", "count": 1 }, { "date": "2020-10-18", "count": 1 }, { "date": "2020-10-28", "count": 1 }, { "date": "2020-11-14", "count": 1 }, { "date": "2020-11-16", "count": 1 }, { "date": "2020-11-18", "count": 1 }, { "date": "2021-01-19", "count": 1 }, { "date": "2021-01-22", "count": 1 }, { "date": "2021-02-21", "count": 1 }, { "date": "2021-03-28", "count": 1 }, { "date": "2021-04-26", "count": 1 }, { "date": "2021-05-02", "count": 1 }, { "date": "2021-05-31", "count": 1 }, { "date": "2021-10-25", "count": 1 }, { "date": "2021-12-20", "count": 1 }, { "date": "2022-01-31", "count": 1 }, { "date": "2022-02-28", "count": 1 }, { "date": "2022-04-18", "count": 1 }, { "date": "2022-04-29", "count": 1 }, { "date": "2022-05-20", "count": 1 }, { "date": "2022-06-06", "count": 1 }, { "date": "2022-06-21", "count": 1 }, { "date": "2022-07-24", "count": 1 }, { "date": "2022-07-26", "count": 1 }, { "date": "2022-08-04", "count": 1 }, { "date": "2022-08-25", "count": 1 }, { "date": "2022-09-08", "count": 1 }, { "date": "2022-10-27", "count": 1 }, { "date": "2022-11-25", "count": 1 }, { "date": "2022-12-14", "count": 1 }, { "date": "2023-01-02", "count": 1 }, { "date": "2023-01-23", "count": 1 }, { "date": "2023-02-02", "count": 1 }, { "date": "2023-02-15", "count": 1 }, { "date": "2023-03-09", "count": 1 }, { "date": "2023-03-28", "count": 1 }, { "date": "2023-05-02", "count": 1 }, { "date": "2023-05-07", "count": 1 }, { "date": "2023-08-07", "count": 1 }, { "date": "2023-10-03", "count": 1 }, { "date": "2023-12-23", "count": 1 }, { "date": "2023-12-29", "count": 1 }, { "date": "2024-02-16", "count": 1 }, { "date": "2024-02-19", "count": 1 }, { "date": "2024-04-16", "count": 1 }, { "date": "2024-06-25", "count": 1 }, { "date": "2024-06-28", "count": 1 }, { "date": "2024-07-26", "count": 1 }, { "date": "2024-08-24", "count": 1 }, { "date": "2024-09-12", "count": 1 }, { "date": "2024-10-04", "count": 1 }, { "date": "2024-10-05", "count": 1 }, { "date": "2024-10-22", "count": 1 }, { "date": "2024-10-23", "count": 1 }, { "date": "2024-10-25", "count": 1 }, { "date": "2024-11-15", "count": 1 }, { "date": "2024-12-05", "count": 1 }, { "date": "2024-12-29", "count": 1 }, { "date": "2025-05-01", "count": 1 }, { "date": "2025-06-25", "count": 1 }, { "date": "2025-07-17", "count": 1 }, { "date": "2025-08-24", "count": 1 }, { "date": "2025-09-13", "count": 1 }, { "date": "2025-12-05", "count": 1 }, { "date": "2026-02-03", "count": 1 }, { "date": "2026-03-10", "count": 1 }, { "date": "2026-03-20", "count": 1 }, { "date": "2026-04-12", "count": 1 } ], "complete": true, "collected": 85, "total_forks": 89 }, "star_history": null, "open_issues_and_prs": 39 }, "ai_readiness": { "has_nix": false, "example_dirs": [], "has_llms_txt": false, "has_dockerfile": false, "has_mcp_signal": false, "bootstrap_files": [], "api_schema_files": [], "has_devcontainer": false, "typecheck_configs": [], "toolchain_manifests": [ "go.mod", "goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod" ], "largest_source_bytes": 41691, "source_files_sampled": 105, "oversized_source_files": 0, "agent_instruction_files": [], "agent_instruction_max_bytes": null }, "dependencies": { "manifests": [ "go.mod" ], "advisories": { "error": null, "scope": "repository_graph", "source": "osv", "findings": [ { "name": "golang.org/x/sys", "direct": true, "version": "v0.26.0", "severity": "unknown", "ecosystem": "go", "cvss_score": null, "advisory_ids": [ "GO-2026-5024" ], "fixed_version": "0.44.0", "advisory_count": 1, "oldest_advisory_days": 66 } ], "collected": true, "malicious": [], "truncated": false, "by_severity": { "unknown": 1 }, "advisory_count": 1, "affected_count": 1, "assessed_count": 3, "malicious_count": 0, "assessed_package": null, "unassessed_count": 0, "direct_affected_count": 1 }, "ecosystems": [ "go" ], "dependencies": [ { "name": "golang.org/x/mod", "manifest": "go.mod", "ecosystem": "go", "version_constraint": "v0.21.0" }, { "name": "golang.org/x/sys", "manifest": "go.mod", "ecosystem": "go", "version_constraint": "v0.26.0" }, { "name": "golang.org/x/tools", "manifest": "go.mod", "ecosystem": "go", "version_constraint": "v0.26.0" } ], "all_dependencies": { "error": null, "source": "github-sbom", "packages": [ { "name": "golang.org/x/mod", "direct": true, "version": "v0.21.0", "ecosystem": "go" }, { "name": "golang.org/x/sys", "direct": true, "version": "v0.26.0", "ecosystem": "go" }, { "name": "golang.org/x/tools", "direct": true, "version": "v0.26.0", "ecosystem": "go" } ], "collected": true, "truncated": false, "total_count": 3, "direct_count": 3, "indirect_count": 0 } }, "maintainership": { "issues": { "open_prs": 6, "merged_prs": 171, "open_issues": 33, "closed_ratio": 0.676, "closed_issues": 69, "closed_unmerged_prs": 27 }, "bus_factor": 2, "bot_contributors": 0, "top_contributors": [ { "type": "User", "login": "rogpeppe", "commits": 64, "avatar_url": "https://avatars.githubusercontent.com/u/66491?v=4" }, { "type": "User", "login": "mvdan", "commits": 51, "avatar_url": "https://avatars.githubusercontent.com/u/3576549?v=4" }, { "type": "User", "login": "myitcv", "commits": 47, "avatar_url": "https://avatars.githubusercontent.com/u/3374574?v=4" }, { "type": "User", "login": "twpayne", "commits": 11, "avatar_url": "https://avatars.githubusercontent.com/u/6942?v=4" }, { "type": "User", "login": "bitfield", "commits": 6, "avatar_url": "https://avatars.githubusercontent.com/u/142262?v=4" }, { "type": "User", "login": "FiloSottile", "commits": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1225294?v=4" }, { "type": "User", "login": "abhinav", "commits": 3, "avatar_url": "https://avatars.githubusercontent.com/u/41730?v=4" }, { "type": "User", "login": "dmitris", "commits": 2, "avatar_url": "https://avatars.githubusercontent.com/u/31205?v=4" }, { "type": "User", "login": "leitzler", "commits": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3111805?v=4" }, { "type": "User", "login": "anthonyfok", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1274764?v=4" } ], "contributors_sampled": 23, "top_contributor_share": 0.314 }, "quality_signals": { "has_ci": true, "has_tests": true, "ci_workflows": [ "test.yml" ], "has_docs_dir": false, "linter_configs": [], "has_editorconfig": false, "has_linter_config": false, "has_precommit_config": false }, "security_signals": { "lockfiles": [ "go.sum" ], "scorecard": { "checks": [ { "name": "Binary-Artifacts", "score": 10, "reason": "no binaries found in the repo", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts" }, { "name": "Branch-Protection", "score": 0, "reason": "branch protection not enabled on development/release branches", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection" }, { "name": "CI-Tests", "score": 3, "reason": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests" }, { "name": "CII-Best-Practices", "score": 0, "reason": "no effort to earn an OpenSSF best practices badge detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices" }, { "name": "Code-Review", "score": 9, "reason": "Found 22/23 approved changesets -- score normalized to 9", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review" }, { "name": "Contributors", "score": 10, "reason": "project has 19 contributing companies or organizations", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors" }, { "name": "Dangerous-Workflow", "score": 10, "reason": "no dangerous workflow patterns detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow" }, { "name": "Dependency-Update-Tool", "score": 0, "reason": "no update tool detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool" }, { "name": "Fuzzing", "score": 10, "reason": "project is fuzzed", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing" }, { "name": "License", "score": 10, "reason": "license file detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license" }, { "name": "Maintained", "score": 1, "reason": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained" }, { "name": "Packaging", "score": null, "reason": "packaging workflow not detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging" }, { "name": "Pinned-Dependencies", "score": 0, "reason": "dependency not pinned by hash detected -- score normalized to 0", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies" }, { "name": "SAST", "score": 0, "reason": "SAST tool is not run on all commits -- score normalized to 0", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast" }, { "name": "Security-Policy", "score": 0, "reason": "security policy file not detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy" }, { "name": "Signed-Releases", "score": null, "reason": "no releases found", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases" }, { "name": "Token-Permissions", "score": 0, "reason": "detected GitHub workflow tokens with excessive permissions", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions" }, { "name": "Vulnerabilities", "score": 9, "reason": "1 existing vulnerabilities detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities" } ], "commit": "49d4e9ddb921430d6bb9ed28aeafc16676a18c65", "ran_at": "2026-07-28T13:07:12Z", "aggregate_score": 4.6, "scorecard_version": "v5.5.0" }, "has_codeql_workflow": false, "has_security_policy": false, "has_dependabot_config": false }, "contribution_flow": { "collected": true, "ci_last_run_at": "2026-07-01T15:14:58Z", "oldest_open_prs": [ { "number": 175, "created_at": "2022-08-04T18:48:55Z", "last_comment_at": "2023-12-21T22:01:58Z", "last_comment_author": "rudifa" }, { "number": 181, "created_at": "2022-08-27T13:30:45Z", "last_comment_at": "2022-10-06T09:50:54Z", "last_comment_author": "mvdan" }, { "number": 268, "created_at": "2024-08-08T16:31:02Z", "last_comment_at": "2024-08-08T16:31:59Z", "last_comment_author": "mvdan" }, { "number": 269, "created_at": "2024-08-24T08:44:59Z", "last_comment_at": "2025-02-13T12:25:12Z", "last_comment_author": "abitrolly" }, { "number": 298, "created_at": "2025-07-10T11:04:09Z", "last_comment_at": null, "last_comment_author": null }, { "number": 300, "created_at": "2025-09-13T11:08:13Z", "last_comment_at": null, "last_comment_author": null } ], "last_merged_pr_at": "2026-07-01T15:11:24Z", "ci_last_conclusion": "SUCCESS", "oldest_open_issues": [ { "number": 55, "created_at": "2019-02-27T10:50:36Z", "last_comment_at": null, "last_comment_author": null }, { "number": 58, "created_at": "2019-03-01T15:46:48Z", "last_comment_at": null, "last_comment_author": null }, { "number": 63, "created_at": "2019-03-16T22:42:16Z", "last_comment_at": "2024-04-15T10:07:49Z", "last_comment_author": "mvdan" }, { "number": 64, "created_at": "2019-03-19T20:51:55Z", "last_comment_at": null, "last_comment_author": null }, { "number": 69, "created_at": "2019-04-03T13:54:27Z", "last_comment_at": null, "last_comment_author": null }, { "number": 75, "created_at": "2019-07-22T08:58:02Z", "last_comment_at": "2019-07-22T09:52:54Z", "last_comment_author": "mvdan" }, { "number": 76, "created_at": "2019-07-29T20:33:41Z", "last_comment_at": null, "last_comment_author": null }, { "number": 89, "created_at": "2020-02-03T10:02:29Z", "last_comment_at": null, "last_comment_author": null }, { "number": 93, "created_at": "2020-03-19T17:09:39Z", "last_comment_at": "2023-09-20T11:10:34Z", "last_comment_author": "mvdan" }, { "number": 112, "created_at": "2020-09-30T15:26:19Z", "last_comment_at": "2020-12-10T15:42:10Z", "last_comment_author": "rogpeppe" }, { "number": 116, "created_at": "2020-11-20T09:42:30Z", "last_comment_at": null, "last_comment_author": null }, { "number": 142, "created_at": "2021-06-04T05:13:28Z", "last_comment_at": "2021-07-29T15:31:07Z", "last_comment_author": "myitcv" }, { "number": 151, "created_at": "2022-01-06T11:42:09Z", "last_comment_at": null, "last_comment_author": null }, { "number": 170, "created_at": "2022-07-28T07:50:53Z", "last_comment_at": "2023-07-03T12:04:53Z", "last_comment_author": "myitcv" }, { "number": 173, "created_at": "2022-07-30T08:39:40Z", "last_comment_at": "2022-07-31T10:10:19Z", "last_comment_author": "bitfield" }, { "number": 176, "created_at": "2022-08-15T09:49:52Z", "last_comment_at": "2022-08-22T08:41:55Z", "last_comment_author": "mvdan" }, { "number": 187, "created_at": "2022-11-13T13:23:31Z", "last_comment_at": "2022-11-20T17:31:10Z", "last_comment_author": "rogpeppe" }, { "number": 196, "created_at": "2023-01-21T02:04:03Z", "last_comment_at": "2023-05-08T08:05:23Z", "last_comment_author": "myitcv" }, { "number": 232, "created_at": "2023-06-28T13:56:50Z", "last_comment_at": "2023-10-11T17:43:09Z", "last_comment_author": "bep" }, { "number": 237, "created_at": "2023-10-31T18:02:31Z", "last_comment_at": null, "last_comment_author": null } ] } }, "config": { "disabled_metrics": [], "disabled_categories": [], "disabled_components": {} }, "source": { "url": "https://github.com/rogpeppe/go-internal", "host": "github.com", "name": "go-internal", "owner": "rogpeppe" }, "metrics": { "overall": { "key": "overall", "band": "moderate", "name": "Overall health", "note": null, "notes": [], "value": 61, "inputs": { "security": 55, "vitality": 59, "community": 61, "governance": 76, "engineering": 52 }, "components": [] }, "categories": [ { "key": "vitality", "band": "moderate", "name": "Vitality", "value": 59, "weight": 0.22, "metrics": [ { "key": "development_activity", "band": "at_risk", "name": "Development activity", "note": null, "notes": [], "value": 42, "inputs": { "commits_last_year": 9, "human_commit_share": 1, "days_since_last_push": 26, "active_weeks_last_year": 5 }, "components": [ { "key": "push_recency", "name": "Push recency", "detail": "last push 26 days ago", "points": 28.8, "status": "partial", "details": [ { "code": "push_recency", "params": { "days": 26 } } ], "max_points": 36 }, { "key": "commit_cadence", "name": "Commit cadence", "detail": "5/52 weeks with commits", "points": 3.5, "status": "partial", "details": [ { "code": "commit_cadence_weeks", "params": { "weeks": 5 } } ], "max_points": 36 }, { "key": "commit_volume", "name": "Commit volume", "detail": "9 commits in the last year", "points": 9, "status": "partial", "details": [ { "code": "commits_last_year", "params": { "count": 9 } } ], "max_points": 18 }, { "key": "openssf_scorecard_maintained", "name": "OpenSSF Scorecard: Maintained", "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "points": 1, "status": "partial", "details": [], "max_points": 10 } ] }, { "key": "release_discipline", "band": "good", "name": "Release discipline", "note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "openssf_scorecard_signed_releases" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 84, "inputs": { "releases_count": 28, "latest_release_tag": "v1.15.0", "releases_from_tags": false, "days_since_latest_release": 61, "mean_days_between_releases": 211.4 }, "components": [ { "key": "ships_releases", "name": "Ships releases", "detail": "28 releases published", "points": 27, "status": "met", "details": [ { "code": "releases_published", "params": { "count": 28 } } ], "max_points": 27 }, { "key": "release_recency", "name": "Release recency", "detail": "latest release 61 days ago", "points": 36, "status": "met", "details": [ { "code": "release_recency", "params": { "days": 61 } } ], "max_points": 36 }, { "key": "release_cadence", "name": "Release cadence", "detail": "a release every ~211.4 days", "points": 12.6, "status": "partial", "details": [ { "code": "release_cadence", "params": { "gap": 211.4 } } ], "max_points": 27 }, { "key": "openssf_scorecard_signed_releases", "name": "OpenSSF Scorecard: Signed-Releases", "detail": "no releases found", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "max_points": 10 } ] }, { "key": "abandonment", "band": "excellent", "name": "Abandonment", "note": null, "notes": [], "value": 100, "inputs": { "cap": null, "state": "maintained", "guards": [], "signals": [], "red_flag": false, "multiplier_pct": 100, "declared_reason": null, "unverified_reason": null, "unanswered_open_prs": null, "unanswered_open_issues": null, "days_since_last_merged_pr": null, "days_since_last_human_commit": 26, "days_since_last_human_commit_is_floor": false }, "components": [ { "key": "project_is_still_maintained", "name": "Project is still maintained", "detail": "last human commit 26 days ago", "points": 100, "status": "met", "details": [ { "code": "abandonment_maintained", "params": { "days": 26 } } ], "max_points": 100 } ] } ], "description": "Is the project alive — is code being written and are releases shipping?" }, { "key": "community", "band": "moderate", "name": "Community & Adoption", "value": 61, "weight": 0.18, "metrics": [ { "key": "popularity", "band": "good", "name": "Popularity & adoption", "note": null, "notes": [], "value": 71, "inputs": { "forks": 89, "stars": 988, "watchers": 16, "growth_state": "unverified", "growth_factor_pct": 100, "growth_unverified_reason": "no_history" }, "components": [ { "key": "stars", "name": "Stars", "detail": "988 stars", "points": 48.6, "status": "partial", "details": [ { "code": "stars", "params": { "count": 988 } } ], "max_points": 60 }, { "key": "forks", "name": "Forks", "detail": "89 forks", "points": 16.2, "status": "partial", "details": [ { "code": "forks", "params": { "count": 89 } } ], "max_points": 25 }, { "key": "watchers", "name": "Watchers", "detail": "16 watchers", "points": 6.5, "status": "partial", "details": [ { "code": "watchers", "params": { "count": 16 } } ], "max_points": 15 } ] }, { "key": "community_health", "band": "moderate", "name": "Community health", "note": null, "notes": [], "value": 50, "inputs": { "has_readme": true, "has_license": true, "has_contributing": false, "has_issue_template": false, "has_code_of_conduct": false, "has_pull_request_template": false }, "components": [ { "key": "readme", "name": "README", "detail": null, "points": 22.5, "status": "met", "details": [], "max_points": 22.5 }, { "key": "license", "name": "License", "detail": "recognized license (BSD-3-Clause)", "points": 22.5, "status": "met", "details": [ { "code": "license_standard", "params": {} }, { "code": "license_spdx", "params": { "spdx": "BSD-3-Clause" } } ], "max_points": 22.5 }, { "key": "contributing_guide", "name": "CONTRIBUTING guide", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 18 }, { "key": "code_of_conduct", "name": "Code of conduct", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 13.5 }, { "key": "issue_template", "name": "Issue template", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 7.2 }, { "key": "pr_template", "name": "PR template", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 6.3 } ] } ], "description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?" }, { "key": "governance", "band": "good", "name": "Sustainability & Governance", "value": 76, "weight": 0.24, "metrics": [ { "key": "maintainer_resilience", "band": "moderate", "name": "Maintainer resilience (bus factor)", "note": null, "notes": [], "value": 64, "inputs": { "bus_factor": 2, "contributors_sampled": 23, "top_contributor_share": 0.314 }, "components": [ { "key": "bus_factor", "name": "Bus factor", "detail": "2 contributor(s) cover half of all commits", "points": 25.2, "status": "partial", "details": [ { "code": "bus_factor", "params": { "count": 2 } } ], "max_points": 54 }, { "key": "commit_distribution", "name": "Commit distribution", "detail": "top contributor authored 31% of commits", "points": 15.4, "status": "partial", "details": [ { "code": "top_contributor_share", "params": { "share": 31 } } ], "max_points": 22.5 }, { "key": "contributor_breadth", "name": "Contributor breadth", "detail": "23 contributors", "points": 13.5, "status": "met", "details": [ { "code": "contributors_sampled", "params": { "count": 23 } } ], "max_points": 13.5 }, { "key": "openssf_scorecard_contributors", "name": "OpenSSF Scorecard: Contributors", "detail": "project has 19 contributing companies or organizations", "points": 10, "status": "met", "details": [], "max_points": 10 } ] }, { "key": "responsiveness", "band": "good", "name": "Issue & PR responsiveness", "note": null, "notes": [], "value": 78, "inputs": { "merged_prs": 171, "open_issues": 33, "closed_issues": 69, "issue_closed_ratio": 0.676, "closed_unmerged_prs": 27 }, "components": [ { "key": "issue_resolution", "name": "Issue resolution", "detail": "68% of issues closed", "points": 31.6, "status": "partial", "details": [ { "code": "issues_closed_share", "params": { "share": 68 } } ], "max_points": 46.75 }, { "key": "pr_acceptance", "name": "PR acceptance", "detail": "171/198 decided PRs merged", "points": 33, "status": "partial", "details": [ { "code": "decided_prs_merged", "params": { "merged": 171, "decided": 198 } } ], "max_points": 38.25 }, { "key": "openssf_scorecard_code_review", "name": "OpenSSF Scorecard: Code-Review", "detail": "Found 22/23 approved changesets -- score normalized to 9", "points": 13.5, "status": "partial", "details": [], "max_points": 15 } ] }, { "key": "stewardship", "band": "good", "name": "Ownership & stewardship", "note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "verified_domain" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 70, "inputs": { "followers": 755, "owner_type": "User", "is_verified": null, "owner_login": "rogpeppe", "public_repos": 74, "account_age_days": 6334 }, "components": [ { "key": "ownership_backing", "name": "Ownership backing", "detail": "personal (user) account", "points": 10, "status": "partial", "details": [ { "code": "owner_personal", "params": {} } ], "max_points": 30 }, { "key": "verified_domain", "name": "Verified domain", "detail": "not applicable to user accounts", "points": 0, "status": "excluded", "details": [ { "code": "not_applicable_to_user_accounts", "params": {} } ], "max_points": 20 }, { "key": "owner_reach", "name": "Owner reach", "detail": "755 followers of rogpeppe", "points": 20.7, "status": "partial", "details": [ { "code": "owner_followers", "params": { "count": 755, "login": "rogpeppe" } } ], "max_points": 25 }, { "key": "track_record", "name": "Track record", "detail": "74 public repos, account ~17 yr old", "points": 25, "status": "met", "details": [ { "code": "public_repos", "params": { "count": 74 } }, { "code": "account_age_years", "params": { "years": 17 } } ], "max_points": 25 } ] }, { "key": "package_maintenance", "band": "excellent", "name": "Package maintenance", "note": null, "notes": [], "value": 100, "inputs": { "packages": [ "github.com/rogpeppe/go-internal" ], "ecosystems": "go", "any_deprecated": false, "min_days_since_publish": 102 }, "components": [ { "key": "published_resolvable", "name": "Published & resolvable", "detail": "1 package(s) on go", "points": 25, "status": "met", "details": [ { "code": "packages_published", "params": { "count": 1, "ecosystems": "go" } } ], "max_points": 25 }, { "key": "publish_recency", "name": "Publish recency", "detail": "latest publish 102 days ago", "points": 35, "status": "met", "details": [ { "code": "publish_recency", "params": { "days": 102 } } ], "max_points": 35 }, { "key": "version_history", "name": "Version history", "detail": "45 published versions", "points": 20, "status": "met", "details": [ { "code": "published_versions", "params": { "count": 45 } } ], "max_points": 20 }, { "key": "not_deprecated", "name": "Not deprecated", "detail": "active, not deprecated or yanked", "points": 20, "status": "met", "details": [ { "code": "package_not_deprecated", "params": {} } ], "max_points": 20 } ] } ], "description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?" }, { "key": "engineering", "band": "moderate", "name": "Engineering Quality", "value": 52, "weight": 0.2, "metrics": [ { "key": "engineering_practices", "band": "moderate", "name": "Engineering practices", "note": null, "notes": [], "value": 54, "inputs": { "has_ci": true, "has_tests": true, "has_editorconfig": false, "has_linter_config": false, "has_precommit_config": false }, "components": [ { "key": "ci_workflows", "name": "CI workflows", "detail": "1 workflow(s)", "points": 24, "status": "met", "details": [ { "code": "ci_workflows", "params": { "count": 1 } } ], "max_points": 24 }, { "key": "tests_present", "name": "Tests present", "detail": null, "points": 24, "status": "met", "details": [], "max_points": 24 }, { "key": "linter_config", "name": "Linter config", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 16 }, { "key": "pre_commit_hooks", "name": "Pre-commit hooks", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 9.6 }, { "key": "editorconfig", "name": ".editorconfig", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 6.4 }, { "key": "openssf_scorecard_ci_tests", "name": "OpenSSF Scorecard: CI-Tests", "detail": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3", "points": 6, "status": "partial", "details": [], "max_points": 20 } ] }, { "key": "documentation", "band": "moderate", "name": "Documentation", "note": null, "notes": [], "value": 50, "inputs": { "topics": [], "has_wiki": true, "homepage": null, "has_readme": true, "has_docs_dir": false, "has_description": true }, "components": [ { "key": "readme", "name": "README", "detail": null, "points": 30, "status": "met", "details": [], "max_points": 30 }, { "key": "documentation_directory", "name": "Documentation directory", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 25 }, { "key": "documentation_homepage_site", "name": "Documentation / homepage site", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 15 }, { "key": "repository_description", "name": "Repository description", "detail": null, "points": 10, "status": "met", "details": [], "max_points": 10 }, { "key": "topics", "name": "Topics", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 10 }, { "key": "wiki", "name": "Wiki", "detail": null, "points": 10, "status": "met", "details": [], "max_points": 10 } ] } ], "description": "Are baseline engineering and documentation practices in place?" }, { "key": "security", "band": "moderate", "name": "Security", "value": 55, "weight": 0.16, "metrics": [ { "key": "security_posture", "band": "at_risk", "name": "Security posture", "note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "packaging", "signed_releases" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 46, "inputs": { "source": "openssf_scorecard", "checks_evaluated": 16, "scorecard_version": "v5.5.0", "checks_inconclusive": 2, "scorecard_aggregate": 4.6 }, "components": [ { "key": "binary_artifacts", "name": "Binary-Artifacts", "detail": "no binaries found in the repo", "points": 7.5, "status": "met", "details": [], "max_points": 7.5 }, { "key": "branch_protection", "name": "Branch-Protection", "detail": "branch protection not enabled on development/release branches", "points": 0, "status": "missed", "details": [], "max_points": 7.5 }, { "key": "ci_tests", "name": "CI-Tests", "detail": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3", "points": 0.8, "status": "partial", "details": [], "max_points": 2.5 }, { "key": "cii_best_practices", "name": "CII-Best-Practices", "detail": "no effort to earn an OpenSSF best practices badge detected", "points": 0, "status": "missed", "details": [], "max_points": 2.5 }, { "key": "code_review", "name": "Code-Review", "detail": "Found 22/23 approved changesets -- score normalized to 9", "points": 6.8, "status": "partial", "details": [], "max_points": 7.5 }, { "key": "contributors", "name": "Contributors", "detail": "project has 19 contributing companies or organizations", "points": 2.5, "status": "met", "details": [], "max_points": 2.5 }, { "key": "dangerous_workflow", "name": "Dangerous-Workflow", "detail": "no dangerous workflow patterns detected", "points": 10, "status": "met", "details": [], "max_points": 10 }, { "key": "dependency_update_tool", "name": "Dependency-Update-Tool", "detail": "no update tool detected", "points": 0, "status": "missed", "details": [], "max_points": 7.5 }, { "key": "fuzzing", "name": "Fuzzing", "detail": "project is fuzzed", "points": 5, "status": "met", "details": [], "max_points": 5 }, { "key": "license", "name": "License", "detail": "license file detected", "points": 2.5, "status": "met", "details": [], "max_points": 2.5 }, { "key": "maintained", "name": "Maintained", "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "points": 0.8, "status": "partial", "details": [], "max_points": 7.5 }, { "key": "packaging", "name": "Packaging", "detail": "packaging workflow not detected", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "max_points": 5 }, { "key": "pinned_dependencies", "name": "Pinned-Dependencies", "detail": "dependency not pinned by hash detected -- score normalized to 0", "points": 0, "status": "missed", "details": [], "max_points": 5 }, { "key": "sast", "name": "SAST", "detail": "SAST tool is not run on all commits -- score normalized to 0", "points": 0, "status": "missed", "details": [], "max_points": 5 }, { "key": "security_policy", "name": "Security-Policy", "detail": "security policy file not detected", "points": 0, "status": "missed", "details": [], "max_points": 5 }, { "key": "signed_releases", "name": "Signed-Releases", "detail": "no releases found", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "max_points": 7.5 }, { "key": "token_permissions", "name": "Token-Permissions", "detail": "detected GitHub workflow tokens with excessive permissions", "points": 0, "status": "missed", "details": [], "max_points": 7.5 }, { "key": "vulnerabilities", "name": "Vulnerabilities", "detail": "1 existing vulnerabilities detected", "points": 6.8, "status": "partial", "details": [], "max_points": 7.5 } ] }, { "key": "dependency_advisories", "band": "excellent", "name": "Dependency advisories", "note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 3 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "indirect_dependencies_free_of_known_advisories" ] } }, { "code": "weights_renormalized", "params": {} }, { "code": "advisories_scope_repository", "params": { "assessed": 3 } }, { "code": "advisories_repo_graph_caveat", "params": {} }, { "code": "advisories_reachability", "params": {} } ], "value": 89, "inputs": { "source": "osv", "advisories": 1, "affected_packages": 1, "assessed_packages": 3, "unassessed_packages": 0, "affected_by_severity": "unknown 1", "direct_affected_packages": 1 }, "components": [ { "key": "direct_dependencies_free_of_known_advisories", "name": "Direct dependencies free of known advisories", "detail": "1 affected: golang.org/x/sys v0.26.0 (unknown)", "points": 26.6, "status": "partial", "details": [ { "code": "advisories_affected", "params": { "count": 1, "packages": "golang.org/x/sys v0.26.0 (unknown)" } } ], "max_points": 35 }, { "key": "indirect_dependencies_free_of_known_advisories", "name": "Indirect dependencies free of known advisories", "detail": "transitive set not separable from development and test dependencies in this scope", "points": 0, "status": "excluded", "details": [ { "code": "advisories_scope_not_separable", "params": {} } ], "max_points": 25 }, { "key": "no_advisories_left_outstanding", "name": "No advisories left outstanding", "detail": "no advisory has been public longer than 90 days", "points": 40, "status": "met", "details": [ { "code": "advisories_none_stale", "params": { "days": 90 } } ], "max_points": 40 } ] }, { "key": "malicious_dependencies", "band": "excellent", "name": "Malicious dependencies", "note": null, "notes": [], "value": 100, "inputs": { "source": "osv", "meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored", "packages": [], "red_flag": false, "assessed_packages": 3, "malicious_packages": 0, "direct_malicious_packages": 0, "withdrawn_malicious_packages": 0, "installable_malicious_packages": 0 }, "components": [ { "key": "no_dependency_reported_as_a_malicious_package", "name": "No dependency reported as a malicious package", "detail": "no dependency is reported as a malicious package", "points": 100, "status": "met", "details": [ { "code": "no_malicious_dependencies", "params": {} } ], "max_points": 100 } ] }, { "key": "high_risk_jurisdiction_exposure", "band": "excellent", "name": "High-Risk Jurisdiction Exposure", "note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.", "notes": [ { "code": "jurisdiction_evidence_limits", "params": {} } ], "value": 100, "inputs": { "meaning": "self-published location evidence; not nationality or citizenship", "red_flag": false, "exposures": [], "policy_countries": [ "Russia", "Iran", "North Korea" ], "review_only_matches": 0, "assessed_self_published_locations": 18 }, "components": [ { "key": "policy_exposure_multiplier", "name": "Policy exposure multiplier", "detail": "no confirmed policy-scope location match", "points": 100, "status": "met", "details": [ { "code": "jurisdiction_no_match", "params": {} } ], "max_points": 100 } ] } ], "description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?" }, { "key": "ai_readiness", "band": "moderate", "name": "AI Readiness", "value": 58, "weight": 0, "metrics": [ { "key": "ai_agent_context", "band": "at_risk", "name": "Agent context & guidance", "note": null, "notes": [], "value": 40, "inputs": { "has_llms_txt": false, "legible_history_share": 0.93, "agent_instruction_files": [], "agent_instruction_max_bytes": null }, "components": [ { "key": "agent_instructions", "name": "Agent instructions", "detail": "no CLAUDE.md / AGENTS.md / editor rules", "points": 0, "status": "missed", "details": [ { "code": "no_agent_instructions", "params": {} } ], "max_points": 45 }, { "key": "machine_readable_docs_llms_txt", "name": "Machine-readable docs (llms.txt)", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 15 }, { "key": "legible_commit_history", "name": "Legible commit history", "detail": "93 of 100 human commits state their intent (structured subject or explanatory body)", "points": 40, "status": "met", "details": [ { "code": "legible_history", "params": { "legible": 93, "sampled": 100 } } ], "max_points": 40 } ] }, { "key": "ai_verify_loop", "band": "moderate", "name": "Verify loop (build / test / typecheck)", "note": null, "notes": [], "value": 56, "inputs": { "has_nix": false, "has_tests": true, "lockfiles": [ "go.sum" ], "has_dockerfile": false, "typed_language": true, "bootstrap_files": [], "has_devcontainer": false, "has_linter_config": false, "typecheck_configs": [], "agent_commit_share": 0, "toolchain_manifests": [ "go.mod", "goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod" ], "dependency_bot_commit_share": 0 }, "components": [ { "key": "one_command_bootstrap", "name": "One-command bootstrap", "detail": "go.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod (toolchain convention, no task runner)", "points": 12.6, "status": "partial", "details": [ { "code": "toolchain_convention", "params": { "files": "go.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod" } } ], "max_points": 18 }, { "key": "automated_tests", "name": "Automated tests", "detail": null, "points": 22, "status": "met", "details": [], "max_points": 22 }, { "key": "lint_format_config", "name": "Lint / format config", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 11 }, { "key": "static_type_checking", "name": "Static type checking", "detail": "Go (statically typed)", "points": 11, "status": "met", "details": [ { "code": "statically_typed_language", "params": { "language": "Go" } } ], "max_points": 11 }, { "key": "reproducible_environment", "name": "Reproducible environment", "detail": "lockfile", "points": 10, "status": "met", "details": [ { "code": "file_list", "params": { "files": "lockfile" } } ], "max_points": 10 }, { "key": "demonstrated_agent_practice", "name": "Demonstrated agent practice", "detail": "no agent-authored commits among the last 100", "points": 0, "status": "missed", "details": [ { "code": "no_agent_authored_commits", "params": { "sampled": 100 } } ], "max_points": 10 }, { "key": "automated_maintenance", "name": "Automated maintenance", "detail": "no automated dependency updates observed", "points": 0, "status": "missed", "details": [ { "code": "no_dependency_automation", "params": {} } ], "max_points": 8 }, { "key": "openssf_scorecard_pinned_dependencies", "name": "OpenSSF Scorecard: Pinned-Dependencies", "detail": "dependency not pinned by hash detected -- score normalized to 0", "points": 0, "status": "missed", "details": [], "max_points": 10 } ] }, { "key": "ai_code_legibility", "band": "excellent", "name": "Code legibility for models", "note": null, "notes": [], "value": 100, "inputs": { "primary_language": "Go", "largest_source_bytes": 41691, "source_files_sampled": 105, "oversized_source_files": 0 }, "components": [ { "key": "type_checkable_code", "name": "Type-checkable code", "detail": "Go (statically typed)", "points": 45, "status": "met", "details": [ { "code": "statically_typed_language", "params": { "language": "Go" } } ], "max_points": 45 }, { "key": "manageable_file_sizes", "name": "Manageable file sizes", "detail": "0/105 source files over 60KB", "points": 55, "status": "met", "details": [ { "code": "oversized_source_files", "params": { "kb": 60, "sampled": 105, "oversized": 0 } } ], "max_points": 55 } ] } ], "description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score." } ], "metrics_version": "1.13.0" }, "warnings": [ "Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token" ], "report_type": "repository", "generated_at": "2026-07-28T13:07:36.732568Z", "schema_version": "0.27.0", "badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/rogpeppe/go-internal.svg", "full_name": "rogpeppe/go-internal", "license_state": "standard", "license_spdx": "BSD-3-Clause" }, "repoMeta": null, "notFound": false, "related": [ { "id": 10517, "full_name": "wandb/wandb", "url": "https://github.com/wandb/wandb", "description": "The AI developer platform. Use Weights & Biases to train and fine-tune models, and manage models from experimentation to production.", "ecosystem": "pypi", "ecosystems": [ "pypi", "go", "crates" ], "primary_language": "Python", "languages": [ "Python", "Go" ], "topics": [ "machine-learning", "experiment-track", "deep-learning", "keras", "tensorflow", "pytorch", "hyperparameter-search", "reinforcement-learning", "mlops", "data-science", "collaboration", "hyperparameter-optimization", "reproducibility", "hyperparameter-tuning", "data-versioning", "model-versioning", "ml-platform", "jax", "ai" ], "license_spdx": "MIT", "license_state": "standard", "stars": 11195, "forks": 885, "watchers": 62, "monthly_downloads": 23033482, "latest_score": 94, "latest_band": "excellent", "latest_scanned_at": "2026-07-20T23:02:12.679869Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 30871, "full_name": "apache/airflow", "url": "https://github.com/apache/airflow", "description": "Apache Airflow - A platform to programmatically author, schedule, and monitor workflows", "ecosystem": "pypi", "ecosystems": [ "pypi", "npm", "go", "maven" ], "primary_language": "Python", "languages": [ "Python" ], "topics": [ "airflow", "apache", "apache-airflow", "python", "scheduler", "workflow", "automation", "dag", "data-engineering", "data-integration", "data-orchestrator", "data-pipelines", "data-science", "elt", "etl", "machine-learning", "mlops", "orchestration", "workflow-engine", "workflow-orchestration", "data", "pipelines" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 46191, "forks": 17407, "watchers": 781, "monthly_downloads": 28891797, "latest_score": 93, "latest_band": "excellent", "latest_scanned_at": "2026-07-21T02:34:57.958196Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 18104, "full_name": "envoyproxy/envoy", "url": "https://github.com/envoyproxy/envoy", "description": "Cloud-native high-performance edge/middle/service proxy", "ecosystem": "pypi", "ecosystems": [ "pypi", "go", "crates" ], "primary_language": "C++", "languages": [ "C++" ], "topics": [ "cats", "rocket-ships", "cars", "more-cats", "cats-over-dogs", "nanoservices", "corgis", "cncf" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 28587, "forks": 5501, "watchers": 561, "monthly_downloads": 50, "latest_score": 92, "latest_band": "excellent", "latest_scanned_at": "2026-07-17T19:34:04.305514Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 166, "full_name": "moby/moby", "url": "https://github.com/moby/moby", "description": "The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems", "ecosystem": "go", "ecosystems": [ "go" ], "primary_language": "Go", "languages": [ "Go" ], "topics": [ "docker", "containers", "go", "golang" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 71919, "forks": 19072, "watchers": 2844, "monthly_downloads": null, "latest_score": 92, "latest_band": "excellent", "latest_scanned_at": "2026-07-28T13:50:15.277424Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "badge_url": "" }, { "id": 39573, "full_name": "authelia/authelia", "url": "https://github.com/authelia/authelia", "description": "The Single Sign-On Multi-Factor portal for web apps, now OpenID Certified™", "ecosystem": "go", "ecosystems": [ "go", "npm" ], "primary_language": "Go", "languages": [ "Go", "TypeScript" ], "topics": [ "totp", "ldap", "sso-authentication", "yubikey", "two-factor-authentication", "docker", "kubernetes", "sso", "multifactor", "push-notifications", "mfa", "two-factor", "authentication", "security", "golang", "2fa", "oauth2", "openid-connect", "webauthn", "passkeys" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 28362, "forks": 1447, "watchers": 164, "monthly_downloads": null, "latest_score": 91, "latest_band": "excellent", "latest_scanned_at": "2026-07-25T04:42:51.544923Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "badge_url": "" }, { "id": 29140, "full_name": "rook/rook", "url": "https://github.com/rook/rook", "description": "Storage Orchestration for Kubernetes", "ecosystem": "go", "ecosystems": [ "go" ], "primary_language": "Go", "languages": [ "Go" ], "topics": [ "storage", "kubernetes", "ceph", "storage-cluster", "docker", "cloud-native", "etcd", "cncf" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 13581, "forks": 2837, "watchers": 264, "monthly_downloads": null, "latest_score": 91, "latest_band": "excellent", "latest_scanned_at": "2026-07-20T19:30:09.728548Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" } ] } }
Public record
Software health reportschema 0.27.0 · metrics 1.13.0 · 2026-07-28 13:07 UTC

rogpeppe / go-internal

Selected Go-internal packages factored out from the standard library

GoBSD-3-Clause★ 988 stars⑂ 89 forkssince Sep 2018View on GitHub ↗

rogpeppe/go-internal holds a health index of 61 out of 100, placing it in the Moderate band. It scores highest on Sustainability & Governance (76/100) and lowest on Engineering Quality (52/100). It was last updated 26 days ago. 2 contributors account for most of its recent work.

61
overall / 100
Moderate

Software health index

Metrics are grouped into weighted categories on one standardized 1–100 scale. Overall starts as their weighted mean; when public evidence triggers the High-Risk Jurisdiction Policy, the rating is adjusted and receives an At risk ceiling of 49. AI Readiness sits outside the overall score.

61
Excellent85-100Exemplary; meets essentially all checked criteria
Good70-84Healthy; minor gaps
Moderate50-69Acceptable with notable gaps; review recommended
At risk30-49Significant weaknesses; adoption warrants caution
Critical1-29Severe problems (abandoned, single-maintainer, no hygiene)
VitalityCommunity &AdoptionSustainability &GovernanceEngineeringQualitySecurityAI Readiness

Score profile

Each axis is a category. The shape matters more than the average — a healthy subject fills the whole shape, while a spike-and-crater profile means strength in one dimension is masking risk in another.

Ownership

Roger PeppePersonal account
755 followers74 public repossince Mar 2009@cue-lang @cue-labs

This repository is owned by a personal account. A single-owner project carries more continuity risk than an organization-backed one.

Package ecosystems

RegistryPackageVersionDownloads / moVersionsLast publish
Gogithub.com/rogpeppe/go-internalv1.15.0-45102 days ago

Metrics by category

Vitality

Is the project alive — is code being written and are releases shipping?

59Moderate · 22% of overall
How it's scored
28.8/36Push recency — last push 26 days ago
3.5/36Commit cadence — 5/52 weeks with commits
9/18Commit volume — 9 commits in the last year
1/10OpenSSF Scorecard: Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Inputs used
commits_last_year9
human_commit_share1
days_since_last_push26
active_weeks_last_year5
How it's scored
27/27Ships releases — 28 releases published
36/36Release recency — latest release 61 days ago
12.6/27Release cadence — a release every ~211.4 days
0/10OpenSSF Scorecard: Signed-Releases — no data
Inputs used
releases_count28
latest_release_tagv1.15.0
releases_from_tagsno
days_since_latest_release61
mean_days_between_releases211.4
Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.

Community & Adoption

Does the project have users, downloads, attention, and a welcoming setup for contributors?

61Moderate · 18% of overall
How it's scored
48.6/60Stars — 988 stars
16.2/25Forks — 89 forks
6.5/15Watchers — 16 watchers
Inputs used
forks89
stars988
watchers16
growth_stateunverified
growth_factor_pct100
growth_unverified_reasonno_history
How it's scored
22.5/22.5README
22.5/22.5License — recognized license (BSD-3-Clause)
0/18CONTRIBUTING guide
0/13.5Code of conduct
0/7.2Issue template
0/6.3PR template
Inputs used
has_readmeyes
has_licenseyes
has_contributingno
has_issue_templateno
has_code_of_conductno
has_pull_request_templateno

Sustainability & Governance

Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?

76Good · 24% of overall
How it's scored
25.2/54Bus factor — 2 contributor(s) cover half of all commits
15.4/22.5Commit distribution — top contributor authored 31% of commits
13.5/13.5Contributor breadth — 23 contributors
10/10OpenSSF Scorecard: Contributors — project has 19 contributing companies or organizations
Inputs used
bus_factor2
contributors_sampled23
top_contributor_share0.314
How it's scored
31.6/46.8Issue resolution — 68% of issues closed
33/38.3PR acceptance — 171/198 decided PRs merged
13.5/15OpenSSF Scorecard: Code-Review — Found 22/23 approved changesets -- score normalized to 9
Inputs used
merged_prs171
open_issues33
closed_issues69
issue_closed_ratio0.676
closed_unmerged_prs27
How it's scored
10/30Ownership backing — personal (user) account
0/20Verified domain — not applicable to user accounts
20.7/25Owner reach — 755 followers of rogpeppe
25/25Track record — 74 public repos, account ~17 yr old
Inputs used
followers755
owner_typeUser
is_verified
owner_loginrogpeppe
public_repos74
account_age_days6,334
Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.
How it's scored
25/25Published & resolvable — 1 package(s) on go
35/35Publish recency — latest publish 102 days ago
20/20Version history — 45 published versions
20/20Not deprecated — active, not deprecated or yanked
Inputs used
packagesgithub.com/rogpeppe/go-internal
ecosystemsgo
any_deprecatedno
min_days_since_publish102

Engineering Quality

Are baseline engineering and documentation practices in place?

52Moderate · 20% of overall
How it's scored
24/24CI workflows — 1 workflow(s)
24/24Tests present
0/16Linter config
0/9.6Pre-commit hooks
0/6.4.editorconfig
6/20OpenSSF Scorecard: CI-Tests — 7 out of 23 merged PRs checked by a CI test -- score normalized to 3
Inputs used
has_ciyes
has_testsyes
has_editorconfigno
has_linter_configno
has_precommit_configno

Documentation

50Moderate
How it's scored
30/30README
0/25Documentation directory
0/15Documentation / homepage site
10/10Repository description
0/10Topics
10/10Wiki
Inputs used
topics
has_wikiyes
homepage
has_readmeyes
has_docs_dirno
has_descriptionyes

Security

Are visible security and supply-chain practices strong, without unresolved high-risk jurisdiction exposure?

55Moderate · 16% of overall
How it's scored
7.5/7.5Binary-Artifacts — no binaries found in the repo
0/7.5Branch-Protection — branch protection not enabled on development/release branches
0.8/2.5CI-Tests — 7 out of 23 merged PRs checked by a CI test -- score normalized to 3
0/2.5CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected
6.8/7.5Code-Review — Found 22/23 approved changesets -- score normalized to 9
2.5/2.5Contributors — project has 19 contributing companies or organizations
10/10Dangerous-Workflow — no dangerous workflow patterns detected
0/7.5Dependency-Update-Tool — no update tool detected
5/5Fuzzing — project is fuzzed
2.5/2.5License — license file detected
0.8/7.5Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
0/5Packaging — no data
0/5Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
0/5SAST — SAST tool is not run on all commits -- score normalized to 0
0/5Security-Policy — security policy file not detected
0/7.5Signed-Releases — no data
0/7.5Token-Permissions — detected GitHub workflow tokens with excessive permissions
6.8/7.5Vulnerabilities — 1 existing vulnerabilities detected
Inputs used
sourceopenssf_scorecard
checks_evaluated16
scorecard_versionv5.5.0
checks_inconclusive2
scorecard_aggregate4.6
Excluded from scoring (no data or not applicable): packaging, signed_releases. Remaining weights renormalized.
How it's scored
26.6/35Direct dependencies free of known advisories — 1 affected: golang.org/x/sys v0.26.0 (unknown)
0/25Indirect dependencies free of known advisories — transitive set not separable from development and test dependencies in this scope
40/40No advisories left outstanding — no advisory has been public longer than 90 days
Inputs used
sourceosv
advisories1
affected_packages1
assessed_packages3
unassessed_packages0
affected_by_severityunknown 1
direct_affected_packages1
Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 3 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.

AI Readiness

How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score.

58Moderate · 0% of overall
How it's scored
0/45Agent instructions — no CLAUDE.md / AGENTS.md / editor rules
0/15Machine-readable docs (llms.txt)
40/40Legible commit history — 93 of 100 human commits state their intent (structured subject or explanatory body)
Inputs used
has_llms_txtno
legible_history_share0.93
agent_instruction_files
agent_instruction_max_bytes
How it's scored
12.6/18One-command bootstrap — go.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod (toolchain convention, no task runner)
22/22Automated tests
0/11Lint / format config
11/11Static type checking — Go (statically typed)
10/10Reproducible environment — lockfile
0/10Demonstrated agent practice — no agent-authored commits among the last 100
0/8Automated maintenance — no automated dependency updates observed
0/10OpenSSF Scorecard: Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
Inputs used
has_nixno
has_testsyes
lockfilesgo.sum
has_dockerfileno
typed_languageyes
bootstrap_files
has_devcontainerno
has_linter_configno
typecheck_configs
agent_commit_share0
toolchain_manifestsgo.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod
dependency_bot_commit_share0
How it's scored
45/45Type-checkable code — Go (statically typed)
55/55Manageable file sizes — 0/105 source files over 60KB
Inputs used
primary_languageGo
largest_source_bytes41,691
source_files_sampled105
oversized_source_files0

Key facts

988GitHub stars
23contributors
9commits, last 12 months
26days since last push
28releases
2bus factor
33open issues
Gopackage ecosystems

Data collection warnings

  • Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token

More detail

Star and fork history 0 ★ / 89 ⇿
0Stars
89Forks
27Releases

When each star and fork was added, collected from GitHub and bucketed by day. Cumulative growth sits directly above the daily additions it is made of, so the two read against each other: steady organic accretion looks nothing like an abrupt, short-lived burst. Where that difference is measurable, it is reported as growth authenticity.

0204060801008532018-102022-072026-04
Major 0Minor 8Patch 11

Each point covers 7 days.

OpenSSF Scorecard 4.6 / 10
4.6aggregate

Independent, tool-agnostic security assessment from the open-source OpenSSF Scorecard. Each check rewards a security practice, not a specific vendor's tool. Checks Scorecard could not determine are marked n/a and excluded from the security score (never counted as zero).Scorecard v5.5.0 · 2026-07-28 13:07 UTC

10Binary-Artifactsno binaries found in the repo
0Branch-Protectionbranch protection not enabled on development/release branches
3CI-Tests7 out of 23 merged PRs checked by a CI test -- score normalized to 3
0CII-Best-Practicesno effort to earn an OpenSSF best practices badge detected
9Code-ReviewFound 22/23 approved changesets -- score normalized to 9
10Contributorsproject has 19 contributing companies or organizations
10Dangerous-Workflowno dangerous workflow patterns detected
0Dependency-Update-Toolno update tool detected
10Fuzzingproject is fuzzed
10Licenselicense file detected
1Maintained2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
n/aPackagingpackaging workflow not detected
0Pinned-Dependenciesdependency not pinned by hash detected -- score normalized to 0
0SASTSAST tool is not run on all commits -- score normalized to 0
0Security-Policysecurity policy file not detected
n/aSigned-Releasesno releases found
0Token-Permissionsdetected GitHub workflow tokens with excessive permissions
9Vulnerabilities1 existing vulnerabilities detected
Direct dependencies 3
RegistryPackageVersion constraintManifest
Gogolang.org/x/modv0.21.0go.mod
Gogolang.org/x/sysv0.26.0go.mod
Gogolang.org/x/toolsv0.26.0go.mod
All dependencies 3

Full resolved dependency set from the GitHub dependency graph: 3 direct and 0 indirect (transitive) packages. The transitive closure is complete when the repository commits a lockfile.

RegistryPackageVersionRelation
Gogolang.org/x/modv0.21.0direct
Gogolang.org/x/sysv0.26.0direct
Gogolang.org/x/toolsv0.26.0direct
Dependency advisories 1

This repository publishes no package the index resolves, so its own dependency graph was assessed — 3 packages, which also include development and test pins that never ship: 1 carry known advisories, of which 1 are direct.

PackageVersionRelationSeverityAdvisoriesFixed in
golang.org/x/sysv0.26.0directunknown10.44.0

An advisory means the version recorded in the dependency graph falls inside an advisory’s affected range. Reachability is not analysed, and the graph includes development and test pins — a finding may concern tooling rather than shipped software.

Raw JSON report machine-readable
{
  "data": {
    "repo": {
      "topics": [],
      "is_fork": false,
      "size_kb": 509,
      "has_wiki": true,
      "homepage": null,
      "languages": {
        "Go": 327584
      },
      "pushed_at": "2026-07-01T15:11:24Z",
      "created_at": "2018-09-30T17:20:54Z",
      "owner_type": "User",
      "updated_at": "2026-07-21T06:10:44Z",
      "description": "Selected Go-internal packages factored out from the standard library",
      "is_archived": false,
      "is_disabled": false,
      "license_spdx": "BSD-3-Clause",
      "default_branch": "master",
      "license_spdx_raw": "BSD-3-Clause",
      "primary_language": "Go",
      "significant_languages": [
        "Go"
      ]
    },
    "owner": {
      "blog": null,
      "name": "Roger Peppe",
      "type": "User",
      "login": "rogpeppe",
      "company": "@cue-lang @cue-labs",
      "location": "Newcastle upon Tyne, UK",
      "followers": 755,
      "avatar_url": "https://avatars.githubusercontent.com/u/66491?v=4",
      "created_at": "2009-03-24T13:23:51Z",
      "is_verified": null,
      "public_repos": 74,
      "account_age_days": 6334
    },
    "license": {
      "state": "standard",
      "spdx_id": "BSD-3-Clause",
      "raw_spdx": "BSD-3-Clause",
      "file_present": true,
      "scorecard_found": true,
      "profile_has_license": true
    },
    "activity": {
      "releases": [
        {
          "tag": "v1.15.0",
          "kind": "minor",
          "published_at": "2026-05-28T10:29:43Z"
        },
        {
          "tag": "v1.14.1",
          "kind": "patch",
          "published_at": "2025-02-25T12:46:13Z"
        },
        {
          "tag": "v1.14.0",
          "kind": "minor",
          "published_at": "2025-02-24T14:24:35Z"
        },
        {
          "tag": "v1.13.1",
          "kind": "patch",
          "published_at": "2024-09-23T11:50:09Z"
        },
        {
          "tag": "v1.12.0",
          "kind": "minor",
          "published_at": "2024-05-22T08:31:56Z"
        },
        {
          "tag": "v1.11.0",
          "kind": "minor",
          "published_at": "2023-06-30T13:26:57Z"
        },
        {
          "tag": "v1.10.0",
          "kind": "minor",
          "published_at": "2023-03-27T09:54:08Z"
        },
        {
          "tag": "v1.9.0",
          "kind": "minor",
          "published_at": "2022-08-22T16:00:40Z"
        },
        {
          "tag": "v1.8.1",
          "kind": "patch",
          "published_at": "2021-12-14T10:36:23Z"
        },
        {
          "tag": "v1.8.0",
          "kind": "minor",
          "published_at": "2021-03-12T18:07:35Z"
        },
        {
          "tag": "v1.7.0",
          "kind": "minor",
          "published_at": "2021-01-19T22:35:36Z"
        },
        {
          "tag": "v1.6.2",
          "kind": "patch",
          "published_at": "2020-09-04T05:35:35Z"
        },
        {
          "tag": "v1.6.1",
          "kind": "patch",
          "published_at": "2020-07-31T15:28:03Z"
        },
        {
          "tag": "v1.6.0",
          "kind": "minor",
          "published_at": "2020-05-06T12:18:29Z"
        },
        {
          "tag": "v1.5.2",
          "kind": "patch",
          "published_at": "2020-01-13T18:27:06Z"
        },
        {
          "tag": "v1.5.1",
          "kind": "patch",
          "published_at": "2019-12-18T16:40:25Z"
        },
        {
          "tag": "v1.3.2",
          "kind": "patch",
          "published_at": "2019-09-07T13:33:55Z"
        },
        {
          "tag": "v1.3.1",
          "kind": "patch",
          "published_at": "2019-08-27T10:20:37Z"
        },
        {
          "tag": "v1.2.2",
          "kind": "patch",
          "published_at": "2019-02-14T10:33:09Z"
        },
        {
          "tag": "v1.2.1",
          "kind": "patch",
          "published_at": "2019-02-12T11:50:08Z"
        },
        {
          "tag": "v1.1.1-alpha",
          "kind": "prerelease",
          "published_at": "2019-01-17T19:34:43Z"
        },
        {
          "tag": "v1.0.1-alpha.6",
          "kind": "prerelease",
          "published_at": "2019-01-09T21:03:04Z"
        },
        {
          "tag": "v1.0.1-alpha.5",
          "kind": "prerelease",
          "published_at": "2019-01-09T20:54:55Z"
        },
        {
          "tag": "v1.0.1-alpha.4",
          "kind": "prerelease",
          "published_at": "2019-01-09T16:43:45Z"
        },
        {
          "tag": "v1.0.1-alpha.3",
          "kind": "prerelease",
          "published_at": "2018-12-02T19:12:32Z"
        },
        {
          "tag": "v1.0.1-alpha.2",
          "kind": "prerelease",
          "published_at": "2018-11-30T13:20:34Z"
        },
        {
          "tag": "v1.0.1-alpha.1",
          "kind": "prerelease",
          "published_at": "2018-11-26T17:38:28Z"
        },
        {
          "tag": "v1.0.1-alpha",
          "kind": "prerelease",
          "published_at": "2018-11-22T15:33:52Z"
        }
      ],
      "recent_commits": [
        {
          "oid": "49d4e9ddb921430d6bb9ed28aeafc16676a18c65",
          "body": "This adds the capability for a testscript script to use a \"plugin\", an\nexternal binary that implements support for additional functionality not\neasily implemented with a regular command. Except when using the\ntestscript command, it must be explicitly enabled by using\n`plugin.Setup`.\n\nA plugin binary\n[…]\n`net/rpc` requires that the types used are made\npublic).\n\nWhen `plugin` is invoked inside a testscript, e.g.\n\n```\nplugin foo\n```\n\na plugin binary is searched for with the name `testscript-plugin-foo`.",
          "is_bot": false,
          "headline": "testscript/plugin: new package (#307)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2026-07-01T15:11:24Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "b82995bfb9f2a89a0cb6ef37b3c4da096c1a87fc",
          "body": "This allows a command to be able to add more commands, which is useful\nfor the up-coming plugin functionality.",
          "is_bot": false,
          "headline": "testscript: add dynamic command capability (#306)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2026-06-10T09:25:09Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5cab5df19260dc7e91f4ae9d2d41d0cbe300b70b",
          "body": "The `.mod` file is there because historical Go modules were\nnot required to contain a go.mod file, but this is almost\nalways redundant now, so just serve up the contents of the\n`go.mod` file if `.mod` is not present.\n\nThe `.info` file is similarly almost always redundant, so\nsynthesize it when it's not present.\n\nThis should make providing synthetic Go module contents\nconsiderably more convenient.\n\nAlso, actually make the goproxytest log messages consistent this time.",
          "is_bot": false,
          "headline": "goproxytest: make .mod and .info files optional (#305)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2026-04-17T10:11:04Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "02e5dd4b32865244bb1a4960c4d8db3288df059f",
          "body": "It's useful to have a hybrid mode where some modules\nare served from the txtar contents but others come\nfrom the regular Go sources. We make goproxytest\ncapable of doing that: adding a file named `OVERLAY`\nto the top level `.gomodproxy` directory triggers that\nbehavior.\n\nAlso standardize the log mes\n[…]\nced by goproxytest\nto make it clear in all cases where the logs are coming from,\nand remove the \"no archive\" log because that's more\ncommon in overlay mode and doesn't provide much useful\ninformation.",
          "is_bot": false,
          "headline": "goproxytest: add overlay capability (#304)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2026-04-17T08:19:35Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "3030644a6651fc95902ebe27e31581838861b233",
          "body": "https://go.dev/issue/25513 was resolved in Go 1.13\nsuch that %SYSTEMROOT% is always inherited by sub-processes by default.",
          "is_bot": false,
          "headline": "internal/vcs: remove SYSTEMROOT workaround for Windows",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2026-04-15T14:57:48Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a4c00dcc1489c43e018711a4cf19c03fe458bbea",
          "body": "The Go module proxy protocol defines a $base/$module/@latest endpoint\nthat returns the .info JSON for the latest version of a module.\nThe handler only matched paths containing /@v/, so /@latest got a 404.\n\nAdd a check for the /@latest suffix before the /@v/ routing.\nWhen matched, find the highest re\n[…]\nexpose /@latest\nresponses to the user; it uses the endpoint internally as a fallback.\nThere is no go subcommand whose output we could assert on in a script\nto verify that /@latest is served correctly.",
          "is_bot": false,
          "headline": "goproxytest: handle /@latest endpoint",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2026-04-15T14:55:13Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "19311e852d49dbf76a37a675c490d55f5286e106",
          "body": "Mainly so that gopls is not as noisy when editing files.",
          "is_bot": false,
          "headline": "all: go fix ./...",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2026-04-15T14:55:13Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "74d131225ff109d843ce5a485ba35aa0478d8c4b",
          "body": null,
          "is_bot": false,
          "headline": "test on Go 1.25 and 1.26",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2026-04-15T14:55:13Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "aa1b1e25579a8bb2dbd991bc179ea2227232096d",
          "body": "The testscript command supports putting Go proxy files inside the same\ntxtar file as everything else, but that functionality isn't easily\navailable to regular testscript users. Address that by adding a `Setup`\nfunction that works in the same fashion as `gotooltest.Setup`, and make\nthe testscript command use it.",
          "is_bot": false,
          "headline": "goproxytest: add Setup (#303)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2026-04-15T11:22:38Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5223effb313364ee36b8951aee816228675ebff1",
          "body": "This just bit me and it stumped me for a solid five minutes.\nI'm sure I've made the mistake at least one more time elsewhere.",
          "is_bot": false,
          "headline": "testscript: protect against no-op uses of cmp",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2025-04-10T11:36:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ee70938f5823866e5bcbee66da908d859a36b913",
          "body": "When ContinueOnError is set, we want to rewind the last block if it was\nnot in error.",
          "is_bot": false,
          "headline": "testscript: rewind last block if it was not in error",
          "author_name": "Paul Jolly",
          "author_login": "myitcv",
          "committed_at": "2025-03-20T16:38:39Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a4ecbfbbaac506bbcef3691f7d0174ee989dd033",
          "body": "This allows us to more clearly see the impact of a later fix to\nContinueOnError.",
          "is_bot": false,
          "headline": "testscript: add a non-failing block to the end of logging tests",
          "author_name": "Paul Jolly",
          "author_login": "myitcv",
          "committed_at": "2025-03-20T16:38:39Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5e4708f4d40ec6da9b3b4c6698c3b920be5ca133",
          "body": "\"Reset\" verbose in the case that we are using ContinueOnError\nso that the next block only shows verbose output in case it\nis also in error. This ensures that later blocks that are not\nin error, do not needlessly show verbose output because of an\nearlier block that was in error.",
          "is_bot": false,
          "headline": "testscript: reset verbose on new blocks (#293)",
          "author_name": "Paul Jolly",
          "author_login": "myitcv",
          "committed_at": "2025-03-20T16:04:45Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "fa847a178cfa1ab8082595b58d3a323aed4078c4",
          "body": "Currently the cache code, taken directly from the Go internal\ncode, salts every hash with the current Go runtime version.\nThis is appropriate for Go itself but not for here where\nthe cache package is intended for more general use.\n\nPeople that need the hashes to depend on the Go runtime version\ncan explicitly include it as part of the hash.",
          "is_bot": false,
          "headline": "hash: do not salt with Go runtime version (#292)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2025-03-06T16:45:40Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "9ee3698d19c525c9cefe855433e5f6096b77c6f5",
          "body": "The recent transition from RunMain to Main meant that we started\ncalling os.Exit directly when Main finished.\nHowever, we failed to spot that os.Exit would make our earlier deferred\ncleanup of the temporary directory not run at all.\n\nSpotted because my /tmp started getting filled up after a few hours\nof development, and I found a suspiciously large number of\ntestscript-looking directories.",
          "is_bot": false,
          "headline": "testscript: remove temp dirs when finishing once again",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2025-02-25T12:37:03Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "eb182343bebe338dc881385c14d1a7d8c1e4422f",
          "body": null,
          "is_bot": false,
          "headline": "all: modernize -fix ./...",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2025-02-24T14:21:55Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "dd6dbb25bddce0b3475144fd32e51c08cc19a60a",
          "body": null,
          "is_bot": false,
          "headline": "add Go 1.24.x, drop 1.22.x",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2025-02-24T14:21:55Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a5dc8ff20d0a0cbdbe054b2bcc43f1a9d412da66",
          "body": "We wanted the user's command functions to return an exit code as an int\nrather than calling os.Exit directly like a main function\nso that we could collect coverage profiles from subprocesses.\nThis way, Go tests using testscript would still report the full\ncode coverage information even when using ne\n[…]\nueOnExit in our tests.\n\nAdd a new API, Main, which uses a `func()` signature just like\n`func main()`, meaning that no second function declaration is needed.\nDeprecate RunMain in favor of Main as well.",
          "is_bot": false,
          "headline": "testscript: phase out `func() int` in RunMain",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-12-26T12:14:12Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "f18544ac413f5cf3c9452e073535f83e0989d3db",
          "body": null,
          "is_bot": false,
          "headline": "diff,misspell: fix typos in comments (#282)",
          "author_name": "Oleksandr Redko",
          "author_login": "alexandear",
          "committed_at": "2024-12-06T21:52:44Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e71c4862218a6bf8fd719b444b5d492622af178e",
          "body": "Signed-off-by: Luca Comellini <luca.com@gmail.com>",
          "is_bot": false,
          "headline": "Bump Go dependencies",
          "author_name": "Luca Comellini",
          "author_login": "lucacome",
          "committed_at": "2024-10-08T14:05:07Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e67a4aa07a58fd7f4cc884153739cb77b34f0edb",
          "body": "dirhash, modfile, module, and semver simply forward to the upstream\npackages now, so we should no longer advertise them to users.\n\ntxtar is very close to that state, but not quite. Add a note.",
          "is_bot": false,
          "headline": "README: update the package list",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-09-23T11:44:11Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "47945490eb81473ad592ca87be8de4054f99d6c3",
          "body": "cmp.Or and no longer needing to shallow copy range loop vars.\n\nWhile here, remove an unused parameter as spotted by gopls.",
          "is_bot": false,
          "headline": "take advantage of Go 1.22",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-09-23T11:44:11Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5ce929e65f38a45eb82649213f81a56309bb23d6",
          "body": null,
          "is_bot": false,
          "headline": "drop Go 1.21, add Go 1.23",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-09-23T11:44:11Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "3a65db189041978f8abe8460f17affd7a3868731",
          "body": "It seems like x/mod/sumdb/dirhash appeared way back in 2019,\nand we had not noticed until now.",
          "is_bot": false,
          "headline": "dirhash: forward to golang.org/x/mod/sumdb/dirhash",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-09-20T09:38:10Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "361e7d2c652a2648e74aa46e94c7d4a619a1ff7e",
          "body": "I found that cmd/cue's tests were chatty because goproxytest\nwas complaining about missing modules which did not matter.\nBecause those logs always went directly to os.Stderr, I couldn't fix it\nwithout changing the API in this package.\n\nRather than adding a complex API that takes a logger,\nsince nearly all downstream use cases come from Go tests,\nadd an API on top of testing.TB which makes its use much nicer.",
          "is_bot": false,
          "headline": "goproxytest: add test wrapper API",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-09-20T09:38:10Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ccf4b4329d214bf5fafd8e44309c210999d0fd40",
          "body": "When an entire script runs and the end is reached, any background\nprocesses begun with a '&' command get interrupted or killed,\ndepending on the platform and timeout, and we wait for them to finish.\n\nWe also checked their resulting status code and failed if they didn't\nexit with a status code of 0. \n[…]\ncript command is being run, but such panics\nwere not being recovered once we reached the end of a script.\nNow that we don't check the result anymore here, the panics are gone.\n\nFixes #228.\nFixes #260.",
          "is_bot": false,
          "headline": "testscript: ignore result when interrupting background processes",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-07-09T15:00:35Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "66960b672088df056d7b9942d9e4f433ce01c285",
          "body": "https://github.com/codespell-project/codespell",
          "is_bot": false,
          "headline": "Fix typos discovered by codespell",
          "author_name": "Christian Clauss",
          "author_login": "cclauss",
          "committed_at": "2024-07-09T14:29:28Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "55565001c094a05d1cde0c37b8157989d7ed9ae9",
          "body": "It's bugged me for a long time that the error messages printed\r\nby the `testscript` command do not refer to the actual files\r\npassed to the command, but instead to a temporary\r\nfile created for the purposes of the command.\r\n\r\nThis change alters the testscript command so that it\r\navoids creating an e\n[…]\nt package to interpret\r\nexplicitly provided files instead.\r\n\r\nGratifyingly, this also simplifies the logic quite a bit.\r\n\r\nNote: this is dependent on #258, so should not be reviewed\r\nuntil that lands.",
          "is_bot": false,
          "headline": "cmd/testscript: do not create an extra temporary directory (#259)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2024-06-11T09:00:58Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "b143f3fd64d396b115ee7a4f98e64d3ef3280b77",
          "body": "This makes it possible to pass an arbitrary set of testscript\r\nfiles to be run instead of just a directory, making it possible\r\nfor the testscript command to pass its command line arguments\r\ndirectly.\r\n\r\nIn order to check that all the files are actually tested, we need\r\nto make the test harness impl\n[…]\name deduping logic is somewhat improved from\r\nsimilar logic in cmd/testscript, in that it is always guaranteed\r\nto produce unique names even in the presence of filenames\r\nthat look like deduped names.",
          "is_bot": false,
          "headline": "testscript: add Config.Files (#258)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2024-06-11T08:18:30Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "8300480d82dbc1ef6d98abf4b8ca00508026c5ed",
          "body": "The call to `T.Failed` and its associated comment are a\r\nlegacy of previous implementation. The comment isn't accurate and the\r\ncall isn't necessary (`FailNow` is always called even when `ContinueOnError`\r\nis set). Deprecate the associated `TFailed` type rather than removing it.",
          "is_bot": false,
          "headline": "cmd/testscript: remove redundant use of Failed (#257)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2024-06-10T21:04:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ee2fcaaf42efac6ca94b6f812b03ac0ea257b415",
          "body": "We had been using ancient versions of golang.org/x modules,\r\nwhich passed the tests but wasn't great as they contain bugs\r\nand most users would want their newer versions anyway.\r\n\r\nAssume Go 1.21 later; use slices.Compact and simplify a test.\r\n\r\nWhile here, update the setup-go action as well.",
          "is_bot": false,
          "headline": "update dependencies and rely on Go 1.21 APIs (#256)",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-06-10T20:38:33Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "1f3d24448bada4be73ee5c65669d57e630ef3773",
          "body": "Switches CI to run against Go 1.21 and 1.22,\nand bumps the minimum required Go version to 1.21.\n\nDropping 1.20 isn't strictly necessary;\nthis is just matching prior upgrades.\nIt can be added back if the maintainers prefer.",
          "is_bot": false,
          "headline": "all: Add Go 1.22, drop Go 1.20",
          "author_name": "Abhinav Gupta",
          "author_login": "abhinav",
          "committed_at": "2024-06-10T09:09:36Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "c8567cf8e95f4cdf88e05ae214a0da92dd20ad61",
          "body": "They aren't always HOME and TMPDIR; on GOOS=windows they are different.",
          "is_bot": false,
          "headline": "testscript: clarify HOME and TMPDIR env var names",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2024-05-09T06:42:11Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "2af95f28b640cfd81947d78491669def10dc61f6",
          "body": "This allows sending a termination signal to backgrounded commands.\r\n\r\nFixes #242.",
          "is_bot": false,
          "headline": "testscript: add kill command (#243)",
          "author_name": "Dan Kortschak",
          "author_login": "kortschak",
          "committed_at": "2024-04-15T09:58:25Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "31b9365d9d20a766c18dc00f5d4c33d5abfd4c70",
          "body": "It is not currently possible for a custom testscript command\nto change the working directory of that script run.\n`TestScript.Exec` runs the command in a subprocess,\nso one cannot do `ts.Exec(\"cd\", dir)`.\n\nThis change adds a `Chdir` method to `TestScript`\nthat allows changing the working directory of\n[…]\ns function matches similar functionality in the\n[`State.Chdir` method of rsc.io/script][1].\n(I ported some tests from rsc.io/script to testscript.)\n\n  [1]: https://pkg.go.dev/rsc.io/script#State.Chdir",
          "is_bot": false,
          "headline": "testscript: Add Chdir method to change directory",
          "author_name": "Abhinav Gupta",
          "author_login": "abhinav",
          "committed_at": "2024-04-11T14:51:20Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "9d241da7281ac22515dcc23acae32adb3a3cff0f",
          "body": "Otherwise it's not obvious that the \"go\" commands aren't a built-in feature.",
          "is_bot": false,
          "headline": "testscript: add doc link to gotooltest",
          "author_name": "Rudolf Farkas",
          "author_login": "rudifa",
          "committed_at": "2024-04-11T14:41:29Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "301d1b7b40de96ff0013098a680fb2c0ad0bf912",
          "body": "It's been a while since io/ioutil has been deprecated.\nGo 1.22 was just released, and the go.mod specifies 'go 1.20'.\nThis should be safe to remove at this point.\n\nThe change was largely automated, minus the `t.TempDir()` calls inside\ntest files, which was done manually.",
          "is_bot": false,
          "headline": "all: Move away from ioutil",
          "author_name": "Abhinav Gupta",
          "author_login": "abhinav",
          "committed_at": "2024-03-08T14:06:29Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "8e66eb92371d99796516bd7879d56bd6f6a2c0a9",
          "body": "Use uint32 instead of uint (64-bit in Go on s390x) to store the return\nvalue of the TIOCGPTN syscall.  This is to avoid the 32-bit value from\nbeing stored into a 64-bit buffer and get left-shifted by 32 when\ndereferencing, turning what should be /dev/pts/1 to /dev/pts/4294967296\non big-endian architectures such as s390x.\n\nSpecial thanks to the explanation and a similar bug fix provided at\nhttps://github.com/containerd/console/pull/51",
          "is_bot": false,
          "headline": "testscript: fix ptyName() returning /dev/pts/4294967296 on s390x",
          "author_name": "Anthony Fok",
          "author_login": "anthonyfok",
          "committed_at": "2024-02-16T11:15:41Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "2c88e7f58ae1ca6f811b818d0d985b4622556532",
          "body": "Copied from Go commit b18b05881691861c4279a50010829150f1684fa9.",
          "is_bot": false,
          "headline": "robustio: copy from cmd/go/internal/robustio (#239)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-12-13T11:29:26Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "fa6a31e0812c9c062852fbcb34447f2b9e26126d",
          "body": "This will be useful in some cmd/cue test scripts\nwhere we want each test to create a unique remote resource\nthat includes the current test name as a prefix,\nfor the sake of more easily seeing which test created which resource.",
          "is_bot": false,
          "headline": "testscript: add TestScript.Name",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-10-26T09:37:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0bcf77fec1bded4d5f2c88c58e1c723d7c660e86",
          "body": "This can easily save hundreds of stat calls per test script,\nparticularly when testing Go tools.\n\nWhile here, remove a few uses of the deprecated io/ioutil in cmd,\nand check some missed errors in txtar-c.",
          "is_bot": false,
          "headline": "testscript,goproxytest: use filepath.WalkDir",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-10-26T09:37:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "32ae33786eccde1672d4ba373c80e1bc282bfbf6",
          "body": "Do both in a loop to deduplicate code.\nWhile here, only set them if they aren't empty;\nthis way we don't unnecessarily pollute Vars with entries\nsuch as `GOCOVERDIR=` when they don't do anything useful.",
          "is_bot": false,
          "headline": "testscript: propagate GORACE like we already do with GOCOVERDIR",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-09-26T10:55:39Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b6a9d8be924bf36dc5c02866ff4d263c35d71d9b",
          "body": "And fix up the tests and code to adapt accordingly.\nWhile here, update the checkout action as well.",
          "is_bot": false,
          "headline": "all: add Go 1.21, drop Go 1.19",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-09-26T10:55:39Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "3fbe0b6b66f19f66f2092de2551fd00ada865690",
          "body": null,
          "is_bot": false,
          "headline": "testscript: skip pty test on macOS due to golang/go#61779",
          "author_name": "Filippo Valsorda",
          "author_login": "FiloSottile",
          "committed_at": "2023-08-07T08:26:00Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e748a675e42a53dcd7dcc102db1b3bb7ba4fef31",
          "body": null,
          "is_bot": false,
          "headline": "testscript: add ttyin/ttyout commands",
          "author_name": "Filippo Valsorda",
          "author_login": "FiloSottile",
          "committed_at": "2023-08-07T08:26:00Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ec119421bb970ac974ea4ac16d8b58ffd0d727fc",
          "body": "…ks (#225)\n\nHelp give some context for people who might be evaluating using this repo and are wondering:\r\n\r\n* what is the bus factor for the repo?\r\n* who are the maintainers?\r\n* are the maintainer(s) of this repo still interested in this repo (including, are they still using it)?\r\n* are other people\n[…]\n?\r\n* where did testscript come from?\r\n\r\nObviously, someone can hunt around to determine many of these things on their own,\r\nbut the intent is to help make that process more efficient.\r\n\r\nUpdates #196.",
          "is_bot": false,
          "headline": "README: add context on maintainers and a testscript overview with lin…",
          "author_name": "thepudds",
          "author_login": "thepudds",
          "committed_at": "2023-05-24T17:50:51Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "2d7bba0e58db9f8e3182e7da7c09df0ba05d7b1f",
          "body": null,
          "is_bot": false,
          "headline": "all: go fix to remove pre-go1.17 build tags",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-23T13:33:28Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "bc1bde8861d5248d4913436f17e6a1bc1fe9b1ae",
          "body": "Primarily testscript's code to support calling testing.MainStart;\nwe originally needed that to implement our own deep code coverage,\nbut thankfully `go test` does that for us automatically now.",
          "is_bot": false,
          "headline": "all: remove some unused code",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-15T15:37:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5821053f7f5ad1434f01cd26d24a840c3447c6c2",
          "body": "As of commit 0fd6ae548f550bdbee4a434285ff052fb9dc7417.\n\nBesides rewriting import paths, we swapped base.Fatalf with log.Fatalf,\nand replaced cfg.Getenv with os.Getenv, adding a note about the\ndifference in behavior. The old code already had this limitation.\n\nWe hadn't updated this package since it w\n[…]\nresult, and that will\ncontinue to work like it did before.\nChecking for errors on trim is useful, which is why upstream added it.\n\nFinally, the cache now uses lockedfile, which we already copied over.",
          "is_bot": false,
          "headline": "cache: update to Go tip as of April 2023",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-15T15:37:05Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "eeed7e8d0879fe100b877c9ebaa7e131d1e4756a",
          "body": "As of commit 7a21f799a5ac23d3e191a106d71af9b8f65279fd,\nwhich is crucially right before https://go.dev/cl/476917,\nas then internal/filelock starts using Go 1.21's errors.ErrUnsupported.\nWe still want to support Go 1.19 and 1.20 for a while.\n\nThe only change besides the import path rewriting is to drop testenv,\nwhich was only used for MustHaveExec and Command.\n\nNote that we no longer need to worry about unix build tags,\nas we now require Go 1.19 or later.",
          "is_bot": false,
          "headline": "lockedfile: update to Go tip as of March 2023",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-15T15:37:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a4f6fabd84c5fada757d5a234fc6cb10a5bb9c96",
          "body": "internal/syscall/windows/registry was never imported by any of our\npackages, so it seems to always have been unneeded module zip bloat.\n\ninternal/textutil was used by modfile, which now simply forwards to\nx/mod/modfile, so the import is gone.",
          "is_bot": false,
          "headline": "internal: remove unused packages",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-08T10:11:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b93e0026e77b05333e6bcfd7f96f398859c1342d",
          "body": "Now that it seems we found a fix to #200, there is no reason to stick\nto macos-11, which will likely be deprecated soon.\n\nUpdate actions/setup-go to its latest version as well.\nThe new version uses caching by default, which we do not need.\n\nWhile here, tidy up the cloneFile docs a bit.",
          "is_bot": false,
          "headline": "CI: go back to macos-latest",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-05-06T08:06:01Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "51501044374fb92d1bda8ddf243f3a70d3cd38bc",
          "body": "If a command is not found, we go through the list of defined commands\nand check if any of them are sufficiently close to the one used.\n\"Sufficiently close\" is defined by having a Damerau-Levenshtein distance\nof 1, which feels like it hits the sweet spot between usefulness and\nease of implementation.\n\nThe negation case is still special-cased, as negation is not in the set\nof defined commands.\n\nFixes #190",
          "is_bot": false,
          "headline": "testscript: suggest misspelled commands",
          "author_name": "Axel Wagner",
          "author_login": "Merovius",
          "committed_at": "2023-05-05T21:05:00Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "44c3b86add0e3fc00bb04962fe54a46f39796265",
          "body": "To fix unexpected errors of type:\n\n```\n[signal: killed]\nFAIL: testscripts/myecho.txt:1: unexpected command failure\n```\n\nFixes #200",
          "is_bot": false,
          "headline": "testscript: use unix.CloneFile on MacOs",
          "author_name": "Bjørn Erik Pedersen",
          "author_login": "bep",
          "committed_at": "2023-05-05T21:02:43Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "22b91279afa3deb4d927d2da6b113613fb0825f9",
          "body": "Similarly, expose (*TestScript).stderr via Stderr().\r\n\r\nCloses #139",
          "is_bot": false,
          "headline": "testscript: expose (*TestScript).stdout via Stdout() (#216)",
          "author_name": "Paul Jolly",
          "author_login": "myitcv",
          "committed_at": "2023-04-27T13:50:20Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "81831f2e61f257580dbafe6261572d239e13b699",
          "body": "People should in general be using the upstream packages\nrather than these. Also use the upstream packages directly\nwhen possible and remove some tests that aren't testing\ncode in this module any more.",
          "is_bot": false,
          "headline": "all: deprecate wrapper packages",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-03-27T18:05:41Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "d4265f6cfac589b819f8b5df15fc96ecaba65720",
          "body": "The golang.org/x/mod/module is now the canonical\r\nlocation of this package.",
          "is_bot": false,
          "headline": "module: forward to x/mod/module (#211)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-03-27T16:25:57Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ca7ccbd19c8f78936be0ba95cce077c773a5f342",
          "body": "Although we can't quite use the x/tools/txtar implementation in its\r\nentirety (https://github.com/golang/go/issues/59264 needs\r\nto be fixed first, and we implement some other functions that\r\nx/tools/txtar doesn't (yet?) have, we can at least alias its\r\ntypes, which makes it possible to work with other packages\r\nthat use those types.",
          "is_bot": false,
          "headline": "txtar: alias types to x/tools (#209)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-03-27T16:16:07Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a354da840ffb9d04bdff728b580199d08267cca2",
          "body": "This is now the canonical location of the semver package.",
          "is_bot": false,
          "headline": "semver: forward to x/mod/semver (#210)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-03-27T15:52:36Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "6e5fb8c21a80a290e35fc829f72b861d6d0c95fc",
          "body": "The canonical implementation of this code has now been made available\r\ninside the x/mod module, so use that. The API is almost identical,\r\nwith the exception of `ParseGopkgIn` which isn't there.",
          "is_bot": false,
          "headline": "modfile: forward to x/mod (#208)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-03-27T11:39:26Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "66d1a7a6f940a81ade651cd6cf17877912dbff3d",
          "body": "While here, clean up code to support older versions of Go.\nNote that none of these changes should explicitly break Go 1.18.",
          "is_bot": false,
          "headline": "add Go 1.20, drop 1.18",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-03-27T09:34:06Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f53b9911a55e635a69c3e5848eb35b12b3c1da1f",
          "body": "Per #200, macos-12 can cause sporadic `signal: killed` testscript\nfailures, and we have started seeing them in some jobs within\ngo-internal itself as well. Downgrade to macos-11 for now,\nlike we've done in other projects, as we still don't know the cause.\n\nAlso drop test-gotip; we haven't been keepi\n[…]\nearly not needed at the moment. If we want to ensure that\ngo-internal works on new major versions of Go before they are released,\nusing the beta or RC releases seems like a better and easier approach.",
          "is_bot": false,
          "headline": "CI: downgrade from macos-12, drop test-gotip",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-03-27T09:34:06Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "00e5e28d9d387238fbe374a99c0337b1e386be32",
          "body": "Now that we no longer have to worry about pkg/diff's quadratic space\nmemory usage, we can remove this limitation.\n\nNote that big_diff now includes the relatively big diff,\nbut having the file go from two thousand lines to four thousand lines\nseems reasonable enough, and keeps the test script simple.\n\nI intended to do this as part of the previous commit,\nbut clearly forgot to do this last piece.",
          "is_bot": false,
          "headline": "testscript: remove \"large files differ\" diff size limit",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-03-22T21:54:06Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "50a14409f175f086f5f0f343bf3e06ca917da08b",
          "body": "The main reason to prefer a copy of Go's internal/diff over pkg/diff is\nthat internal/diff is much more efficient in both time and memory usage.\nIn particular, pkg/diff required quadratic space in memory,\nwhich could easily cause \"out of memory\" errors in Go tests\nper https://github.com/pkg/diff/iss\n[…]\ne the new package produces a shorter,\nbut still entirely correct, diff.\n\nIt also seems like the new package includes a leading \"diff\" line to\nshow the two filenames. That seems like a harmless change.",
          "is_bot": false,
          "headline": "testscript: switch to new diff package",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-03-22T17:41:10Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "ec5cf8fef46165fe0dc0c344c9f234f224624441",
          "body": "From Go tip as of March 21st 2023,\nat commit 5f1a0320b92a60ee1283522135e00bff540ea115.\n\nThe only change is to replace the internal/txtar dependency\nwith our own txtar package.\nIt seems like upstream has its own tiny copy of x/tools/txtar,\npresumably so that even low level packages can use txtar in tests.\n\nFixes #157.",
          "is_bot": false,
          "headline": "diff: import from Go's internal/diff",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-03-22T17:41:10Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f0583b8402aaaece90297d43c5d977556ed53b98",
          "body": "Our code was a fairly hacky version of what Go 1.20 does for us,\nsince we had to externally reach into the testing internals\nto do the right thing before and after each program execution.\n\nWith Go 1.20, all we actually need to do is ensure that the GOCOVERDIR\nenvironment variable is forwarded proper\n[…]\nents\n\tok\tmvdan.cc/sh/v3/cmd/shfmt\t0.047s\n\nFixes #130, as the RemoveAll call is no longer present.\nFixes #161, as the API is now deprecated.\nFixes #199, as \"go test -coverprofile\" now works on Go 1.20.",
          "is_bot": false,
          "headline": "testscript: remove our code coverage mechanism thanks to Go 1.20",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2023-02-09T13:08:41Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "e3815afac6ff1a62f336b4e0ff7b63afb85b0c4c",
          "body": null,
          "is_bot": false,
          "headline": "all: run gofmt -w .",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2023-01-18T21:48:34Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e167c8804a724511aaf972af3f4e6a417997da77",
          "body": null,
          "is_bot": false,
          "headline": "ci: bump Go versions",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2023-01-18T21:48:34Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "89b23b0e8622cfa11173fc828703912f8454cf43",
          "body": "Co-authored-by: Roger Peppe <rogpeppe@gmail.com>",
          "is_bot": false,
          "headline": "testscript: add RequireUniqueNames parameter",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2023-01-18T20:02:41Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f98815cee4eed49bd442c6185d1fa6381860e98d",
          "body": "The new FailNow logic introduced in #192 had a flaw: it did\nnot correctly handle failures in the setup code, as observed in #185.\n\nThis PR fixes that omission.",
          "is_bot": false,
          "headline": "testscript: fix error handling in setup",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-01-17T12:44:59Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "9957a5216c116f4787d3b1afd8072405744804ee",
          "body": "This uses the -test.timeout flag (or the Params.Deadline field) to send\nfirst SIGQUIT (to get a stack trace) and then SIGKILL to a stuck\ncommand.",
          "is_bot": false,
          "headline": "testscript: import timeout behavior from stdlib",
          "author_name": "Filippo Valsorda",
          "author_login": "FiloSottile",
          "committed_at": "2023-01-13T21:18:20Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "6ac6b821ba3f0feb9bf6312a2290d22a0df65fbf",
          "body": "This fixes a few issues around the existing `testscript -continue` flag.\r\nNotably:\r\n\r\n- causing `T.Fatal` and `T.FailNow` to return normally meant that some logic inside\r\nthe testscript package that was expecting the old behaviour would fail to\r\nwork correctly (for example, a non-existent command wo\n[…]\n only, so it's hard to add similar\r\ntests to the `cmd/testscript` command to end-to-end test that, but the existing\r\ntest should act as sufficient \"smoke test\" that the continue logic is wired up\r\nOK.",
          "is_bot": false,
          "headline": "testscript: add Params.ContinueOnError (#192)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-01-09T16:00:49Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "97011061170ad1b357a83fec4b300d9a6d5a1a30",
          "body": "The flag was added in #189 but not documented in the usage message.",
          "is_bot": false,
          "headline": "cmd/testscript: mention -continue flag in usage (#191)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2023-01-06T11:34:07Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "fef05454be761a4a7c0950b7c9707075d4c2f1c6",
          "body": "This helps with writing and running bug reproducers using testscript.\nSince they are often meant to represent the desired behavior,\nand not the current behavior, they are designed to fail.\n\nHowever, some reproducers consist of multiple commands,\nand cmd/testscript would stop at the first command to \n[…]\n modify and read its `failed` field,\nbut without pointer receivers, `T.Failed` always returned false.\nIt appears that bug had been present for a long time.\n\nCo-Authored-By: Paul Jolly <paul@myitcv.io>",
          "is_bot": false,
          "headline": "cmd/testscript: add a -continue flag to not stop at the first error",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-11-23T16:39:38Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "c7b2344eb239e2ae66e9bc735012a3b548e429c8",
          "body": "This ensures we don't make any assumptions about the caller's working\r\ndirectory, which might contain an invalid go.mod, for example.",
          "is_bot": false,
          "headline": "gotooltest: run probe commands in temporary directory (#188)",
          "author_name": "Paul Jolly",
          "author_login": "myitcv",
          "committed_at": "2022-11-21T10:02:35Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "bdb789329d89285ed8fc7fc81e20a5b7f95cb6a4",
          "body": "Code taken from upstream commit d7dbe0111ef2a6de80a20fef188db61d8fab5c96.\r\n\r\nManual updates:\r\n- changed import paths\r\n- added `// +build` lines\r\n- changed `!unix` build tag in `internal/filelock/filelock_other.go`\r\n- removed call to `testenv.MustHaveExec` in `internal/filelock/filelock_test.go`.",
          "is_bot": false,
          "headline": "lockedfile: update from Go master (#186)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2022-11-14T10:36:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "645eaf1ff3787cb6b291e9513cd517bb41abbe7f",
          "body": null,
          "is_bot": false,
          "headline": "Add link to testscript tutorial (#183)",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-09-30T07:06:55Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "7a6a5f804c24039a8741921b97ffa0c3b8998be3",
          "body": "We have been setting `/`, `:`, and `$` for some time,\nbut they weren't documented. Do that.\n\n`goversion` doesn't belong here, as it was moved to `gotooltest`.\n\n`TMPDIR` was slightly wrong; it has started with a period for some time,\nto ensure that tools like `go list ./...` don't descend into it.",
          "is_bot": false,
          "headline": "testscript: update docs on set variables",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-08-22T10:17:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "c16c0a26aefb7d22d09791cc724b392fa061a4f7",
          "body": null,
          "is_bot": false,
          "headline": "testscript: remove leading newline before results",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-08-22T08:40:39Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0d96cbeaca6d36184f6712033f98e3d1b98673c0",
          "body": null,
          "is_bot": false,
          "headline": "Use 0o prefix for octal literals",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-08-22T08:40:28Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "57a71e030224bd7a0ea9eb7b5c60b91dbe48c11a",
          "body": null,
          "is_bot": false,
          "headline": "Trim '.txtar' extension from subtest name",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-08-20T16:27:41Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "77fe68fd64d5ff8e87842e8ff370837f3dc33fd1",
          "body": "They used args[0], which is the first argument to the command,\nrather than the command name itself:\n\n\t> gofumpt foo.go\n\tFAIL: [...] use 'exec foo.go' rather than 'foo.go' (because RequireExplicitExec is enabled)\n\nI believe I introduced this regression when refactoring the pull request\ndue to Roger's\n[…]\n does not produce stdout nor stderr.\nThe change seems easy enough to review manually,\nand our tests don't strictly check all error messages anyway.\n\nWhile here, remove the unnecessary use of -verbose.",
          "is_bot": false,
          "headline": "testscript: fix RequireExplicitExec error messages",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-08-04T14:54:08Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "bb36173db5cf27fb334e48a224d98dfbf713dda8",
          "body": "They used args[0], which is the first argument to the command,\nrather than the command name itself:\n\n\t> gofumpt foo.go\n\tFAIL: [...] use 'exec foo.go' rather than 'foo.go' (because RequireExplicitExec is enabled)\n\nI believe I introduced this regression when refactoring the pull request\ndue to Roger's\n[…]\n does not produce stdout nor stderr.\nThe change seems easy enough to review manually,\nand our tests don't strictly check all error messages anyway.\n\nWhile here, remove the unnecessary use of -verbose.",
          "is_bot": false,
          "headline": "testscript: fix RequireExplicitExec error messages",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-08-03T08:32:56Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "24313847d41c3559138ddd35a8c1ece8d7bfe550",
          "body": "From Go 1.19, the build constraint 'unix' proposed in golang/go#20322 is\nsatisfied by any sufficiently Unix-like value of GOOS, as defined by\nsrc/go/build/syslist.go. This commit adds a predefined 'unix' condition\nwith the same meaning, available for use in test scripts. The condition\nis satisfied if the target GOOS is one of the list of Unix-like systems\ndefined in 'imports.UnixOS'.\n\nFixes #166.\n\nCo-authored-by: Daniel Martí <mvdan@mvdan.cc>",
          "is_bot": false,
          "headline": "testscript: add 'unix' condition",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-07-28T14:18:44Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "8da7db87cbaa3ce88c8999f25ee2a61deb855001",
          "body": "From Go 1.19, the build constraint 'unix' proposed in golang/go#20322 is\nsatisfied by any sufficiently Unix-like value of GOOS, as defined by\nsrc/go/build/syslist.go. This commit adds a 'UnixOS' list containing the\nvalues of GOOS that would satisfy the 'unix' constraint in Go 1.19.\n\nCo-authored-by: Paul Jolly <paul@myitcv.io>",
          "is_bot": false,
          "headline": "imports: add 'UnixOS' list of Unix-like systems",
          "author_name": "John Arundel",
          "author_login": "bitfield",
          "committed_at": "2022-07-28T14:18:44Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "9d15b660d1d64391571fc7befe7dc128590a9ea3",
          "body": "We also document how top-level commands fed to RunMain work with and\nwithout \"exec\" the same way, and how RequireExplicitExec can drop\nbackwards compatibility for greater consistency.\n\nFixes #163.",
          "is_bot": false,
          "headline": "testscript: add Params.RequireExplicitExec",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-07-06T19:45:32Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "af73bbc5c731c56393fcbc15274944fb589ccbcc",
          "body": "For backwards compatibility, both testscript and goproxytest, which used\r\nto glob on `*.txt`, now look for both file extensions.\r\nNote that this required a bit of a refactor in testscript,\r\nas we cannot use a single glob expression to accomplish this.\r\n\r\nCode which produces files, such as txtar-addm\n[…]\nr, the diff churn would make this patch harder to review.\r\nIf a future version of go-internal only supports txtar extensions,\r\nthen it could replace all of those extensions accordingly.\r\n\r\nFixes #126.",
          "is_bot": false,
          "headline": "all: add support for txtar extension and prefer it (#159)",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-06-24T10:42:57Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "e9142ea72799679bef404f3a4ae63012aa4c9577",
          "body": "flag.ExitOnError will exit 0 for -h/-help, while the flag.PanicOnError\noverride in runCoverSubcommand was always exiting 2, making the\nsuccess/failure of running a command with -hhelp depend on whether\ncoverage is active.",
          "is_bot": false,
          "headline": "testscript: exit 0 in runCoverSubcommand if -help is used",
          "author_name": "Filippo Valsorda",
          "author_login": "FiloSottile",
          "committed_at": "2022-06-21T12:32:36Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "3b43157f323660f3bc1875a91bca5b697756ba7b",
          "body": "While here, bump gotip and the action versions.",
          "is_bot": false,
          "headline": "drop Go 1.16, add Go 1.18 (#158)",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-06-20T15:13:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "009359f0a81056fd155119a185c78dc37800f828",
          "body": "Otherwise, commands like `go mod tidy` will try to walk into the default\nGOPATH directory. At best, that's a waste of resources, since\ndirectories like GOMODPATH may contain lots of files. At worst, it\nresults in errors, as directories in GOMODPATH are not valid import paths:\n\n\t--- FAIL: TestScripts\n[…]\nath \"mod/gopath/pkg/mod/fruit.com@v1.1.0/fruit\" should not have @version\n\nWe add the test in goproxytest, as goproxytest already uses gotooltest,\nand we need an external module to reproduce the error.",
          "is_bot": false,
          "headline": "gotooltest: move default GOPATH out of the main module",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2022-04-22T15:25:52Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "3461ca1f2345421c6d6d05407a3ac0381bbd5c42",
          "body": null,
          "is_bot": false,
          "headline": "testscript: add go version conditions",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2022-03-12T16:09:53Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "635e0f0cfef5b8a3d60d1fcbd1bf5524f82bcfae",
          "body": "Trivia: the first defined Go version build constraint is go1.1.",
          "is_bot": false,
          "headline": "gotooltest: fix Go version regular expression",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2022-03-12T16:09:53Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b00b0791a63f23e694536b22df83152cffbc72db",
          "body": null,
          "is_bot": false,
          "headline": "testscript: add gc and gccgo conditions",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2022-03-12T16:09:53Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f1aca1d6f5fac8a207b72c9a084fa25fbee0e24e",
          "body": null,
          "is_bot": false,
          "headline": "testscript: tidy up condition logic",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2022-03-12T16:09:53Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b66946f698c53fa874bf0bb13a244a6658d9e365",
          "body": "There's no need to use it and every dependency lost is good.",
          "is_bot": false,
          "headline": "testscript: remove errgo dependency (#155)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2022-03-09T10:19:52Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f3cb5c2c6412a18a724f11dd790e0d676ff9ff3a",
          "body": "This lets us wait for an individual background command rather\r\nthan all of them at once.",
          "is_bot": false,
          "headline": "testscript: support named background commands (#152)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2022-01-12T17:50:52Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "dc66b3287aa4a31065a2da696768d9234f57316d",
          "body": "When a script has failed, the output of the commands running in the\r\nbackground can be useful to see, so display it then and also in verbose\r\nmode.",
          "is_bot": false,
          "headline": "testscript: print background command output on failure (#148)",
          "author_name": "Roger Peppe",
          "author_login": "rogpeppe",
          "committed_at": "2022-01-12T13:48:27Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "115ce09fd6b421993aafa8cdae0171429e9bd2c4",
          "body": null,
          "is_bot": false,
          "headline": "imports: Update goosList and goarchList",
          "author_name": "Tom Payne",
          "author_login": "twpayne",
          "committed_at": "2021-10-23T09:48:30Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "426834f3785d4a82afa50fcae091b69ce53fc5e1",
          "body": "In https://go-review.googlesource.com/c/go/+/354632,\none of the struct field names in corpusEntry got renamed.\n\nA minor change with a very easy fix.\nStill, this probably signals that we shouldn't release a tagged version\nwith Go 1.18 support just yet, as it's still in flux.\n\nBump the Go tip version we test against, too.",
          "is_bot": false,
          "headline": "testscript: adapt to another Go 1.18 tip change",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2021-10-14T10:30:43Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "86f73c5174517f64a171ff56b0fc5252242753db",
          "body": "Fuzzing support brought a new parameter to MainStart,\nas well as more methods on testDeps.\nUse build tags to support those without breaking 1.16 nor 1.17.\n\nWhile at it, bump CI to test the two latest Go versions,\nand run 1.17's gofmt, as CI demands it.\n\nFinally, make CI also test with Go's master version,\nto ensure that we are compatible with it.\nWe pin a specific commit, since that keeps CI stable.\n\nFixes #144.\n\nCo-authored-by: Roger Peppe <rogpeppe@gmail.com>",
          "is_bot": false,
          "headline": "testscript: add support for Go master aka 1.18",
          "author_name": "Daniel Martí",
          "author_login": "mvdan",
          "committed_at": "2021-09-23T15:10:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        }
      ],
      "releases_count": 28,
      "commits_last_year": 9,
      "latest_release_at": "2026-05-28T10:29:43Z",
      "latest_release_tag": "v1.15.0",
      "releases_from_tags": false,
      "days_since_last_push": 26,
      "active_weeks_last_year": 5,
      "days_since_latest_release": 61,
      "mean_days_between_releases": 211.4
    },
    "community": {
      "has_readme": true,
      "has_license": true,
      "has_description": true,
      "has_contributing": false,
      "health_percentage": 42,
      "has_issue_template": false,
      "has_code_of_conduct": false,
      "has_pull_request_template": false
    },
    "ecosystem": {
      "packages": [
        {
          "name": "github.com/rogpeppe/go-internal",
          "exists": true,
          "license": null,
          "keywords": [],
          "ecosystem": "go",
          "matches_repo": true,
          "registry_url": "https://pkg.go.dev/github.com/rogpeppe/go-internal",
          "is_deprecated": false,
          "latest_version": "v1.15.0",
          "repository_url": "https://github.com/rogpeppe/go-internal",
          "versions_count": 45,
          "total_downloads": null,
          "dependents_count": null,
          "deprecation_note": null,
          "maintainers_count": null,
          "monthly_downloads": null,
          "first_published_at": null,
          "latest_published_at": "2026-04-17T09:53:34Z",
          "latest_version_yanked": null,
          "days_since_latest_publish": 102
        }
      ]
    },
    "popularity": {
      "forks": 89,
      "stars": 988,
      "watchers": 16,
      "fork_history": {
        "days": [
          {
            "date": "2018-10-22",
            "count": 1
          },
          {
            "date": "2018-11-05",
            "count": 2
          },
          {
            "date": "2018-11-06",
            "count": 1
          },
          {
            "date": "2019-05-05",
            "count": 1
          },
          {
            "date": "2019-05-27",
            "count": 1
          },
          {
            "date": "2019-07-10",
            "count": 1
          },
          {
            "date": "2019-07-30",
            "count": 1
          },
          {
            "date": "2019-08-09",
            "count": 1
          },
          {
            "date": "2019-08-13",
            "count": 1
          },
          {
            "date": "2020-04-22",
            "count": 1
          },
          {
            "date": "2020-05-04",
            "count": 1
          },
          {
            "date": "2020-07-14",
            "count": 1
          },
          {
            "date": "2020-09-08",
            "count": 1
          },
          {
            "date": "2020-09-22",
            "count": 1
          },
          {
            "date": "2020-09-23",
            "count": 1
          },
          {
            "date": "2020-10-04",
            "count": 1
          },
          {
            "date": "2020-10-12",
            "count": 1
          },
          {
            "date": "2020-10-18",
            "count": 1
          },
          {
            "date": "2020-10-28",
            "count": 1
          },
          {
            "date": "2020-11-14",
            "count": 1
          },
          {
            "date": "2020-11-16",
            "count": 1
          },
          {
            "date": "2020-11-18",
            "count": 1
          },
          {
            "date": "2021-01-19",
            "count": 1
          },
          {
            "date": "2021-01-22",
            "count": 1
          },
          {
            "date": "2021-02-21",
            "count": 1
          },
          {
            "date": "2021-03-28",
            "count": 1
          },
          {
            "date": "2021-04-26",
            "count": 1
          },
          {
            "date": "2021-05-02",
            "count": 1
          },
          {
            "date": "2021-05-31",
            "count": 1
          },
          {
            "date": "2021-10-25",
            "count": 1
          },
          {
            "date": "2021-12-20",
            "count": 1
          },
          {
            "date": "2022-01-31",
            "count": 1
          },
          {
            "date": "2022-02-28",
            "count": 1
          },
          {
            "date": "2022-04-18",
            "count": 1
          },
          {
            "date": "2022-04-29",
            "count": 1
          },
          {
            "date": "2022-05-20",
            "count": 1
          },
          {
            "date": "2022-06-06",
            "count": 1
          },
          {
            "date": "2022-06-21",
            "count": 1
          },
          {
            "date": "2022-07-24",
            "count": 1
          },
          {
            "date": "2022-07-26",
            "count": 1
          },
          {
            "date": "2022-08-04",
            "count": 1
          },
          {
            "date": "2022-08-25",
            "count": 1
          },
          {
            "date": "2022-09-08",
            "count": 1
          },
          {
            "date": "2022-10-27",
            "count": 1
          },
          {
            "date": "2022-11-25",
            "count": 1
          },
          {
            "date": "2022-12-14",
            "count": 1
          },
          {
            "date": "2023-01-02",
            "count": 1
          },
          {
            "date": "2023-01-23",
            "count": 1
          },
          {
            "date": "2023-02-02",
            "count": 1
          },
          {
            "date": "2023-02-15",
            "count": 1
          },
          {
            "date": "2023-03-09",
            "count": 1
          },
          {
            "date": "2023-03-28",
            "count": 1
          },
          {
            "date": "2023-05-02",
            "count": 1
          },
          {
            "date": "2023-05-07",
            "count": 1
          },
          {
            "date": "2023-08-07",
            "count": 1
          },
          {
            "date": "2023-10-03",
            "count": 1
          },
          {
            "date": "2023-12-23",
            "count": 1
          },
          {
            "date": "2023-12-29",
            "count": 1
          },
          {
            "date": "2024-02-16",
            "count": 1
          },
          {
            "date": "2024-02-19",
            "count": 1
          },
          {
            "date": "2024-04-16",
            "count": 1
          },
          {
            "date": "2024-06-25",
            "count": 1
          },
          {
            "date": "2024-06-28",
            "count": 1
          },
          {
            "date": "2024-07-26",
            "count": 1
          },
          {
            "date": "2024-08-24",
            "count": 1
          },
          {
            "date": "2024-09-12",
            "count": 1
          },
          {
            "date": "2024-10-04",
            "count": 1
          },
          {
            "date": "2024-10-05",
            "count": 1
          },
          {
            "date": "2024-10-22",
            "count": 1
          },
          {
            "date": "2024-10-23",
            "count": 1
          },
          {
            "date": "2024-10-25",
            "count": 1
          },
          {
            "date": "2024-11-15",
            "count": 1
          },
          {
            "date": "2024-12-05",
            "count": 1
          },
          {
            "date": "2024-12-29",
            "count": 1
          },
          {
            "date": "2025-05-01",
            "count": 1
          },
          {
            "date": "2025-06-25",
            "count": 1
          },
          {
            "date": "2025-07-17",
            "count": 1
          },
          {
            "date": "2025-08-24",
            "count": 1
          },
          {
            "date": "2025-09-13",
            "count": 1
          },
          {
            "date": "2025-12-05",
            "count": 1
          },
          {
            "date": "2026-02-03",
            "count": 1
          },
          {
            "date": "2026-03-10",
            "count": 1
          },
          {
            "date": "2026-03-20",
            "count": 1
          },
          {
            "date": "2026-04-12",
            "count": 1
          }
        ],
        "complete": true,
        "collected": 85,
        "total_forks": 89
      },
      "star_history": null,
      "open_issues_and_prs": 39
    },
    "ai_readiness": {
      "has_nix": false,
      "example_dirs": [],
      "has_llms_txt": false,
      "has_dockerfile": false,
      "has_mcp_signal": false,
      "bootstrap_files": [],
      "api_schema_files": [],
      "has_devcontainer": false,
      "typecheck_configs": [],
      "toolchain_manifests": [
        "go.mod",
        "goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod"
      ],
      "largest_source_bytes": 41691,
      "source_files_sampled": 105,
      "oversized_source_files": 0,
      "agent_instruction_files": [],
      "agent_instruction_max_bytes": null
    },
    "dependencies": {
      "manifests": [
        "go.mod"
      ],
      "advisories": {
        "error": null,
        "scope": "repository_graph",
        "source": "osv",
        "findings": [
          {
            "name": "golang.org/x/sys",
            "direct": true,
            "version": "v0.26.0",
            "severity": "unknown",
            "ecosystem": "go",
            "cvss_score": null,
            "advisory_ids": [
              "GO-2026-5024"
            ],
            "fixed_version": "0.44.0",
            "advisory_count": 1,
            "oldest_advisory_days": 66
          }
        ],
        "collected": true,
        "malicious": [],
        "truncated": false,
        "by_severity": {
          "unknown": 1
        },
        "advisory_count": 1,
        "affected_count": 1,
        "assessed_count": 3,
        "malicious_count": 0,
        "assessed_package": null,
        "unassessed_count": 0,
        "direct_affected_count": 1
      },
      "ecosystems": [
        "go"
      ],
      "dependencies": [
        {
          "name": "golang.org/x/mod",
          "manifest": "go.mod",
          "ecosystem": "go",
          "version_constraint": "v0.21.0"
        },
        {
          "name": "golang.org/x/sys",
          "manifest": "go.mod",
          "ecosystem": "go",
          "version_constraint": "v0.26.0"
        },
        {
          "name": "golang.org/x/tools",
          "manifest": "go.mod",
          "ecosystem": "go",
          "version_constraint": "v0.26.0"
        }
      ],
      "all_dependencies": {
        "error": null,
        "source": "github-sbom",
        "packages": [
          {
            "name": "golang.org/x/mod",
            "direct": true,
            "version": "v0.21.0",
            "ecosystem": "go"
          },
          {
            "name": "golang.org/x/sys",
            "direct": true,
            "version": "v0.26.0",
            "ecosystem": "go"
          },
          {
            "name": "golang.org/x/tools",
            "direct": true,
            "version": "v0.26.0",
            "ecosystem": "go"
          }
        ],
        "collected": true,
        "truncated": false,
        "total_count": 3,
        "direct_count": 3,
        "indirect_count": 0
      }
    },
    "maintainership": {
      "issues": {
        "open_prs": 6,
        "merged_prs": 171,
        "open_issues": 33,
        "closed_ratio": 0.676,
        "closed_issues": 69,
        "closed_unmerged_prs": 27
      },
      "bus_factor": 2,
      "bot_contributors": 0,
      "top_contributors": [
        {
          "type": "User",
          "login": "rogpeppe",
          "commits": 64,
          "avatar_url": "https://avatars.githubusercontent.com/u/66491?v=4"
        },
        {
          "type": "User",
          "login": "mvdan",
          "commits": 51,
          "avatar_url": "https://avatars.githubusercontent.com/u/3576549?v=4"
        },
        {
          "type": "User",
          "login": "myitcv",
          "commits": 47,
          "avatar_url": "https://avatars.githubusercontent.com/u/3374574?v=4"
        },
        {
          "type": "User",
          "login": "twpayne",
          "commits": 11,
          "avatar_url": "https://avatars.githubusercontent.com/u/6942?v=4"
        },
        {
          "type": "User",
          "login": "bitfield",
          "commits": 6,
          "avatar_url": "https://avatars.githubusercontent.com/u/142262?v=4"
        },
        {
          "type": "User",
          "login": "FiloSottile",
          "commits": 4,
          "avatar_url": "https://avatars.githubusercontent.com/u/1225294?v=4"
        },
        {
          "type": "User",
          "login": "abhinav",
          "commits": 3,
          "avatar_url": "https://avatars.githubusercontent.com/u/41730?v=4"
        },
        {
          "type": "User",
          "login": "dmitris",
          "commits": 2,
          "avatar_url": "https://avatars.githubusercontent.com/u/31205?v=4"
        },
        {
          "type": "User",
          "login": "leitzler",
          "commits": 2,
          "avatar_url": "https://avatars.githubusercontent.com/u/3111805?v=4"
        },
        {
          "type": "User",
          "login": "anthonyfok",
          "commits": 1,
          "avatar_url": "https://avatars.githubusercontent.com/u/1274764?v=4"
        }
      ],
      "contributors_sampled": 23,
      "top_contributor_share": 0.314
    },
    "quality_signals": {
      "has_ci": true,
      "has_tests": true,
      "ci_workflows": [
        "test.yml"
      ],
      "has_docs_dir": false,
      "linter_configs": [],
      "has_editorconfig": false,
      "has_linter_config": false,
      "has_precommit_config": false
    },
    "security_signals": {
      "lockfiles": [
        "go.sum"
      ],
      "scorecard": {
        "checks": [
          {
            "name": "Binary-Artifacts",
            "score": 10,
            "reason": "no binaries found in the repo",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
          },
          {
            "name": "Branch-Protection",
            "score": 0,
            "reason": "branch protection not enabled on development/release branches",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
          },
          {
            "name": "CI-Tests",
            "score": 3,
            "reason": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
          },
          {
            "name": "CII-Best-Practices",
            "score": 0,
            "reason": "no effort to earn an OpenSSF best practices badge detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
          },
          {
            "name": "Code-Review",
            "score": 9,
            "reason": "Found 22/23 approved changesets -- score normalized to 9",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
          },
          {
            "name": "Contributors",
            "score": 10,
            "reason": "project has 19 contributing companies or organizations",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
          },
          {
            "name": "Dangerous-Workflow",
            "score": 10,
            "reason": "no dangerous workflow patterns detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
          },
          {
            "name": "Dependency-Update-Tool",
            "score": 0,
            "reason": "no update tool detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
          },
          {
            "name": "Fuzzing",
            "score": 10,
            "reason": "project is fuzzed",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
          },
          {
            "name": "License",
            "score": 10,
            "reason": "license file detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
          },
          {
            "name": "Maintained",
            "score": 1,
            "reason": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
          },
          {
            "name": "Packaging",
            "score": null,
            "reason": "packaging workflow not detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
          },
          {
            "name": "Pinned-Dependencies",
            "score": 0,
            "reason": "dependency not pinned by hash detected -- score normalized to 0",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
          },
          {
            "name": "SAST",
            "score": 0,
            "reason": "SAST tool is not run on all commits -- score normalized to 0",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
          },
          {
            "name": "Security-Policy",
            "score": 0,
            "reason": "security policy file not detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
          },
          {
            "name": "Signed-Releases",
            "score": null,
            "reason": "no releases found",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
          },
          {
            "name": "Token-Permissions",
            "score": 0,
            "reason": "detected GitHub workflow tokens with excessive permissions",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
          },
          {
            "name": "Vulnerabilities",
            "score": 9,
            "reason": "1 existing vulnerabilities detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
          }
        ],
        "commit": "49d4e9ddb921430d6bb9ed28aeafc16676a18c65",
        "ran_at": "2026-07-28T13:07:12Z",
        "aggregate_score": 4.6,
        "scorecard_version": "v5.5.0"
      },
      "has_codeql_workflow": false,
      "has_security_policy": false,
      "has_dependabot_config": false
    },
    "contribution_flow": {
      "collected": true,
      "ci_last_run_at": "2026-07-01T15:14:58Z",
      "oldest_open_prs": [
        {
          "number": 175,
          "created_at": "2022-08-04T18:48:55Z",
          "last_comment_at": "2023-12-21T22:01:58Z",
          "last_comment_author": "rudifa"
        },
        {
          "number": 181,
          "created_at": "2022-08-27T13:30:45Z",
          "last_comment_at": "2022-10-06T09:50:54Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 268,
          "created_at": "2024-08-08T16:31:02Z",
          "last_comment_at": "2024-08-08T16:31:59Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 269,
          "created_at": "2024-08-24T08:44:59Z",
          "last_comment_at": "2025-02-13T12:25:12Z",
          "last_comment_author": "abitrolly"
        },
        {
          "number": 298,
          "created_at": "2025-07-10T11:04:09Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 300,
          "created_at": "2025-09-13T11:08:13Z",
          "last_comment_at": null,
          "last_comment_author": null
        }
      ],
      "last_merged_pr_at": "2026-07-01T15:11:24Z",
      "ci_last_conclusion": "SUCCESS",
      "oldest_open_issues": [
        {
          "number": 55,
          "created_at": "2019-02-27T10:50:36Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 58,
          "created_at": "2019-03-01T15:46:48Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 63,
          "created_at": "2019-03-16T22:42:16Z",
          "last_comment_at": "2024-04-15T10:07:49Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 64,
          "created_at": "2019-03-19T20:51:55Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 69,
          "created_at": "2019-04-03T13:54:27Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 75,
          "created_at": "2019-07-22T08:58:02Z",
          "last_comment_at": "2019-07-22T09:52:54Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 76,
          "created_at": "2019-07-29T20:33:41Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 89,
          "created_at": "2020-02-03T10:02:29Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 93,
          "created_at": "2020-03-19T17:09:39Z",
          "last_comment_at": "2023-09-20T11:10:34Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 112,
          "created_at": "2020-09-30T15:26:19Z",
          "last_comment_at": "2020-12-10T15:42:10Z",
          "last_comment_author": "rogpeppe"
        },
        {
          "number": 116,
          "created_at": "2020-11-20T09:42:30Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 142,
          "created_at": "2021-06-04T05:13:28Z",
          "last_comment_at": "2021-07-29T15:31:07Z",
          "last_comment_author": "myitcv"
        },
        {
          "number": 151,
          "created_at": "2022-01-06T11:42:09Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 170,
          "created_at": "2022-07-28T07:50:53Z",
          "last_comment_at": "2023-07-03T12:04:53Z",
          "last_comment_author": "myitcv"
        },
        {
          "number": 173,
          "created_at": "2022-07-30T08:39:40Z",
          "last_comment_at": "2022-07-31T10:10:19Z",
          "last_comment_author": "bitfield"
        },
        {
          "number": 176,
          "created_at": "2022-08-15T09:49:52Z",
          "last_comment_at": "2022-08-22T08:41:55Z",
          "last_comment_author": "mvdan"
        },
        {
          "number": 187,
          "created_at": "2022-11-13T13:23:31Z",
          "last_comment_at": "2022-11-20T17:31:10Z",
          "last_comment_author": "rogpeppe"
        },
        {
          "number": 196,
          "created_at": "2023-01-21T02:04:03Z",
          "last_comment_at": "2023-05-08T08:05:23Z",
          "last_comment_author": "myitcv"
        },
        {
          "number": 232,
          "created_at": "2023-06-28T13:56:50Z",
          "last_comment_at": "2023-10-11T17:43:09Z",
          "last_comment_author": "bep"
        },
        {
          "number": 237,
          "created_at": "2023-10-31T18:02:31Z",
          "last_comment_at": null,
          "last_comment_author": null
        }
      ]
    }
  },
  "config": {
    "disabled_metrics": [],
    "disabled_categories": [],
    "disabled_components": {}
  },
  "source": {
    "url": "https://github.com/rogpeppe/go-internal",
    "host": "github.com",
    "name": "go-internal",
    "owner": "rogpeppe"
  },
  "metrics": {
    "overall": {
      "key": "overall",
      "band": "moderate",
      "name": "Overall health",
      "note": null,
      "notes": [],
      "value": 61,
      "inputs": {
        "security": 55,
        "vitality": 59,
        "community": 61,
        "governance": 76,
        "engineering": 52
      },
      "components": []
    },
    "categories": [
      {
        "key": "vitality",
        "band": "moderate",
        "name": "Vitality",
        "value": 59,
        "weight": 0.22,
        "metrics": [
          {
            "key": "development_activity",
            "band": "at_risk",
            "name": "Development activity",
            "note": null,
            "notes": [],
            "value": 42,
            "inputs": {
              "commits_last_year": 9,
              "human_commit_share": 1,
              "days_since_last_push": 26,
              "active_weeks_last_year": 5
            },
            "components": [
              {
                "key": "push_recency",
                "name": "Push recency",
                "detail": "last push 26 days ago",
                "points": 28.8,
                "status": "partial",
                "details": [
                  {
                    "code": "push_recency",
                    "params": {
                      "days": 26
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "commit_cadence",
                "name": "Commit cadence",
                "detail": "5/52 weeks with commits",
                "points": 3.5,
                "status": "partial",
                "details": [
                  {
                    "code": "commit_cadence_weeks",
                    "params": {
                      "weeks": 5
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "commit_volume",
                "name": "Commit volume",
                "detail": "9 commits in the last year",
                "points": 9,
                "status": "partial",
                "details": [
                  {
                    "code": "commits_last_year",
                    "params": {
                      "count": 9
                    }
                  }
                ],
                "max_points": 18
              },
              {
                "key": "openssf_scorecard_maintained",
                "name": "OpenSSF Scorecard: Maintained",
                "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
                "points": 1,
                "status": "partial",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "release_discipline",
            "band": "good",
            "name": "Release discipline",
            "note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
            "notes": [
              {
                "code": "excluded_no_data",
                "params": {
                  "components": [
                    "openssf_scorecard_signed_releases"
                  ]
                }
              },
              {
                "code": "weights_renormalized",
                "params": {}
              }
            ],
            "value": 84,
            "inputs": {
              "releases_count": 28,
              "latest_release_tag": "v1.15.0",
              "releases_from_tags": false,
              "days_since_latest_release": 61,
              "mean_days_between_releases": 211.4
            },
            "components": [
              {
                "key": "ships_releases",
                "name": "Ships releases",
                "detail": "28 releases published",
                "points": 27,
                "status": "met",
                "details": [
                  {
                    "code": "releases_published",
                    "params": {
                      "count": 28
                    }
                  }
                ],
                "max_points": 27
              },
              {
                "key": "release_recency",
                "name": "Release recency",
                "detail": "latest release 61 days ago",
                "points": 36,
                "status": "met",
                "details": [
                  {
                    "code": "release_recency",
                    "params": {
                      "days": 61
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "release_cadence",
                "name": "Release cadence",
                "detail": "a release every ~211.4 days",
                "points": 12.6,
                "status": "partial",
                "details": [
                  {
                    "code": "release_cadence",
                    "params": {
                      "gap": 211.4
                    }
                  }
                ],
                "max_points": 27
              },
              {
                "key": "openssf_scorecard_signed_releases",
                "name": "OpenSSF Scorecard: Signed-Releases",
                "detail": "no releases found",
                "points": 0,
                "status": "excluded",
                "details": [
                  {
                    "code": "no_data",
                    "params": {}
                  }
                ],
                "max_points": 10
              }
            ]
          },
          {
            "key": "abandonment",
            "band": "excellent",
            "name": "Abandonment",
            "note": null,
            "notes": [],
            "value": 100,
            "inputs": {
              "cap": null,
              "state": "maintained",
              "guards": [],
              "signals": [],
              "red_flag": false,
              "multiplier_pct": 100,
              "declared_reason": null,
              "unverified_reason": null,
              "unanswered_open_prs": null,
              "unanswered_open_issues": null,
              "days_since_last_merged_pr": null,
              "days_since_last_human_commit": 26,
              "days_since_last_human_commit_is_floor": false
            },
            "components": [
              {
                "key": "project_is_still_maintained",
                "name": "Project is still maintained",
                "detail": "last human commit 26 days ago",
                "points": 100,
                "status": "met",
                "details": [
                  {
                    "code": "abandonment_maintained",
                    "params": {
                      "days": 26
                    }
                  }
                ],
                "max_points": 100
              }
            ]
          }
        ],
        "description": "Is the project alive — is code being written and are releases shipping?"
      },
      {
        "key": "community",
        "band": "moderate",
        "name": "Community & Adoption",
        "value": 61,
        "weight": 0.18,
        "metrics": [
          {
            "key": "popularity",
            "band": "good",
            "name": "Popularity & adoption",
            "note": null,
            "notes": [],
            "value": 71,
            "inputs": {
              "forks": 89,
              "stars": 988,
              "watchers": 16,
              "growth_state": "unverified",
              "growth_factor_pct": 100,
              "growth_unverified_reason": "no_history"
            },
            "components": [
              {
                "key": "stars",
                "name": "Stars",
                "detail": "988 stars",
                "points": 48.6,
                "status": "partial",
                "details": [
                  {
                    "code": "stars",
                    "params": {
                      "count": 988
                    }
                  }
                ],
                "max_points": 60
              },
              {
                "key": "forks",
                "name": "Forks",
                "detail": "89 forks",
                "points": 16.2,
                "status": "partial",
                "details": [
                  {
                    "code": "forks",
                    "params": {
                      "count": 89
                    }
                  }
                ],
                "max_points": 25
              },
              {
                "key": "watchers",
                "name": "Watchers",
                "detail": "16 watchers",
                "points": 6.5,
                "status": "partial",
                "details": [
                  {
                    "code": "watchers",
                    "params": {
                      "count": 16
                    }
                  }
                ],
                "max_points": 15
              }
            ]
          },
          {
            "key": "community_health",
            "band": "moderate",
            "name": "Community health",
            "note": null,
            "notes": [],
            "value": 50,
            "inputs": {
              "has_readme": true,
              "has_license": true,
              "has_contributing": false,
              "has_issue_template": false,
              "has_code_of_conduct": false,
              "has_pull_request_template": false
            },
            "components": [
              {
                "key": "readme",
                "name": "README",
                "detail": null,
                "points": 22.5,
                "status": "met",
                "details": [],
                "max_points": 22.5
              },
              {
                "key": "license",
                "name": "License",
                "detail": "recognized license (BSD-3-Clause)",
                "points": 22.5,
                "status": "met",
                "details": [
                  {
                    "code": "license_standard",
                    "params": {}
                  },
                  {
                    "code": "license_spdx",
                    "params": {
                      "spdx": "BSD-3-Clause"
                    }
                  }
                ],
                "max_points": 22.5
              },
              {
                "key": "contributing_guide",
                "name": "CONTRIBUTING guide",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 18
              },
              {
                "key": "code_of_conduct",
                "name": "Code of conduct",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 13.5
              },
              {
                "key": "issue_template",
                "name": "Issue template",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 7.2
              },
              {
                "key": "pr_template",
                "name": "PR template",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 6.3
              }
            ]
          }
        ],
        "description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
      },
      {
        "key": "governance",
        "band": "good",
        "name": "Sustainability & Governance",
        "value": 76,
        "weight": 0.24,
        "metrics": [
          {
            "key": "maintainer_resilience",
            "band": "moderate",
            "name": "Maintainer resilience (bus factor)",
            "note": null,
            "notes": [],
            "value": 64,
            "inputs": {
              "bus_factor": 2,
              "contributors_sampled": 23,
              "top_contributor_share": 0.314
            },
            "components": [
              {
                "key": "bus_factor",
                "name": "Bus factor",
                "detail": "2 contributor(s) cover half of all commits",
                "points": 25.2,
                "status": "partial",
                "details": [
                  {
                    "code": "bus_factor",
                    "params": {
                      "count": 2
                    }
                  }
                ],
                "max_points": 54
              },
              {
                "key": "commit_distribution",
                "name": "Commit distribution",
                "detail": "top contributor authored 31% of commits",
                "points": 15.4,
                "status": "partial",
                "details": [
                  {
                    "code": "top_contributor_share",
                    "params": {
                      "share": 31
                    }
                  }
                ],
                "max_points": 22.5
              },
              {
                "key": "contributor_breadth",
                "name": "Contributor breadth",
                "detail": "23 contributors",
                "points": 13.5,
                "status": "met",
                "details": [
                  {
                    "code": "contributors_sampled",
                    "params": {
                      "count": 23
                    }
                  }
                ],
                "max_points": 13.5
              },
              {
                "key": "openssf_scorecard_contributors",
                "name": "OpenSSF Scorecard: Contributors",
                "detail": "project has 19 contributing companies or organizations",
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "responsiveness",
            "band": "good",
            "name": "Issue & PR responsiveness",
            "note": null,
            "notes": [],
            "value": 78,
            "inputs": {
              "merged_prs": 171,
              "open_issues": 33,
              "closed_issues": 69,
              "issue_closed_ratio": 0.676,
              "closed_unmerged_prs": 27
            },
            "components": [
              {
                "key": "issue_resolution",
                "name": "Issue resolution",
                "detail": "68% of issues closed",
                "points": 31.6,
                "status": "partial",
                "details": [
                  {
                    "code": "issues_closed_share",
                    "params": {
                      "share": 68
                    }
                  }
                ],
                "max_points": 46.75
              },
              {
                "key": "pr_acceptance",
                "name": "PR acceptance",
                "detail": "171/198 decided PRs merged",
                "points": 33,
                "status": "partial",
                "details": [
                  {
                    "code": "decided_prs_merged",
                    "params": {
                      "merged": 171,
                      "decided": 198
                    }
                  }
                ],
                "max_points": 38.25
              },
              {
                "key": "openssf_scorecard_code_review",
                "name": "OpenSSF Scorecard: Code-Review",
                "detail": "Found 22/23 approved changesets -- score normalized to 9",
                "points": 13.5,
                "status": "partial",
                "details": [],
                "max_points": 15
              }
            ]
          },
          {
            "key": "stewardship",
            "band": "good",
            "name": "Ownership & stewardship",
            "note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
            "notes": [
              {
                "code": "excluded_no_data",
                "params": {
                  "components": [
                    "verified_domain"
                  ]
                }
              },
              {
                "code": "weights_renormalized",
                "params": {}
              }
            ],
            "value": 70,
            "inputs": {
              "followers": 755,
              "owner_type": "User",
              "is_verified": null,
              "owner_login": "rogpeppe",
              "public_repos": 74,
              "account_age_days": 6334
            },
            "components": [
              {
                "key": "ownership_backing",
                "name": "Ownership backing",
                "detail": "personal (user) account",
                "points": 10,
                "status": "partial",
                "details": [
                  {
                    "code": "owner_personal",
                    "params": {}
                  }
                ],
                "max_points": 30
              },
              {
                "key": "verified_domain",
                "name": "Verified domain",
                "detail": "not applicable to user accounts",
                "points": 0,
                "status": "excluded",
                "details": [
                  {
                    "code": "not_applicable_to_user_accounts",
                    "params": {}
                  }
                ],
                "max_points": 20
              },
              {
                "key": "owner_reach",
                "name": "Owner reach",
                "detail": "755 followers of rogpeppe",
                "points": 20.7,
                "status": "partial",
                "details": [
                  {
                    "code": "owner_followers",
                    "params": {
                      "count": 755,
                      "login": "rogpeppe"
                    }
                  }
                ],
                "max_points": 25
              },
              {
                "key": "track_record",
                "name": "Track record",
                "detail": "74 public repos, account ~17 yr old",
                "points": 25,
                "status": "met",
                "details": [
                  {
                    "code": "public_repos",
                    "params": {
                      "count": 74
                    }
                  },
                  {
                    "code": "account_age_years",
                    "params": {
                      "years": 17
                    }
                  }
                ],
                "max_points": 25
              }
            ]
          },
          {
            "key": "package_maintenance",
            "band": "excellent",
            "name": "Package maintenance",
            "note": null,
            "notes": [],
            "value": 100,
            "inputs": {
              "packages": [
                "github.com/rogpeppe/go-internal"
              ],
              "ecosystems": "go",
              "any_deprecated": false,
              "min_days_since_publish": 102
            },
            "components": [
              {
                "key": "published_resolvable",
                "name": "Published & resolvable",
                "detail": "1 package(s) on go",
                "points": 25,
                "status": "met",
                "details": [
                  {
                    "code": "packages_published",
                    "params": {
                      "count": 1,
                      "ecosystems": "go"
                    }
                  }
                ],
                "max_points": 25
              },
              {
                "key": "publish_recency",
                "name": "Publish recency",
                "detail": "latest publish 102 days ago",
                "points": 35,
                "status": "met",
                "details": [
                  {
                    "code": "publish_recency",
                    "params": {
                      "days": 102
                    }
                  }
                ],
                "max_points": 35
              },
              {
                "key": "version_history",
                "name": "Version history",
                "detail": "45 published versions",
                "points": 20,
                "status": "met",
                "details": [
                  {
                    "code": "published_versions",
                    "params": {
                      "count": 45
                    }
                  }
                ],
                "max_points": 20
              },
              {
                "key": "not_deprecated",
                "name": "Not deprecated",
                "detail": "active, not deprecated or yanked",
                "points": 20,
                "status": "met",
                "details": [
                  {
                    "code": "package_not_deprecated",
                    "params": {}
                  }
                ],
                "max_points": 20
              }
            ]
          }
        ],
        "description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
      },
      {
        "key": "engineering",
        "band": "moderate",
        "name": "Engineering Quality",
        "value": 52,
        "weight": 0.2,
        "metrics": [
          {
            "key": "engineering_practices",
            "band": "moderate",
            "name": "Engineering practices",
            "note": null,
            "notes": [],
            "value": 54,
            "inputs": {
              "has_ci": true,
              "has_tests": true,
              "has_editorconfig": false,
              "has_linter_config": false,
              "has_precommit_config": false
            },
            "components": [
              {
                "key": "ci_workflows",
                "name": "CI workflows",
                "detail": "1 workflow(s)",
                "points": 24,
                "status": "met",
                "details": [
                  {
                    "code": "ci_workflows",
                    "params": {
                      "count": 1
                    }
                  }
                ],
                "max_points": 24
              },
              {
                "key": "tests_present",
                "name": "Tests present",
                "detail": null,
                "points": 24,
                "status": "met",
                "details": [],
                "max_points": 24
              },
              {
                "key": "linter_config",
                "name": "Linter config",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 16
              },
              {
                "key": "pre_commit_hooks",
                "name": "Pre-commit hooks",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 9.6
              },
              {
                "key": "editorconfig",
                "name": ".editorconfig",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 6.4
              },
              {
                "key": "openssf_scorecard_ci_tests",
                "name": "OpenSSF Scorecard: CI-Tests",
                "detail": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3",
                "points": 6,
                "status": "partial",
                "details": [],
                "max_points": 20
              }
            ]
          },
          {
            "key": "documentation",
            "band": "moderate",
            "name": "Documentation",
            "note": null,
            "notes": [],
            "value": 50,
            "inputs": {
              "topics": [],
              "has_wiki": true,
              "homepage": null,
              "has_readme": true,
              "has_docs_dir": false,
              "has_description": true
            },
            "components": [
              {
                "key": "readme",
                "name": "README",
                "detail": null,
                "points": 30,
                "status": "met",
                "details": [],
                "max_points": 30
              },
              {
                "key": "documentation_directory",
                "name": "Documentation directory",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 25
              },
              {
                "key": "documentation_homepage_site",
                "name": "Documentation / homepage site",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 15
              },
              {
                "key": "repository_description",
                "name": "Repository description",
                "detail": null,
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              },
              {
                "key": "topics",
                "name": "Topics",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 10
              },
              {
                "key": "wiki",
                "name": "Wiki",
                "detail": null,
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              }
            ]
          }
        ],
        "description": "Are baseline engineering and documentation practices in place?"
      },
      {
        "key": "security",
        "band": "moderate",
        "name": "Security",
        "value": 55,
        "weight": 0.16,
        "metrics": [
          {
            "key": "security_posture",
            "band": "at_risk",
            "name": "Security posture",
            "note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
            "notes": [
              {
                "code": "excluded_no_data",
                "params": {
                  "components": [
                    "packaging",
                    "signed_releases"
                  ]
                }
              },
              {
                "code": "weights_renormalized",
                "params": {}
              }
            ],
            "value": 46,
            "inputs": {
              "source": "openssf_scorecard",
              "checks_evaluated": 16,
              "scorecard_version": "v5.5.0",
              "checks_inconclusive": 2,
              "scorecard_aggregate": 4.6
            },
            "components": [
              {
                "key": "binary_artifacts",
                "name": "Binary-Artifacts",
                "detail": "no binaries found in the repo",
                "points": 7.5,
                "status": "met",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "branch_protection",
                "name": "Branch-Protection",
                "detail": "branch protection not enabled on development/release branches",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "ci_tests",
                "name": "CI-Tests",
                "detail": "7 out of 23 merged PRs checked by a CI test -- score normalized to 3",
                "points": 0.8,
                "status": "partial",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "cii_best_practices",
                "name": "CII-Best-Practices",
                "detail": "no effort to earn an OpenSSF best practices badge detected",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "code_review",
                "name": "Code-Review",
                "detail": "Found 22/23 approved changesets -- score normalized to 9",
                "points": 6.8,
                "status": "partial",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "contributors",
                "name": "Contributors",
                "detail": "project has 19 contributing companies or organizations",
                "points": 2.5,
                "status": "met",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "dangerous_workflow",
                "name": "Dangerous-Workflow",
                "detail": "no dangerous workflow patterns detected",
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              },
              {
                "key": "dependency_update_tool",
                "name": "Dependency-Update-Tool",
                "detail": "no update tool detected",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "fuzzing",
                "name": "Fuzzing",
                "detail": "project is fuzzed",
                "points": 5,
                "status": "met",
                "details": [],
                "max_points": 5
              },
              {
                "key": "license",
                "name": "License",
                "detail": "license file detected",
                "points": 2.5,
                "status": "met",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "maintained",
                "name": "Maintained",
                "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
                "points": 0.8,
                "status": "partial",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "packaging",
                "name": "Packaging",
                "detail": "packaging workflow not detected",
                "points": 0,
                "status": "excluded",
                "details": [
                  {
                    "code": "no_data",
                    "params": {}
                  }
                ],
                "max_points": 5
              },
              {
                "key": "pinned_dependencies",
                "name": "Pinned-Dependencies",
                "detail": "dependency not pinned by hash detected -- score normalized to 0",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 5
              },
              {
                "key": "sast",
                "name": "SAST",
                "detail": "SAST tool is not run on all commits -- score normalized to 0",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 5
              },
              {
                "key": "security_policy",
                "name": "Security-Policy",
                "detail": "security policy file not detected",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 5
              },
              {
                "key": "signed_releases",
                "name": "Signed-Releases",
                "detail": "no releases found",
                "points": 0,
                "status": "excluded",
                "details": [
                  {
                    "code": "no_data",
                    "params": {}
                  }
                ],
                "max_points": 7.5
              },
              {
                "key": "token_permissions",
                "name": "Token-Permissions",
                "detail": "detected GitHub workflow tokens with excessive permissions",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "vulnerabilities",
                "name": "Vulnerabilities",
                "detail": "1 existing vulnerabilities detected",
                "points": 6.8,
                "status": "partial",
                "details": [],
                "max_points": 7.5
              }
            ]
          },
          {
            "key": "dependency_advisories",
            "band": "excellent",
            "name": "Dependency advisories",
            "note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 3 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
            "notes": [
              {
                "code": "excluded_no_data",
                "params": {
                  "components": [
                    "indirect_dependencies_free_of_known_advisories"
                  ]
                }
              },
              {
                "code": "weights_renormalized",
                "params": {}
              },
              {
                "code": "advisories_scope_repository",
                "params": {
                  "assessed": 3
                }
              },
              {
                "code": "advisories_repo_graph_caveat",
                "params": {}
              },
              {
                "code": "advisories_reachability",
                "params": {}
              }
            ],
            "value": 89,
            "inputs": {
              "source": "osv",
              "advisories": 1,
              "affected_packages": 1,
              "assessed_packages": 3,
              "unassessed_packages": 0,
              "affected_by_severity": "unknown 1",
              "direct_affected_packages": 1
            },
            "components": [
              {
                "key": "direct_dependencies_free_of_known_advisories",
                "name": "Direct dependencies free of known advisories",
                "detail": "1 affected: golang.org/x/sys v0.26.0 (unknown)",
                "points": 26.6,
                "status": "partial",
                "details": [
                  {
                    "code": "advisories_affected",
                    "params": {
                      "count": 1,
                      "packages": "golang.org/x/sys v0.26.0 (unknown)"
                    }
                  }
                ],
                "max_points": 35
              },
              {
                "key": "indirect_dependencies_free_of_known_advisories",
                "name": "Indirect dependencies free of known advisories",
                "detail": "transitive set not separable from development and test dependencies in this scope",
                "points": 0,
                "status": "excluded",
                "details": [
                  {
                    "code": "advisories_scope_not_separable",
                    "params": {}
                  }
                ],
                "max_points": 25
              },
              {
                "key": "no_advisories_left_outstanding",
                "name": "No advisories left outstanding",
                "detail": "no advisory has been public longer than 90 days",
                "points": 40,
                "status": "met",
                "details": [
                  {
                    "code": "advisories_none_stale",
                    "params": {
                      "days": 90
                    }
                  }
                ],
                "max_points": 40
              }
            ]
          },
          {
            "key": "malicious_dependencies",
            "band": "excellent",
            "name": "Malicious dependencies",
            "note": null,
            "notes": [],
            "value": 100,
            "inputs": {
              "source": "osv",
              "meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
              "packages": [],
              "red_flag": false,
              "assessed_packages": 3,
              "malicious_packages": 0,
              "direct_malicious_packages": 0,
              "withdrawn_malicious_packages": 0,
              "installable_malicious_packages": 0
            },
            "components": [
              {
                "key": "no_dependency_reported_as_a_malicious_package",
                "name": "No dependency reported as a malicious package",
                "detail": "no dependency is reported as a malicious package",
                "points": 100,
                "status": "met",
                "details": [
                  {
                    "code": "no_malicious_dependencies",
                    "params": {}
                  }
                ],
                "max_points": 100
              }
            ]
          },
          {
            "key": "high_risk_jurisdiction_exposure",
            "band": "excellent",
            "name": "High-Risk Jurisdiction Exposure",
            "note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
            "notes": [
              {
                "code": "jurisdiction_evidence_limits",
                "params": {}
              }
            ],
            "value": 100,
            "inputs": {
              "meaning": "self-published location evidence; not nationality or citizenship",
              "red_flag": false,
              "exposures": [],
              "policy_countries": [
                "Russia",
                "Iran",
                "North Korea"
              ],
              "review_only_matches": 0,
              "assessed_self_published_locations": 18
            },
            "components": [
              {
                "key": "policy_exposure_multiplier",
                "name": "Policy exposure multiplier",
                "detail": "no confirmed policy-scope location match",
                "points": 100,
                "status": "met",
                "details": [
                  {
                    "code": "jurisdiction_no_match",
                    "params": {}
                  }
                ],
                "max_points": 100
              }
            ]
          }
        ],
        "description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
      },
      {
        "key": "ai_readiness",
        "band": "moderate",
        "name": "AI Readiness",
        "value": 58,
        "weight": 0,
        "metrics": [
          {
            "key": "ai_agent_context",
            "band": "at_risk",
            "name": "Agent context & guidance",
            "note": null,
            "notes": [],
            "value": 40,
            "inputs": {
              "has_llms_txt": false,
              "legible_history_share": 0.93,
              "agent_instruction_files": [],
              "agent_instruction_max_bytes": null
            },
            "components": [
              {
                "key": "agent_instructions",
                "name": "Agent instructions",
                "detail": "no CLAUDE.md / AGENTS.md / editor rules",
                "points": 0,
                "status": "missed",
                "details": [
                  {
                    "code": "no_agent_instructions",
                    "params": {}
                  }
                ],
                "max_points": 45
              },
              {
                "key": "machine_readable_docs_llms_txt",
                "name": "Machine-readable docs (llms.txt)",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 15
              },
              {
                "key": "legible_commit_history",
                "name": "Legible commit history",
                "detail": "93 of 100 human commits state their intent (structured subject or explanatory body)",
                "points": 40,
                "status": "met",
                "details": [
                  {
                    "code": "legible_history",
                    "params": {
                      "legible": 93,
                      "sampled": 100
                    }
                  }
                ],
                "max_points": 40
              }
            ]
          },
          {
            "key": "ai_verify_loop",
            "band": "moderate",
            "name": "Verify loop (build / test / typecheck)",
            "note": null,
            "notes": [],
            "value": 56,
            "inputs": {
              "has_nix": false,
              "has_tests": true,
              "lockfiles": [
                "go.sum"
              ],
              "has_dockerfile": false,
              "typed_language": true,
              "bootstrap_files": [],
              "has_devcontainer": false,
              "has_linter_config": false,
              "typecheck_configs": [],
              "agent_commit_share": 0,
              "toolchain_manifests": [
                "go.mod",
                "goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod"
              ],
              "dependency_bot_commit_share": 0
            },
            "components": [
              {
                "key": "one_command_bootstrap",
                "name": "One-command bootstrap",
                "detail": "go.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod (toolchain convention, no task runner)",
                "points": 12.6,
                "status": "partial",
                "details": [
                  {
                    "code": "toolchain_convention",
                    "params": {
                      "files": "go.mod, goproxytest/testdata/mod/fruit.com_v1.1.0/go.mod"
                    }
                  }
                ],
                "max_points": 18
              },
              {
                "key": "automated_tests",
                "name": "Automated tests",
                "detail": null,
                "points": 22,
                "status": "met",
                "details": [],
                "max_points": 22
              },
              {
                "key": "lint_format_config",
                "name": "Lint / format config",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 11
              },
              {
                "key": "static_type_checking",
                "name": "Static type checking",
                "detail": "Go (statically typed)",
                "points": 11,
                "status": "met",
                "details": [
                  {
                    "code": "statically_typed_language",
                    "params": {
                      "language": "Go"
                    }
                  }
                ],
                "max_points": 11
              },
              {
                "key": "reproducible_environment",
                "name": "Reproducible environment",
                "detail": "lockfile",
                "points": 10,
                "status": "met",
                "details": [
                  {
                    "code": "file_list",
                    "params": {
                      "files": "lockfile"
                    }
                  }
                ],
                "max_points": 10
              },
              {
                "key": "demonstrated_agent_practice",
                "name": "Demonstrated agent practice",
                "detail": "no agent-authored commits among the last 100",
                "points": 0,
                "status": "missed",
                "details": [
                  {
                    "code": "no_agent_authored_commits",
                    "params": {
                      "sampled": 100
                    }
                  }
                ],
                "max_points": 10
              },
              {
                "key": "automated_maintenance",
                "name": "Automated maintenance",
                "detail": "no automated dependency updates observed",
                "points": 0,
                "status": "missed",
                "details": [
                  {
                    "code": "no_dependency_automation",
                    "params": {}
                  }
                ],
                "max_points": 8
              },
              {
                "key": "openssf_scorecard_pinned_dependencies",
                "name": "OpenSSF Scorecard: Pinned-Dependencies",
                "detail": "dependency not pinned by hash detected -- score normalized to 0",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "ai_code_legibility",
            "band": "excellent",
            "name": "Code legibility for models",
            "note": null,
            "notes": [],
            "value": 100,
            "inputs": {
              "primary_language": "Go",
              "largest_source_bytes": 41691,
              "source_files_sampled": 105,
              "oversized_source_files": 0
            },
            "components": [
              {
                "key": "type_checkable_code",
                "name": "Type-checkable code",
                "detail": "Go (statically typed)",
                "points": 45,
                "status": "met",
                "details": [
                  {
                    "code": "statically_typed_language",
                    "params": {
                      "language": "Go"
                    }
                  }
                ],
                "max_points": 45
              },
              {
                "key": "manageable_file_sizes",
                "name": "Manageable file sizes",
                "detail": "0/105 source files over 60KB",
                "points": 55,
                "status": "met",
                "details": [
                  {
                    "code": "oversized_source_files",
                    "params": {
                      "kb": 60,
                      "sampled": 105,
                      "oversized": 0
                    }
                  }
                ],
                "max_points": 55
              }
            ]
          }
        ],
        "description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
      }
    ],
    "metrics_version": "1.13.0"
  },
  "warnings": [
    "Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
  ],
  "report_type": "repository",
  "generated_at": "2026-07-28T13:07:36.732568Z",
  "schema_version": "0.27.0",
  "badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/rogpeppe/go-internal.svg",
  "full_name": "rogpeppe/go-internal",
  "license_state": "standard",
  "license_spdx": "BSD-3-Clause"
}

Scores are signals, not warranties. They reflect publicly visible practices on GitHub — not a code audit, and not a security guarantee.

Missing data is excluded and weights renormalized, never scored as zero. Methodology is versioned and open: metrics v1.13.0, schema v0.27.0 — full methodology · metrics wiki.

How one result sits in the wider record: aggregate statisticsGo.