原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 64,
"has_wiki": false,
"homepage": null,
"languages": {
"Go": 34790
},
"pushed_at": "2026-07-17T18:33:43Z",
"created_at": "2020-07-02T15:08:38Z",
"owner_type": "User",
"updated_at": "2026-07-21T06:07:55Z",
"description": "Go library for retrying with configurable backoffs",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://www.sethvargo.com",
"name": "Seth Vargo",
"type": "User",
"login": "sethvargo",
"company": "@LinkedIn",
"location": "Pittsburgh, PA",
"followers": 4538,
"avatar_url": "https://avatars.githubusercontent.com/u/408570?v=4",
"created_at": "2010-09-20T16:21:50Z",
"is_verified": null,
"public_repos": 59,
"account_age_days": 5783
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-17T18:35:30Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2024-07-30T21:11:51Z"
},
{
"tag": "v0.2.4",
"kind": "patch",
"published_at": "2022-12-14T13:52:01Z"
},
{
"tag": "v0.2.3",
"kind": "patch",
"published_at": "2022-02-10T19:32:11Z"
},
{
"tag": "v0.2.2",
"kind": "patch",
"published_at": "2022-01-08T00:50:24Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2022-01-04T13:49:52Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2022-01-03T21:06:53Z"
}
],
"recent_commits": [
{
"oid": "d3eb50afd37a09a9c0606c218d0dbe06e29d1544",
"body": "Adds a `WithFullJitter` backoff middleware, requested by @craigpastro.\n\nFull jitter returns a random duration in `[0, base)`, where `base` is\nthe wrapped backoff's value. Unlike `WithJitter` (`+/- j`) and\n`WithJitterPercent` (`+/- j%`), which keep the wait clustered around the\nbase value, full jitte\n[…]\ncover the `[0,\nbase)` range over 100k draws, the zero/negative/stop edges, plus a godoc\nexample.\n\nCloses https://github.com/sethvargo/go-retry/issues/21\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Add WithFullJitter backoff middleware (#45)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T18:24:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "00248028a1b17d797d728bf6c9fc7a8e0b75c881",
"body": "Adds test coverage for public API that had none, pulled from the non-nix\nparts of #38 and rewritten to match the per-source-file test layout.\n\nThe `Constant`, `Exponential`, and `Fibonacci` convenience wrappers were\nat 0% coverage, and the `NewConstant`/`NewExponential`/`NewFibonacci`\nnon-positive-b\n[…]\n` tests (rand.go is gone), and `IsRetryable` (no\nexternal need today, and an `errors.Is`-friendly sentinel would beat a\nbool helper if one ever arises).\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Cover backoff wrappers and constructor panics (#42)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T17:55:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "61116c41a14a555c8639d5d1078f35c03530f578",
"body": "Bumps `actions/checkout` (v4 -> v7) and `actions/setup-go` (v5 -> v7),\nand pins both to commit SHAs with ratchet.\n\nThe intervening majors are runtime (ESM/Node) and dependency bumps;\nnothing this workflow relies on changed. checkout v7 also blocks fork-PR\ncheckout for `pull_request_target`/`workflow\n[…]\nratchet:actions/...@v7` comment keeps the version readable\nand lets `ratchet update` bump it later. Verified both SHAs resolve to\nthe current `v7` tags.\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Pin checkout and setup-go to v7 SHAs (#43)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T17:55:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "23a54c1a90222b9a1820b121ee3219501b2c68d8",
"body": "Fixes a pre-existing concurrency bug in `exponentialBackoff.Next`, and\nfolds in the modernization follow-ups that missed the #40 merge.\n\n## Overflow race\n\n`Next` incremented the attempt counter with `Add(1)`, and on overflow\ndecremented it again (`Add(^uint64(0))`) to un-count the attempt. That\nincr\n[…]\nps in the concurrent tests to\nrange-over-int.\n- Updated the jitter guard comments to reference `rand.Int64N` instead\nof the removed `Int63n`.\n\n---------\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Fix exponential backoff overflow race (#41)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T17:36:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2713be839e0e75441cfd09cc9181437d34f9e809",
"body": "Bumps the module to Go 1.25 and pulls in the standard-library\nsimplifications that unlock at that version. There are no external\ndependencies, so there is nothing to update in `go.sum`.\n\nChanges:\n\n- `go.mod`: require `go 1.25`. CI reads `go-version-file`, so the\nworkflow needs no change.\n- Jitter no\n[…]\nnd `go vet` are clean, and the full `-race -short` suite passes.\nCommits are split per file for review and each intermediate commit\ncompiles.\n\n---------\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Modernize for Go 1.25 (#40)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T16:52:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "70b7ff388f6aa0e547ebf31f4f7a2eb826d8a993",
"body": "Both `WithJitter(0, ...)` and `WithJitterPercent(0, ...)` panic with\n\"invalid argument to Int63n\" because `rand.Int63n` requires a positive\nargument. Passing zero is a reasonable way to express \"no jitter\", and a\ncomputed jitter value can legitimately be zero. `WithJitter`\nadditionally panics on a n\n[…]\n in `Int63n`), and stop propagation\nthrough the guard.\n\n---------\n\nSigned-off-by: SAY-5 <say.apm35@gmail.com>\nSigned-off-by: Seth Vargo <seth@sethvargo.com>\nCo-authored-by: SAY-5 <say.apm35@gmail.com>",
"is_bot": false,
"headline": "fix: avoid Int63n panic on non-positive jitter (#39)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2026-07-17T15:48:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a324c6800a6189fc368379f95605517663d73d32",
"body": "Signed-off-by: Medya Ghazizadeh <medyagh@users.noreply.github.com>",
"is_bot": false,
"headline": "Add test badge to README (#35)",
"author_name": "Medya Ghazizadeh",
"author_login": "medyagh",
"committed_at": "2026-01-22T03:31:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5c82960c02460cff7d3f12e623398436722c6cb",
"body": "This PR improves test coverage by adding unit tests for context\ncancellation and edge case configuration.\n\n---------\n\nSigned-off-by: Medya Ghazizadeh <medyagh@users.noreply.github.com>\nCo-authored-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "add more unit tests (#36)",
"author_name": "Medya Ghazizadeh",
"author_login": "medyagh",
"committed_at": "2026-01-22T03:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e34451647f84a9426512fc464f22d60ae2a64c8e",
"body": "This code reduces the ctx check to only one location, and perhaps makes\nthe code simpler.\n\nJust discard this pull request if you disagree :)",
"is_bot": false,
"headline": "Only check for ctx exipry in one place (#33)",
"author_name": "Jonas Alfredsson",
"author_login": "JonasAlfredsson",
"committed_at": "2025-12-18T23:56:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05bfdd60879e175e2eb0d72279af05f37f413b64",
"body": "The NewConstant function will panic if the time duration is less than or\nequal to zero.\n\nThe GoDoc comment for this function needs to be updated to say that it\nwill panic if the given base is \"less than or equal to zero\" instead of\n\"less than zero\".",
"is_bot": false,
"headline": "Fix typo in GoDoc comment for NewConstant function (#31)",
"author_name": "domelzer",
"author_login": "domelzer",
"committed_at": "2025-10-28T20:41:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f54a2269d9c60fe8be3963ca591d7decd0736f81",
"body": null,
"is_bot": false,
"headline": "Fix typo in README (#30)",
"author_name": "Stefan VanBuren",
"author_login": "stefanvanburen",
"committed_at": "2025-10-16T20:09:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bf6450b891a2dfa8064b27d3b876fcdb83be28e",
"body": "Closes https://github.com/sethvargo/go-retry/issues/22",
"is_bot": false,
"headline": "Add DoValue, which requires generics and bumps to Go 1.21 (#26)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2024-07-30T21:11:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a99f7cdbe5d1697463eccaf888be309b9e8d1b5f",
"body": "Fix badge\n\nSigned-off-by: Seth Vargo <seth@sethvargo.com>",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2023-03-15T17:04:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "234ac59736bc231a21a86963753998f2987c152a",
"body": null,
"is_bot": false,
"headline": "Update bench deps",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-12-31T22:14:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2e7428f519deaf765852d7936c2a94fe10d3d05",
"body": null,
"is_bot": false,
"headline": "Cleanup",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-12-14T13:50:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9eb639bd6539a97b640f9fcfc22186f052fe2856",
"body": null,
"is_bot": false,
"headline": "backoff: remove global rand.Seed and using locked rand.Rand (#19)",
"author_name": "Koichi Shiraishi",
"author_login": "zchee",
"committed_at": "2022-12-14T13:43:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "009eed153ec9d7ba75ed381c7d93e4af600acae8",
"body": null,
"is_bot": false,
"headline": "Handle overflow cases (#13)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-02-10T19:31:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a0bb9fc5c819043e9bc63bbbf88e9a6a411b655",
"body": null,
"is_bot": false,
"headline": "Don't leak timer",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-02-05T15:56:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f691e5cece1148685047296ec21c0198d3c0bd20",
"body": null,
"is_bot": false,
"headline": "refactor cancel context (#11)",
"author_name": "Quang",
"author_login": "quagmt",
"committed_at": "2022-01-15T15:16:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b17a4140c93c0776a3b6482d16469eaf3e09e9e",
"body": "* TestCancel (fails).\r\n\r\n* ctx.Done() has priority, so we test it alone first.\r\n\r\n* If ctx is already canceled, then return immediately without calling f.\r\n\r\n* Move TestCancel into retry_test.go.",
"is_bot": false,
"headline": "Dealing with a canceled Context (#8)",
"author_name": "Valentin Deleplace",
"author_login": "Deleplace",
"committed_at": "2022-01-08T00:49:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6dbee7990f9d944a9d41b99bffbee328de6352a",
"body": null,
"is_bot": false,
"headline": "Drop codeql",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-01-04T14:24:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4e16291024407ebbe7d919ea635487b2278ff8f",
"body": null,
"is_bot": false,
"headline": "Bump to Go 1.16",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-01-04T14:22:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e8c601c01abceecbb4f7a37b30ddcc290823c9b",
"body": null,
"is_bot": false,
"headline": "Retract v0.2.0",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-01-04T13:48:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e436cb14c0f01ac7c9265d16aeb25cfd196c073a",
"body": null,
"is_bot": false,
"headline": "breaking: panic instead of returning an error negative bases",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-01-03T21:03:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ee2801fc80382fe82b9bbc5f653841220a0f4d2",
"body": null,
"is_bot": false,
"headline": "Automatically unwrap returned error (#6)",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2022-01-03T20:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80daa4ebfa8b519bb5a95bd939e60d2e03fc0923",
"body": null,
"is_bot": false,
"headline": "Update section about MaxRetries (#4)",
"author_name": "Wietse Venema",
"author_login": "wietsevenema",
"committed_at": "2021-12-02T14:49:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb868fa054ca14fa51f10f26ac7e6039e38cecb4",
"body": null,
"is_bot": false,
"headline": "Add readme note about ordering of modifiers (#3)",
"author_name": "Arieh Schneier",
"author_login": "AriehSchneier",
"committed_at": "2021-04-07T01:11:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51bca52e94d3952b2286c703a80888917e261f03",
"body": null,
"is_bot": false,
"headline": "Add security analysis",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-09-30T18:00:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cf9fa63e16a1a157dca8ab5e540f9795e7497fd",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-09-02T14:38:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee1e8fd49bb799977ee0e707b8063354a5c69a3d",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-07-16T13:43:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ade2ef4bbc4ee37f567237b6620f1b3404572634",
"body": null,
"is_bot": false,
"headline": "Update badges",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-07-13T12:34:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02ccac686c2d7c61f2791106ac77e29ae92f087b",
"body": null,
"is_bot": false,
"headline": "Update godoc link",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-07-13T12:32:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6e9a7da4c14d77c99d710ffb4e63375cff6b46d",
"body": null,
"is_bot": false,
"headline": "Fix typo in README (#1)",
"author_name": "Chris Fowles",
"author_login": "formerly-chrisfowles",
"committed_at": "2020-07-08T12:57:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e83b4a86bf8f4b5d791f3f477bd2d4265743b5cf",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Seth Vargo",
"author_login": "sethvargo",
"committed_at": "2020-07-03T22:08:08Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 11,
"latest_release_at": "2026-07-17T18:35:30Z",
"latest_release_tag": "v0.4.0",
"releases_from_tags": false,
"days_since_last_push": 4,
"active_weeks_last_year": 5,
"days_since_latest_release": 4,
"mean_days_between_releases": 276
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 57,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/sethvargo/go-retry",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/sethvargo/go-retry",
"is_deprecated": false,
"latest_version": "v0.4.0",
"repository_url": "https://github.com/sethvargo/go-retry",
"versions_count": 8,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-17T18:24:46Z",
"latest_version_yanked": null,
"days_since_latest_publish": 4
}
]
},
"popularity": {
"forks": 40,
"stars": 712,
"watchers": 6,
"fork_history": {
"days": [
{
"date": "2020-07-08",
"count": 3
},
{
"date": "2020-07-10",
"count": 1
},
{
"date": "2020-07-15",
"count": 1
},
{
"date": "2020-09-26",
"count": 1
},
{
"date": "2020-10-07",
"count": 1
},
{
"date": "2021-01-26",
"count": 1
},
{
"date": "2021-02-15",
"count": 1
},
{
"date": "2021-04-07",
"count": 1
},
{
"date": "2021-05-11",
"count": 1
},
{
"date": "2021-09-20",
"count": 1
},
{
"date": "2021-09-27",
"count": 1
},
{
"date": "2022-01-07",
"count": 1
},
{
"date": "2022-04-25",
"count": 1
},
{
"date": "2022-06-07",
"count": 1
},
{
"date": "2022-07-30",
"count": 1
},
{
"date": "2022-08-08",
"count": 1
},
{
"date": "2022-10-09",
"count": 1
},
{
"date": "2022-12-11",
"count": 1
},
{
"date": "2023-02-23",
"count": 1
},
{
"date": "2023-04-27",
"count": 2
},
{
"date": "2023-05-31",
"count": 1
},
{
"date": "2023-11-09",
"count": 1
},
{
"date": "2024-02-09",
"count": 1
},
{
"date": "2024-04-08",
"count": 1
},
{
"date": "2024-05-21",
"count": 1
},
{
"date": "2024-10-07",
"count": 1
},
{
"date": "2025-05-28",
"count": 1
},
{
"date": "2025-08-26",
"count": 1
},
{
"date": "2025-10-16",
"count": 1
},
{
"date": "2025-11-13",
"count": 1
},
{
"date": "2025-12-18",
"count": 1
},
{
"date": "2026-01-07",
"count": 1
},
{
"date": "2026-01-17",
"count": 1
},
{
"date": "2026-05-24",
"count": 1
},
{
"date": "2026-05-27",
"count": 1
},
{
"date": "2026-07-16",
"count": 1
}
],
"complete": true,
"collected": 39,
"total_forks": 40
},
"star_history": {
"days": [
{
"date": "2020-07-03",
"count": 4
},
{
"date": "2020-07-04",
"count": 1
},
{
"date": "2020-07-05",
"count": 1
},
{
"date": "2020-07-06",
"count": 2
},
{
"date": "2020-07-07",
"count": 36
},
{
"date": "2020-07-08",
"count": 34
},
{
"date": "2020-07-09",
"count": 7
},
{
"date": "2020-07-10",
"count": 7
},
{
"date": "2020-07-11",
"count": 1
},
{
"date": "2020-07-13",
"count": 1
},
{
"date": "2020-07-14",
"count": 3
},
{
"date": "2020-07-15",
"count": 3
},
{
"date": "2020-07-18",
"count": 3
},
{
"date": "2020-07-19",
"count": 2
},
{
"date": "2020-07-20",
"count": 2
},
{
"date": "2020-07-21",
"count": 2
},
{
"date": "2020-07-23",
"count": 1
},
{
"date": "2020-08-01",
"count": 1
},
{
"date": "2020-08-06",
"count": 9
},
{
"date": "2020-08-07",
"count": 2
},
{
"date": "2020-08-11",
"count": 1
},
{
"date": "2020-09-01",
"count": 2
},
{
"date": "2020-09-03",
"count": 1
},
{
"date": "2020-09-04",
"count": 2
},
{
"date": "2020-09-05",
"count": 9
},
{
"date": "2020-09-06",
"count": 5
},
{
"date": "2020-09-11",
"count": 1
},
{
"date": "2020-09-14",
"count": 2
},
{
"date": "2020-09-16",
"count": 1
},
{
"date": "2020-09-22",
"count": 2
},
{
"date": "2020-09-30",
"count": 1
},
{
"date": "2020-10-02",
"count": 1
},
{
"date": "2020-10-05",
"count": 1
},
{
"date": "2020-10-06",
"count": 1
},
{
"date": "2020-10-08",
"count": 1
},
{
"date": "2020-10-09",
"count": 2
},
{
"date": "2020-10-12",
"count": 1
},
{
"date": "2020-10-13",
"count": 2
},
{
"date": "2020-10-18",
"count": 1
},
{
"date": "2020-10-22",
"count": 1
},
{
"date": "2020-10-27",
"count": 1
},
{
"date": "2020-10-30",
"count": 1
},
{
"date": "2020-11-11",
"count": 3
},
{
"date": "2020-11-26",
"count": 1
},
{
"date": "2020-12-08",
"count": 1
},
{
"date": "2020-12-15",
"count": 1
},
{
"date": "2021-01-08",
"count": 1
},
{
"date": "2021-01-22",
"count": 2
},
{
"date": "2021-02-03",
"count": 1
},
{
"date": "2021-02-12",
"count": 1
},
{
"date": "2021-02-21",
"count": 1
},
{
"date": "2021-03-04",
"count": 1
},
{
"date": "2021-03-11",
"count": 1
},
{
"date": "2021-03-17",
"count": 1
},
{
"date": "2021-03-21",
"count": 1
},
{
"date": "2021-03-23",
"count": 1
},
{
"date": "2021-03-24",
"count": 1
},
{
"date": "2021-03-25",
"count": 1
},
{
"date": "2021-04-08",
"count": 1
},
{
"date": "2021-04-09",
"count": 3
},
{
"date": "2021-04-10",
"count": 1
},
{
"date": "2021-04-11",
"count": 2
},
{
"date": "2021-04-13",
"count": 1
},
{
"date": "2021-04-15",
"count": 1
},
{
"date": "2021-04-16",
"count": 1
},
{
"date": "2021-04-17",
"count": 1
},
{
"date": "2021-04-18",
"count": 1
},
{
"date": "2021-04-20",
"count": 1
},
{
"date": "2021-04-22",
"count": 1
},
{
"date": "2021-04-24",
"count": 2
},
{
"date": "2021-04-26",
"count": 1
},
{
"date": "2021-04-27",
"count": 1
},
{
"date": "2021-04-30",
"count": 1
},
{
"date": "2021-05-06",
"count": 1
},
{
"date": "2021-05-11",
"count": 1
},
{
"date": "2021-05-24",
"count": 1
},
{
"date": "2021-05-25",
"count": 1
},
{
"date": "2021-06-04",
"count": 1
},
{
"date": "2021-06-13",
"count": 1
},
{
"date": "2021-06-23",
"count": 1
},
{
"date": "2021-06-27",
"count": 1
},
{
"date": "2021-06-29",
"count": 1
},
{
"date": "2021-07-03",
"count": 1
},
{
"date": "2021-07-05",
"count": 2
},
{
"date": "2021-07-18",
"count": 1
},
{
"date": "2021-07-19",
"count": 1
},
{
"date": "2021-07-27",
"count": 1
},
{
"date": "2021-08-02",
"count": 1
},
{
"date": "2021-08-03",
"count": 1
},
{
"date": "2021-08-17",
"count": 1
},
{
"date": "2021-08-19",
"count": 1
},
{
"date": "2021-08-20",
"count": 1
},
{
"date": "2021-09-02",
"count": 1
},
{
"date": "2021-09-16",
"count": 1
},
{
"date": "2021-09-20",
"count": 1
},
{
"date": "2021-09-27",
"count": 1
},
{
"date": "2021-09-30",
"count": 1
},
{
"date": "2021-10-05",
"count": 1
},
{
"date": "2021-10-14",
"count": 1
},
{
"date": "2021-10-15",
"count": 1
},
{
"date": "2021-10-21",
"count": 1
},
{
"date": "2021-10-27",
"count": 1
},
{
"date": "2021-10-28",
"count": 5
},
{
"date": "2021-10-30",
"count": 1
},
{
"date": "2021-11-01",
"count": 1
},
{
"date": "2021-11-02",
"count": 1
},
{
"date": "2021-11-11",
"count": 1
},
{
"date": "2021-11-14",
"count": 1
},
{
"date": "2021-11-15",
"count": 1
},
{
"date": "2021-11-16",
"count": 1
},
{
"date": "2021-12-02",
"count": 1
},
{
"date": "2021-12-03",
"count": 3
},
{
"date": "2021-12-04",
"count": 2
},
{
"date": "2021-12-06",
"count": 2
},
{
"date": "2021-12-08",
"count": 2
},
{
"date": "2021-12-09",
"count": 1
},
{
"date": "2021-12-11",
"count": 1
},
{
"date": "2021-12-13",
"count": 1
},
{
"date": "2021-12-16",
"count": 1
},
{
"date": "2021-12-17",
"count": 1
},
{
"date": "2021-12-23",
"count": 1
},
{
"date": "2022-01-02",
"count": 1
},
{
"date": "2022-01-03",
"count": 2
},
{
"date": "2022-01-04",
"count": 4
},
{
"date": "2022-01-05",
"count": 1
},
{
"date": "2022-01-06",
"count": 1
},
{
"date": "2022-01-09",
"count": 1
},
{
"date": "2022-01-12",
"count": 1
},
{
"date": "2022-01-13",
"count": 1
},
{
"date": "2022-01-15",
"count": 1
},
{
"date": "2022-01-16",
"count": 1
},
{
"date": "2022-01-21",
"count": 1
},
{
"date": "2022-01-22",
"count": 1
},
{
"date": "2022-01-24",
"count": 1
},
{
"date": "2022-01-25",
"count": 1
},
{
"date": "2022-01-26",
"count": 1
},
{
"date": "2022-01-27",
"count": 2
},
{
"date": "2022-01-29",
"count": 1
},
{
"date": "2022-01-30",
"count": 2
},
{
"date": "2022-01-31",
"count": 2
},
{
"date": "2022-02-01",
"count": 3
},
{
"date": "2022-02-03",
"count": 1
},
{
"date": "2022-02-04",
"count": 7
},
{
"date": "2022-02-05",
"count": 1
},
{
"date": "2022-02-06",
"count": 1
},
{
"date": "2022-02-08",
"count": 1
},
{
"date": "2022-02-09",
"count": 2
},
{
"date": "2022-02-10",
"count": 2
},
{
"date": "2022-02-11",
"count": 3
},
{
"date": "2022-02-14",
"count": 1
},
{
"date": "2022-02-15",
"count": 3
},
{
"date": "2022-02-16",
"count": 1
},
{
"date": "2022-02-21",
"count": 1
},
{
"date": "2022-03-04",
"count": 1
},
{
"date": "2022-03-05",
"count": 2
},
{
"date": "2022-03-08",
"count": 1
},
{
"date": "2022-03-10",
"count": 1
},
{
"date": "2022-03-12",
"count": 1
},
{
"date": "2022-04-14",
"count": 2
},
{
"date": "2022-04-21",
"count": 2
},
{
"date": "2022-04-25",
"count": 2
},
{
"date": "2022-05-10",
"count": 1
},
{
"date": "2022-05-21",
"count": 1
},
{
"date": "2022-05-30",
"count": 1
},
{
"date": "2022-06-05",
"count": 1
},
{
"date": "2022-06-06",
"count": 1
},
{
"date": "2022-06-08",
"count": 1
},
{
"date": "2022-06-20",
"count": 4
},
{
"date": "2022-06-21",
"count": 1
},
{
"date": "2022-06-22",
"count": 1
},
{
"date": "2022-07-05",
"count": 1
},
{
"date": "2022-07-10",
"count": 1
},
{
"date": "2022-07-15",
"count": 2
},
{
"date": "2022-07-27",
"count": 1
},
{
"date": "2022-07-28",
"count": 1
},
{
"date": "2022-08-02",
"count": 1
},
{
"date": "2022-08-04",
"count": 1
},
{
"date": "2022-08-05",
"count": 1
},
{
"date": "2022-08-10",
"count": 3
},
{
"date": "2022-08-11",
"count": 2
},
{
"date": "2022-08-15",
"count": 1
},
{
"date": "2022-08-18",
"count": 3
},
{
"date": "2022-08-19",
"count": 1
},
{
"date": "2022-08-21",
"count": 1
},
{
"date": "2022-08-25",
"count": 1
},
{
"date": "2022-08-26",
"count": 2
},
{
"date": "2022-08-31",
"count": 1
},
{
"date": "2022-09-02",
"count": 1
},
{
"date": "2022-09-04",
"count": 1
},
{
"date": "2022-09-26",
"count": 1
},
{
"date": "2022-10-12",
"count": 1
},
{
"date": "2022-10-18",
"count": 1
},
{
"date": "2022-10-19",
"count": 1
},
{
"date": "2022-10-25",
"count": 2
},
{
"date": "2022-10-29",
"count": 1
},
{
"date": "2022-11-05",
"count": 1
},
{
"date": "2022-11-06",
"count": 1
},
{
"date": "2022-11-16",
"count": 1
},
{
"date": "2022-11-18",
"count": 1
},
{
"date": "2022-11-21",
"count": 1
},
{
"date": "2022-11-23",
"count": 1
},
{
"date": "2022-12-08",
"count": 1
},
{
"date": "2022-12-09",
"count": 1
},
{
"date": "2022-12-11",
"count": 4
},
{
"date": "2022-12-12",
"count": 1
},
{
"date": "2022-12-14",
"count": 4
},
{
"date": "2022-12-15",
"count": 1
},
{
"date": "2022-12-16",
"count": 1
},
{
"date": "2022-12-17",
"count": 1
},
{
"date": "2022-12-19",
"count": 1
},
{
"date": "2022-12-30",
"count": 1
},
{
"date": "2023-01-06",
"count": 1
},
{
"date": "2023-01-07",
"count": 1
},
{
"date": "2023-01-10",
"count": 1
},
{
"date": "2023-01-14",
"count": 1
},
{
"date": "2023-01-17",
"count": 1
},
{
"date": "2023-01-21",
"count": 1
},
{
"date": "2023-01-29",
"count": 1
},
{
"date": "2023-02-05",
"count": 1
},
{
"date": "2023-02-06",
"count": 1
},
{
"date": "2023-02-07",
"count": 1
},
{
"date": "2023-02-08",
"count": 3
},
{
"date": "2023-02-10",
"count": 1
},
{
"date": "2023-02-15",
"count": 1
},
{
"date": "2023-02-16",
"count": 1
},
{
"date": "2023-02-17",
"count": 2
},
{
"date": "2023-02-18",
"count": 1
},
{
"date": "2023-02-19",
"count": 1
},
{
"date": "2023-02-20",
"count": 1
},
{
"date": "2023-03-01",
"count": 1
},
{
"date": "2023-03-07",
"count": 2
},
{
"date": "2023-03-09",
"count": 1
},
{
"date": "2023-03-19",
"count": 1
},
{
"date": "2023-03-21",
"count": 1
},
{
"date": "2023-03-25",
"count": 1
},
{
"date": "2023-04-03",
"count": 1
},
{
"date": "2023-04-07",
"count": 1
},
{
"date": "2023-04-15",
"count": 1
},
{
"date": "2023-04-18",
"count": 2
},
{
"date": "2023-04-21",
"count": 1
},
{
"date": "2023-04-22",
"count": 1
},
{
"date": "2023-04-24",
"count": 1
},
{
"date": "2023-04-26",
"count": 1
},
{
"date": "2023-04-27",
"count": 6
},
{
"date": "2023-04-28",
"count": 3
},
{
"date": "2023-05-03",
"count": 1
},
{
"date": "2023-05-05",
"count": 1
},
{
"date": "2023-05-06",
"count": 1
},
{
"date": "2023-05-10",
"count": 1
},
{
"date": "2023-05-15",
"count": 1
},
{
"date": "2023-05-16",
"count": 2
},
{
"date": "2023-05-20",
"count": 1
},
{
"date": "2023-05-22",
"count": 1
},
{
"date": "2023-05-23",
"count": 1
},
{
"date": "2023-05-25",
"count": 1
},
{
"date": "2023-05-29",
"count": 1
},
{
"date": "2023-06-01",
"count": 2
},
{
"date": "2023-06-02",
"count": 1
},
{
"date": "2023-06-03",
"count": 2
},
{
"date": "2023-06-14",
"count": 1
},
{
"date": "2023-06-21",
"count": 2
},
{
"date": "2023-06-26",
"count": 1
},
{
"date": "2023-06-27",
"count": 1
},
{
"date": "2023-07-08",
"count": 1
},
{
"date": "2023-07-09",
"count": 1
},
{
"date": "2023-07-10",
"count": 1
},
{
"date": "2023-07-18",
"count": 2
},
{
"date": "2023-07-19",
"count": 1
},
{
"date": "2023-07-20",
"count": 1
},
{
"date": "2023-07-25",
"count": 1
},
{
"date": "2023-07-30",
"count": 1
},
{
"date": "2023-08-08",
"count": 1
},
{
"date": "2023-08-25",
"count": 1
},
{
"date": "2023-09-05",
"count": 2
},
{
"date": "2023-09-07",
"count": 2
},
{
"date": "2023-09-13",
"count": 1
},
{
"date": "2023-09-16",
"count": 1
},
{
"date": "2023-09-19",
"count": 1
},
{
"date": "2023-09-22",
"count": 1
},
{
"date": "2023-10-06",
"count": 1
},
{
"date": "2023-10-09",
"count": 1
},
{
"date": "2023-10-10",
"count": 1
},
{
"date": "2023-10-13",
"count": 1
},
{
"date": "2023-10-17",
"count": 1
},
{
"date": "2023-10-18",
"count": 1
},
{
"date": "2023-11-02",
"count": 8
},
{
"date": "2023-11-03",
"count": 4
},
{
"date": "2023-11-04",
"count": 1
},
{
"date": "2023-11-06",
"count": 3
},
{
"date": "2023-11-07",
"count": 1
},
{
"date": "2023-11-08",
"count": 4
},
{
"date": "2023-11-13",
"count": 5
},
{
"date": "2023-11-14",
"count": 1
},
{
"date": "2023-11-15",
"count": 5
},
{
"date": "2023-11-16",
"count": 1
},
{
"date": "2023-11-18",
"count": 1
},
{
"date": "2023-11-19",
"count": 1
},
{
"date": "2023-11-24",
"count": 1
},
{
"date": "2023-11-30",
"count": 1
},
{
"date": "2023-12-01",
"count": 1
},
{
"date": "2023-12-02",
"count": 1
},
{
"date": "2023-12-03",
"count": 2
},
{
"date": "2023-12-04",
"count": 4
},
{
"date": "2023-12-06",
"count": 2
},
{
"date": "2023-12-07",
"count": 1
},
{
"date": "2023-12-08",
"count": 2
},
{
"date": "2023-12-11",
"count": 1
},
{
"date": "2023-12-13",
"count": 1
},
{
"date": "2023-12-16",
"count": 1
},
{
"date": "2023-12-19",
"count": 1
},
{
"date": "2023-12-20",
"count": 2
},
{
"date": "2023-12-21",
"count": 1
},
{
"date": "2023-12-25",
"count": 1
},
{
"date": "2023-12-26",
"count": 1
},
{
"date": "2023-12-29",
"count": 1
},
{
"date": "2024-01-03",
"count": 1
},
{
"date": "2024-01-05",
"count": 1
},
{
"date": "2024-01-06",
"count": 1
},
{
"date": "2024-01-20",
"count": 1
},
{
"date": "2024-01-21",
"count": 2
},
{
"date": "2024-01-23",
"count": 2
},
{
"date": "2024-01-24",
"count": 3
},
{
"date": "2024-01-25",
"count": 3
},
{
"date": "2024-01-30",
"count": 1
},
{
"date": "2024-02-02",
"count": 1
},
{
"date": "2024-02-06",
"count": 1
},
{
"date": "2024-02-08",
"count": 1
},
{
"date": "2024-02-09",
"count": 1
},
{
"date": "2024-02-13",
"count": 1
},
{
"date": "2024-02-17",
"count": 1
},
{
"date": "2024-02-20",
"count": 1
},
{
"date": "2024-02-26",
"count": 1
},
{
"date": "2024-02-29",
"count": 3
},
{
"date": "2024-03-07",
"count": 1
},
{
"date": "2024-03-08",
"count": 2
},
{
"date": "2024-03-09",
"count": 2
},
{
"date": "2024-03-11",
"count": 1
},
{
"date": "2024-03-29",
"count": 1
},
{
"date": "2024-04-04",
"count": 1
},
{
"date": "2024-04-07",
"count": 1
},
{
"date": "2024-04-08",
"count": 1
},
{
"date": "2024-04-09",
"count": 1
},
{
"date": "2024-04-10",
"count": 1
},
{
"date": "2024-04-24",
"count": 2
},
{
"date": "2024-04-26",
"count": 1
},
{
"date": "2024-04-27",
"count": 1
},
{
"date": "2024-04-28",
"count": 1
},
{
"date": "2024-05-02",
"count": 1
},
{
"date": "2024-05-04",
"count": 1
},
{
"date": "2024-05-06",
"count": 1
},
{
"date": "2024-05-10",
"count": 1
},
{
"date": "2024-05-11",
"count": 2
},
{
"date": "2024-05-17",
"count": 1
},
{
"date": "2024-05-21",
"count": 1
},
{
"date": "2024-05-23",
"count": 1
},
{
"date": "2024-05-27",
"count": 1
},
{
"date": "2024-05-28",
"count": 1
},
{
"date": "2024-06-09",
"count": 1
},
{
"date": "2024-06-21",
"count": 1
},
{
"date": "2024-06-26",
"count": 1
},
{
"date": "2024-07-01",
"count": 1
},
{
"date": "2024-07-11",
"count": 1
},
{
"date": "2024-07-20",
"count": 1
},
{
"date": "2024-07-30",
"count": 1
},
{
"date": "2024-08-05",
"count": 1
},
{
"date": "2024-08-07",
"count": 1
},
{
"date": "2024-08-13",
"count": 2
},
{
"date": "2024-08-15",
"count": 1
},
{
"date": "2024-08-26",
"count": 2
},
{
"date": "2024-09-03",
"count": 2
},
{
"date": "2024-09-05",
"count": 1
},
{
"date": "2024-09-06",
"count": 1
},
{
"date": "2024-09-09",
"count": 1
},
{
"date": "2024-09-15",
"count": 2
},
{
"date": "2024-09-23",
"count": 1
},
{
"date": "2024-09-24",
"count": 1
},
{
"date": "2024-09-29",
"count": 1
},
{
"date": "2024-10-09",
"count": 1
},
{
"date": "2024-10-12",
"count": 1
},
{
"date": "2024-10-16",
"count": 1
},
{
"date": "2024-10-17",
"count": 1
},
{
"date": "2024-10-18",
"count": 1
},
{
"date": "2024-10-24",
"count": 1
},
{
"date": "2024-10-30",
"count": 1
},
{
"date": "2024-11-07",
"count": 1
},
{
"date": "2024-11-08",
"count": 1
},
{
"date": "2024-11-16",
"count": 1
},
{
"date": "2024-11-17",
"count": 1
},
{
"date": "2024-12-12",
"count": 1
},
{
"date": "2024-12-22",
"count": 1
},
{
"date": "2024-12-24",
"count": 1
},
{
"date": "2025-01-04",
"count": 1
},
{
"date": "2025-01-06",
"count": 1
},
{
"date": "2025-01-07",
"count": 1
},
{
"date": "2025-01-15",
"count": 1
},
{
"date": "2025-01-24",
"count": 1
},
{
"date": "2025-02-04",
"count": 1
},
{
"date": "2025-02-06",
"count": 1
},
{
"date": "2025-02-07",
"count": 1
},
{
"date": "2025-02-12",
"count": 1
},
{
"date": "2025-02-13",
"count": 1
},
{
"date": "2025-02-15",
"count": 1
},
{
"date": "2025-02-19",
"count": 1
},
{
"date": "2025-02-27",
"count": 1
},
{
"date": "2025-02-28",
"count": 1
},
{
"date": "2025-03-06",
"count": 1
},
{
"date": "2025-03-18",
"count": 4
},
{
"date": "2025-04-24",
"count": 1
},
{
"date": "2025-05-09",
"count": 1
},
{
"date": "2025-05-28",
"count": 1
},
{
"date": "2025-06-04",
"count": 2
},
{
"date": "2025-06-10",
"count": 2
},
{
"date": "2025-06-13",
"count": 1
},
{
"date": "2025-06-23",
"count": 2
},
{
"date": "2025-06-30",
"count": 1
},
{
"date": "2025-07-02",
"count": 1
},
{
"date": "2025-07-10",
"count": 1
},
{
"date": "2025-08-02",
"count": 1
},
{
"date": "2025-08-06",
"count": 1
},
{
"date": "2025-08-07",
"count": 1
},
{
"date": "2025-08-08",
"count": 1
},
{
"date": "2025-08-21",
"count": 1
},
{
"date": "2025-08-22",
"count": 1
},
{
"date": "2025-08-23",
"count": 1
},
{
"date": "2025-08-24",
"count": 1
},
{
"date": "2025-08-28",
"count": 1
},
{
"date": "2025-09-22",
"count": 1
},
{
"date": "2025-10-22",
"count": 1
},
{
"date": "2025-11-03",
"count": 1
},
{
"date": "2025-11-09",
"count": 1
},
{
"date": "2025-11-13",
"count": 1
},
{
"date": "2025-11-21",
"count": 1
},
{
"date": "2025-11-22",
"count": 1
},
{
"date": "2025-11-26",
"count": 1
},
{
"date": "2025-11-27",
"count": 1
},
{
"date": "2025-12-03",
"count": 1
},
{
"date": "2025-12-04",
"count": 3
},
{
"date": "2025-12-05",
"count": 1
},
{
"date": "2025-12-28",
"count": 1
},
{
"date": "2026-01-08",
"count": 1
},
{
"date": "2026-01-29",
"count": 1
},
{
"date": "2026-02-07",
"count": 1
},
{
"date": "2026-02-08",
"count": 1
},
{
"date": "2026-02-11",
"count": 1
},
{
"date": "2026-02-16",
"count": 1
},
{
"date": "2026-02-17",
"count": 1
},
{
"date": "2026-02-27",
"count": 1
},
{
"date": "2026-03-29",
"count": 1
},
{
"date": "2026-03-31",
"count": 1
},
{
"date": "2026-05-04",
"count": 1
},
{
"date": "2026-05-16",
"count": 1
},
{
"date": "2026-05-17",
"count": 1
},
{
"date": "2026-05-18",
"count": 1
},
{
"date": "2026-05-28",
"count": 1
},
{
"date": "2026-06-03",
"count": 1
},
{
"date": "2026-06-06",
"count": 1
},
{
"date": "2026-06-12",
"count": 1
},
{
"date": "2026-07-07",
"count": 1
},
{
"date": "2026-07-17",
"count": 1
},
{
"date": "2026-07-20",
"count": 1
}
],
"complete": true,
"collected": 712,
"total_stars": 712
},
"open_issues_and_prs": 0
},
"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"
],
"largest_source_bytes": 8878,
"source_files_sampled": 10,
"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": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 6,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/cenkalti/backoff",
"direct": false,
"version": "2.2.1+incompatible",
"ecosystem": "go"
},
{
"name": "github.com/client9/misspell",
"direct": false,
"version": "0.3.4",
"ecosystem": "go"
},
{
"name": "github.com/lestrrat-go/backoff",
"direct": false,
"version": "1.0.0",
"ecosystem": "go"
},
{
"name": "github.com/sethvargo/go-retry",
"direct": false,
"version": "0.0.0-20200703211810-8390cace92d3",
"ecosystem": "go"
},
{
"name": "golang.org/x/tools",
"direct": false,
"version": "0.0.0-20200702044944-0cc1aa72b347",
"ecosystem": "go"
},
{
"name": "honnef.co/go/tools",
"direct": false,
"version": "0.0.1-2020.1.4",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 6,
"direct_count": 0,
"indirect_count": 6
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 20,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 10,
"closed_unmerged_prs": 15
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "sethvargo",
"commits": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/408570?v=4"
},
{
"type": "User",
"login": "medyagh",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/4564227?v=4"
},
{
"type": "User",
"login": "AriehSchneier",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/15041913?v=4"
},
{
"type": "User",
"login": "formerly-chrisfowles",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/826502?v=4"
},
{
"type": "User",
"login": "JonasAlfredsson",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/26838310?v=4"
},
{
"type": "User",
"login": "zchee",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/6366270?v=4"
},
{
"type": "User",
"login": "quagmt",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/41105509?v=4"
},
{
"type": "User",
"login": "stefanvanburen",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/622527?v=4"
},
{
"type": "User",
"login": "Deleplace",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/13508141?v=4"
},
{
"type": "User",
"login": "wietsevenema",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/356014?v=4"
}
],
"contributors_sampled": 11,
"top_contributor_share": 0.676
},
"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": [],
"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": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 5,
"reason": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"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": 3,
"reason": "Found 10/30 approved changesets -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": 0,
"reason": "project is not 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": 5,
"reason": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"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": 10,
"reason": "all dependencies are pinned",
"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": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "d3eb50afd37a09a9c0606c218d0dbe06e29d1544",
"ran_at": "2026-07-22T08:26:10Z",
"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-17T18:34:06Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-17T18:24:47Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/sethvargo/go-retry",
"host": "github.com",
"name": "go-retry",
"owner": "sethvargo"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"security": 57,
"vitality": 66,
"community": 67,
"governance": 67,
"engineering": 51
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 66,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"commits_last_year": 11,
"human_commit_share": 1,
"days_since_last_push": 4,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 4
}
}
],
"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": "11 commits in the last year",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 11
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"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": 7,
"latest_release_tag": "v0.4.0",
"releases_from_tags": false,
"days_since_latest_release": 4,
"mean_days_between_releases": 276
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 4
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~276 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 276
}
}
],
"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": 4,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 4 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 4
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 67,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"forks": 40,
"stars": 712,
"watchers": 6,
"growth_state": "organic",
"growth_factor_pct": 100
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "712 stars",
"points": 46.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 712
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "40 forks",
"points": 13.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 40
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "6 watchers",
"points": 3.9,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 6
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"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 (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"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": "moderate",
"name": "Sustainability & Governance",
"value": 67,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 11,
"top_contributor_share": 0.676
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 68% of commits",
"points": 7.3,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 68
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "11 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 11
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"merged_prs": 20,
"open_issues": 0,
"closed_issues": 10,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 15
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "20/35 decided PRs merged",
"points": 21.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 20,
"decided": 35
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 10/30 approved changesets -- score normalized to 3",
"points": 4.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": 75,
"inputs": {
"followers": 4538,
"owner_type": "User",
"is_verified": null,
"owner_login": "sethvargo",
"public_repos": 59,
"account_age_days": 5783
},
"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": "4,538 followers of sethvargo",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 4538,
"login": "sethvargo"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "59 public repos, account ~15 yr old",
"points": 24.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 59
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/sethvargo/go-retry"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 4
},
"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 4 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 4
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"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": 51,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 58,
"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": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"points": 10,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 57,
"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 is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"points": 1.2,
"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 10/30 approved changesets -- score normalized to 3",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"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 not fuzzed",
"points": 0,
"status": "missed",
"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": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.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": "all dependencies are pinned",
"points": 5,
"status": "met",
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"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, No advisories left outstanding. Remaining weights renormalized. Matched 6 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",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 6
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 6,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"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 carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"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": 6,
"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": 16
},
"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": 56,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.618,
"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": "21 of 34 human commits state their intent (structured subject or explanatory body)",
"points": 32.9,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 21,
"sampled": 34
}
}
],
"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": [],
"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"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 34",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 34
}
}
],
"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": "all dependencies are pinned",
"points": 10,
"status": "met",
"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": 8878,
"source_files_sampled": 10,
"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/10 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 10,
"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": [],
"report_type": "repository",
"generated_at": "2026-07-22T08:26:26.328741Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/sethvargo/go-retry.svg",
"full_name": "sethvargo/go-retry",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}