原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [
"database",
"go",
"golang",
"scan",
"sql"
],
"is_fork": false,
"size_kb": 145,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 89171
},
"pushed_at": "2026-07-19T23:43:05Z",
"created_at": "2022-08-06T13:26:40Z",
"owner_type": "User",
"updated_at": "2026-07-21T00:07:40Z",
"description": "Scan provides the ability to to scan sql rows directly to any defined structure.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://stephenafamo.com",
"name": "Stephen Afam-Osemene",
"type": "User",
"login": "stephenafamo",
"company": null,
"location": "United Kingdom",
"followers": 431,
"avatar_url": "https://avatars.githubusercontent.com/u/13472455?v=4",
"created_at": "2015-07-23T18:12:12Z",
"is_verified": null,
"public_repos": 120,
"account_age_days": 4018
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.9.0",
"kind": "minor",
"published_at": "2026-07-19T23:31:44Z"
},
{
"tag": "v0.8.0",
"kind": "minor",
"published_at": "2025-06-10T06:00:40Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2025-06-10T06:00:40Z"
},
{
"tag": "v0.6.2",
"kind": "patch",
"published_at": "2025-04-08T15:10:55Z"
},
{
"tag": "v0.6.1",
"kind": "patch",
"published_at": "2024-11-18T10:52:09Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2024-09-04T21:36:07Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2023-09-11T20:54:33Z"
},
{
"tag": "v0.4.2",
"kind": "patch",
"published_at": "2023-03-28T10:04:03Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2023-01-10T22:03:18Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2023-01-03T01:27:55Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2023-01-02T23:17:27Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2022-12-27T21:46:49Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2022-12-27T02:26:14Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2022-12-27T01:01:15Z"
}
],
"recent_commits": [
{
"oid": "de9ac3f6f03b6f83902021ced28a4405a14d6067",
"body": "feat: add `WithRowSkip` to skip decoding already-known rows",
"is_bot": false,
"headline": "Merge pull request #13 from sandonemaki/scan-rowskip",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-19T23:31:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38ed4dfd074bf4d779890cf3beea12a48f712750",
"body": "perf: build the struct mapping plan once per query, not once per row",
"is_bot": false,
"headline": "Merge pull request #12 from sandonemaki/scan-plan-once",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-19T23:31:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66321006523ce2c899daa9b19da1112ff88d05f4",
"body": "Preload-style queries deliver the same related row once per parent row.\nA caller that shares one instance per distinct key (bob's Preload does\nthis since stephenafamo/bob#736) still pays to decode every duplicate:\ndestinations are created, scanned into and read back, then thrown away.\n\nAdd an opt-in\n[…]\n (fan-in 20),\npass-through converter:\n\n allocs/op 92,034 -> 8,452 (-90.8%)\n B/op 5.67MB -> 4.00MB (-29.4%)\n sec/op faster in every paired run (-17% .. -69%, noisy laptop)",
"is_bot": false,
"headline": "feat: add WithRowSkip to skip decoding already-known rows",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-19T05:42:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7fff26f25355f72282e039c2708068d157ced432",
"body": "scanOneRow calls before/scan/after strictly in sequence for each row,\nand the mapper factory runs once per query, so per-query closures can\ncarry buffers that are reused across rows — the same reasoning behind\nthe links slice in Mod and the scan-destination buffers in Row.\n\nReuse the allOptions dest\n[…]\n regular path's row value in a small\nreusable holder instead of boxing a new interface value on every row.\n\nThis removes two allocations per row from the allOptions path and one\nfrom the regular path.",
"is_bot": false,
"headline": "perf: reuse the per-query link and destination buffers across rows",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-19T05:32:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ad64fce856bed38797171131e5a04493e8597f7",
"body": "The Mapper contract says \"Any expensive operation, like reflection\nshould be done outside the returned function\", but the struct mapper\nre-derived query-constant data inside its per-row functions:\n\n- allOptions resolved each destination's field type with\n reflect.Type.FieldByIndex for every column \n[…]\ny name in filterColumns. Initializing every unique init path\nbefore scheduling any field address also means a nested pointer can no\nlonger be re-initialized after a sibling column's address was taken.",
"is_bot": false,
"headline": "perf: resolve the struct mapping plan once per query, not once per row",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-19T05:20:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d1f60b11aa2e5881f96a0ee216332d87b551b41d",
"body": "The wide-struct benchmarks only exercise the regular mapping path. Add\nvariants with a pass-through TypeConverter and an always-true\nRowValidator (the allOptions path), and a struct that spreads its\ncolumns over two embedded pointer structs (exercising the mapping's\nnested-pointer init paths).",
"is_bot": false,
"headline": "bench: add allOptions and nested-pointer scan benchmarks",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-19T05:09:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bafbe72054aec44fbe16218aebfe1d41b27618f7",
"body": "fix: check rows.Err() after iteration in Each to surface mid-stream e…",
"is_bot": false,
"headline": "Merge pull request #11 from dmakushin/fix/each-rows-err-check",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-18T08:16:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9f3262aab96189631981c0711237416bbaf485e",
"body": "fix: close rows in OneFromRows, AllFromRows and CursorFromRows to pre…",
"is_bot": false,
"headline": "Merge pull request #10 from dmakushin/fix/close-rows-in-fromrows",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-18T08:11:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e26f67f49a5f9bc9926cc82cc64bdddd82159163",
"body": "…vent connection leak\n\nOneFromRows and AllFromRows now use defer rows.Close() to ensure the\nunderlying rows are always released back to the pool. Previously callers\nwere responsible for closing, which led to connection leaks when the\ncaller forgot (e.g. QueryStmt.One in bob never exhausted the resul\n[…]\nrapRows error path; on success\nthe cursor takes ownership.\n\nThe higher-level convenience functions One and All previously had their\nown defer rows.Close(), which is now redundant and has been removed.",
"is_bot": false,
"headline": "fix: close rows in OneFromRows, AllFromRows and CursorFromRows to pre…",
"author_name": "Dima Makushin",
"author_login": "dmakushin",
"committed_at": "2026-07-18T00:54:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ce4ddfd564add49d2b904ebe7be2b24135d2fd90",
"body": "…rrors\n\nUnlike OneFromRows and AllFromRows, Each never consulted rows.Err()\nafter its for rows.Next() loop exited. If Next() returns false due to\na database error (network disconnect, context deadline, SQL error from\na function mid-result-set), the error was silently dropped and the\ncaller's range l\n[…]\nop completed as if everything was fine.\n\npgx's own ForEachRow, CollectRows, AppendRows, and the database/sql\ndocs all follow the same pattern: check Err() after the loop. This\nfix brings Each in line.",
"is_bot": false,
"headline": "fix: check rows.Err() after iteration in Each to surface mid-stream e…",
"author_name": "Dima Makushin",
"author_login": "dmakushin",
"committed_at": "2026-07-18T00:41:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d98f8ddb9974b5c2fc3bbbedfa1b509132288111",
"body": "perf: reuse per-row scan buffers in Row",
"is_bot": false,
"headline": "Merge pull request #9 from sandonemaki/perf/reuse-row-scan-buffers",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-08T22:24:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e72db8e51a47d694216f321418976013df127bec",
"body": "The per-row scan path (scanCurrentRow, run once per row for every mapper\ntype and every query) allocated two slices on each row:\n\n- scanDestinations was reallocated with make() purely to reset state,\n even though the before hook re-populates the same indices\n deterministically each row.\n- createTa\n[…]\n columns are constant per query.\n\nWide-struct bench (11 cols, 100 rows):\n ScanAll: 520 -> 321 allocs/op (-38%), 134704 -> 88512 B/op (-34%)\n ScanOne: 16 -> 15 allocs/op, 2808 -> 2552 B/op",
"is_bot": false,
"headline": "perf: reuse per-row scan buffers in Row",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-07T14:17:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cbbcabc6c7e456151fa92980667a38e4080c4d6a",
"body": "StructMapper: schedule scans by column index (O(C²) → O(C))",
"is_bot": false,
"headline": "Merge pull request #8 from sandonemaki/perf/schedule-scan-by-index",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2026-07-07T10:30:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7abd709df9be64cae5d1b7decd5869dfcdd4d70",
"body": null,
"is_bot": false,
"headline": "bench: add wide-struct scan benchmarks",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-07T06:27:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2458671bcc95f9152382b1c544205a3e22fcdbc8",
"body": null,
"is_bot": false,
"headline": "perf: schedule struct mapper scans by column index",
"author_name": "makisan",
"author_login": "sandonemaki",
"committed_at": "2026-07-07T06:27:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6aff4b33263f471ef9c745c0503bda109bea2b1",
"body": null,
"is_bot": false,
"headline": "Add Scan methods to scan by index",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2025-06-10T06:00:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e4761513a1120cad9edd399acb4da6138466d34",
"body": null,
"is_bot": false,
"headline": "minor cleanup",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2025-06-10T05:18:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20fabae24daaf5f61969fadc41cc0f70c01f3734",
"body": null,
"is_bot": false,
"headline": "Add tests for StructMapperColumns()",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2025-04-08T17:40:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6b706129d47370eba88202cf96f580d249fee43",
"body": null,
"is_bot": false,
"headline": "Add StructMapperColumns() to list columns that can be mapped",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2025-04-08T15:10:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b01b5dfd7538227a5c75a5f57c2301f7fa36a81c",
"body": null,
"is_bot": false,
"headline": "Remove redundant line in README.md",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2025-01-19T19:17:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70d2d8a69ded4b1e828dcb06ae62da2997dc35cd",
"body": null,
"is_bot": false,
"headline": "Add `Each()` to stdscan and pgxscan",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2024-11-18T10:52:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c442531f7dbe0c68f7e682441ff5e9fb8bcc48d7",
"body": null,
"is_bot": false,
"headline": "Add `Each()` to work with go1.23 range-over-func",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2024-09-04T21:36:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ba867a0d6320411a251c4dda4923466a87d5d80",
"body": "Revert \"Make the struct mapping output public\"",
"is_bot": false,
"headline": "Merge pull request #6 from stephenafamo/revert-3-named-args-v2",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-09-11T20:54:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ce47dab1e2efc82af753ce34a83e6c71ccd920b",
"body": null,
"is_bot": false,
"headline": "Revert \"Make the struct mapping output public\"",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-09-11T20:52:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "152a85677319c1be9f3f7e2360fa12efb952f298",
"body": "Make the struct mapping output public",
"is_bot": false,
"headline": "Merge pull request #3 from RangelReale/named-args-v2",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-09-11T20:27:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c204ee42cd14900c58651615b46ec7c21a51edd",
"body": "Pass allow unknown flag to row scanner.",
"is_bot": false,
"headline": "Merge pull request #5 from popescu-af/4/pass_allow_unknown_flag",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-07-18T11:52:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbc972b68e538bd5a5087798b4f09b11e6445b81",
"body": "Co-authored-by: Stephen Afam-Osemene <me@stephenafamo.com>",
"is_bot": false,
"headline": "Update exec_test.go",
"author_name": "popescu-af",
"author_login": "popescu-af",
"committed_at": "2023-07-18T11:12:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4965ded5c6e7597f2fcb0e48a90a22da83aef09",
"body": null,
"is_bot": false,
"headline": "Code review fix.",
"author_name": "Alexandru Popescu",
"author_login": "popescu-af",
"committed_at": "2023-07-18T09:40:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "954942c5f19ee3730081fa777ca69d3e7346ff4a",
"body": null,
"is_bot": false,
"headline": "Pass allow unknown flag to row scanner.",
"author_name": "Alexandru Popescu",
"author_login": "popescu-af",
"committed_at": "2023-07-18T08:12:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3de7f7af0e72f682144c380fc4f515f82a36546b",
"body": null,
"is_bot": false,
"headline": "make the struct mapping output public",
"author_name": "Rangel Reale",
"author_login": "RangelReale",
"committed_at": "2023-06-06T11:27:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69030677cb2df82cced579bf55308cb7d89f3b72",
"body": "fix: add an error catch for deferrerd rows errors",
"is_bot": false,
"headline": "Merge pull request #2 from hiendv/fix-scan-deferred-errors",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-03-28T10:04:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b1beee18501afc2ce279c3099f22379174b5a05",
"body": null,
"is_bot": false,
"headline": "fix: add an error catch for deferrerd rows errors",
"author_name": "hiendv",
"author_login": "hiendv",
"committed_at": "2023-03-28T08:49:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c58b7f625dc4b8ae0d126ff44e92c10e3f4487c7",
"body": null,
"is_bot": false,
"headline": "Fix bug with tagged fields",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-10T22:03:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ff14b9b0b359dc2b9efe17e71add7c3bb476b02",
"body": "also refactor MappingOption",
"is_bot": false,
"headline": "Rework TypeConverter",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-03T01:27:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51fb93d74499fef1e1093c3af700800278501ece",
"body": null,
"is_bot": false,
"headline": "Add WithMapperMod option",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-03T01:05:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "582136f9fa16109b76d2539546647ffdf11de2ac",
"body": null,
"is_bot": false,
"headline": "README update",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T23:17:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2be7892905a8ad489f68c0bf9a1a458fb85ce6d5",
"body": null,
"is_bot": false,
"headline": "add more comments",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T23:10:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de74de69e2b628f69904b4a10d48e1ee94fb5749",
"body": null,
"is_bot": false,
"headline": "renaming and refactoring",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T22:58:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d999fda0cd991b3d5d5e1e46b97fbd0bc8cb096e",
"body": null,
"is_bot": false,
"headline": "remove redundant scanned field in values",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T22:22:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b137970b5b99503624b4c5826b0d723d08f4d99e",
"body": null,
"is_bot": false,
"headline": "add WithScannableTypes test and some test reorg",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T22:17:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e15fcc0f0417c6a170792b371002ee69dca08fe",
"body": null,
"is_bot": false,
"headline": "Remove mappable",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T13:48:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd2c3d6011ba8fd838794574ceecd1f5178f902a",
"body": null,
"is_bot": false,
"headline": "remove unused function",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T13:41:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6362921a1e82852a7416b20b29d99456f1da855f",
"body": null,
"is_bot": false,
"headline": "support typeConverter and rowValidator options after refactor",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-02T13:39:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92a500d827245f7cbd6536ec29d0429555d3169c",
"body": null,
"is_bot": false,
"headline": "remove collect",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-01T23:39:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26575c003cd70ea342f4050bc3c0f6e335b4bccc",
"body": null,
"is_bot": false,
"headline": "Lots of optimization",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-01T23:37:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "092ccca88d1f0eb6b3d58e5c52597f2ebfcd7d2d",
"body": null,
"is_bot": false,
"headline": "Simplify TypeConverter",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-01T02:28:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da4d16929a6ff4ffa741d034cdea2f6a0ee48770",
"body": null,
"is_bot": false,
"headline": "Added benchmarks",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-01T01:48:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce850a16919b25f3b0cfedd4e7b6375955350f0a",
"body": null,
"is_bot": false,
"headline": "add typeOf helper function",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2023-01-01T01:43:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d97e610ce9f8684f6aacf83948696793d575278",
"body": null,
"is_bot": false,
"headline": "Small doc update",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-30T22:58:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "18c8d99e1957bb01b872be0ce78c63fe46209469",
"body": null,
"is_bot": false,
"headline": "Cache struct mapping for mapper sources",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-30T22:52:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1537922f204889de9b9c6c718a8d29b64e59644",
"body": null,
"is_bot": false,
"headline": "Properly test row validator",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-30T22:50:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83f4165b73ad3c59f741ae83e766369f8d487d67",
"body": null,
"is_bot": false,
"headline": "Fix bug with getting any value",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-30T10:41:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd57479a0323043f37715fe68833ac77b7a60f07",
"body": null,
"is_bot": false,
"headline": "Update fakedb",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-30T10:40:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97519a3ab86f68a8cea8a38de169336aa0954ad7",
"body": null,
"is_bot": false,
"headline": "add FromRows variants",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-27T21:46:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5d51b0db9845bbea3ee1d7cad816d2c8c8015f6",
"body": null,
"is_bot": false,
"headline": "Improve README.md",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-27T02:26:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "afcf56f9169143cd1ce4f5c8a82f87fa9c53fe8f",
"body": null,
"is_bot": false,
"headline": "Add pgxscan to README.md",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-27T01:01:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2bde72b763dd370e7524dce95a6f2f2e57be9492",
"body": null,
"is_bot": false,
"headline": "Add pgxscan",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-27T00:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "634666add4fde562fc36787eb503e9bd3483c86f",
"body": null,
"is_bot": false,
"headline": "Add test for ScannableTypes",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-27T00:13:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3abb6d4bf10626a5417d11f688a8d949c917990b",
"body": null,
"is_bot": false,
"headline": "Add row validator test",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T23:23:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94fb55593b605f914cdedd907a2abe5df0d7fc9c",
"body": null,
"is_bot": false,
"headline": "Add test for type converter",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T23:20:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "798d0542857222d1b6beb2bc5badbed86fae218e",
"body": null,
"is_bot": false,
"headline": "Remove unnecessary mapping error Equal method",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T22:16:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ac943a9a1e28310de7a4e7fb4f5d4aa7ebcb6c1",
"body": null,
"is_bot": false,
"headline": "Fix bug with mappable",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T22:00:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c20411ca7dec0bdbd85fa0d42ad2fafba8877ad",
"body": null,
"is_bot": false,
"headline": "Add tests for debugQueryer",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T20:07:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1db7794522320c36cfb2571c208d6e51fe39b2d",
"body": null,
"is_bot": false,
"headline": "Add badges",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T19:39:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2fad99ec2a81249571f1332b72c24f868c4dd30",
"body": null,
"is_bot": false,
"headline": "Add workflows",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-26T19:34:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cbee21adad9d79b51a61f1bf5e705fadb81d496a",
"body": null,
"is_bot": false,
"headline": "Minor fix to README.md",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-12-22T07:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a384e7cb4d28e516e5298165c7527794ed95f2a",
"body": null,
"is_bot": false,
"headline": "Add some more info to README.md",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-09-05T21:15:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bcb7d8b78f6dfad6f22ac114870c63741e9957a",
"body": null,
"is_bot": false,
"headline": "Update Readme example",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-09-05T21:01:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8307e83853ef634c8d4ed95950b959e237ddaeff",
"body": null,
"is_bot": false,
"headline": "Return sql.ErrNoRows if no rows in One()",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-09-03T21:37:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4518c32f8c716dc426878cfc82b1c14af2705878",
"body": null,
"is_bot": false,
"headline": "Account for commas in struct tag",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-28T07:09:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9a1511b18bda75ee5aab9c8f30efb0d01438a5a",
"body": null,
"is_bot": false,
"headline": "Fix bug with value callback",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-26T20:25:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2a3b6044cd4e32e886871c8d7d0a699edfb37b5",
"body": null,
"is_bot": false,
"headline": "Do struct type conversion only once",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-23T17:20:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c015f21af465208255581b68b80690f64eca214",
"body": null,
"is_bot": false,
"headline": "Add debug method to wrap a Queryer and print the queries and args",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-23T01:58:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ed7a7a0da3fdeb7c9466cf7842552417f0d1437",
"body": null,
"is_bot": false,
"headline": "remove unused print",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-23T01:51:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab63c04bd0e3a07046aa8e4b74eaa33d0fb4aed1",
"body": null,
"is_bot": false,
"headline": "Add struct mapper options and reduce use of context",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-23T00:59:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e755761c25eeb309d803f179b923d32ccfb09980",
"body": null,
"is_bot": false,
"headline": "fix flaky tests",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-23T00:37:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b25cd4dc8fd08a2d05aad3aca4aec73e50172e61",
"body": null,
"is_bot": false,
"headline": "Add options to StructMapper functions",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T23:44:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "facb483f528ee3d4ae514f09caf1cd2a2d365360",
"body": null,
"is_bot": false,
"headline": "make StructMapper a function so it can accept options",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T23:39:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7ec4832e9be1ef80d68c818fcf7f666f7c6a0ec",
"body": null,
"is_bot": false,
"headline": "make CustomStructMapper use a static configuration",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T23:26:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92eeb6cf2e417cfc68c345a58e6a4c31fa035d77",
"body": null,
"is_bot": false,
"headline": "remove aggregate struct mapper",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T23:00:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b6fc7fb40ff7547b7403bc1c5528c75a53d1d00",
"body": null,
"is_bot": false,
"headline": "move allowUnknown check from mapper to values",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T22:58:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f263773b37f86a22365d504d20e2379732b54cf",
"body": null,
"is_bot": false,
"headline": "do not init agg slice if length is 0",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T13:06:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae5919116505ead92628b2769a5b0c8f09ff4d80",
"body": null,
"is_bot": false,
"headline": "Improve AggStructMapper",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-22T01:39:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07c610de9f429d206e6a91455673fa9e74d00de7",
"body": null,
"is_bot": false,
"headline": "Fix panic when using pointer column values",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T23:47:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7210bb779b3a4b21f2988d63749f7c68333ef30c",
"body": null,
"is_bot": false,
"headline": "Add Aggregate Struct Mapper",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T22:25:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d24861f70d46921ebf216581cbe0ab4878689bc",
"body": null,
"is_bot": false,
"headline": "Contol AllowUnknownColumns with context",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T19:55:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a1bb72fcf1fb9acaf970378f7e46154bfbf0df7",
"body": null,
"is_bot": false,
"headline": "Add ability to add a prefix to the struct mapper through context",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T19:52:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca66c73b2e9c93703ab2d5351222e9e396cc08ce",
"body": null,
"is_bot": false,
"headline": "Add ability to pass mods to mappers",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T19:50:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ccc3f1ca11b2b1471ddf0be9ffde407cccf4ee5",
"body": null,
"is_bot": false,
"headline": "Remove redundant type parameter from stdscan",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T16:04:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf78ac3c451fb08b5bc708cd3c24cd8d1fb3106c",
"body": null,
"is_bot": false,
"headline": "Pass context to scan mapper",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-21T16:04:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3359d4c928a0480d284159dabb8b46bb90f80bcc",
"body": null,
"is_bot": false,
"headline": "Fix context tests",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-20T15:17:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a53cf51c2e51b9ecea135899d7a3ebb932100d30",
"body": null,
"is_bot": false,
"headline": "Pass context to mapper functions",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-10T20:32:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "463cf920d95fb9580e51455db8664d777f5903ab",
"body": null,
"is_bot": false,
"headline": "Add Cursor function for getting an *sql.Rows-like type",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T22:13:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dab956c0d41f56789bc0f4b1440d0677d3977ff3",
"body": null,
"is_bot": false,
"headline": "Add a few more details to README",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T20:06:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6096faf2e6aaf262156ee47bd5b74f17b85adef6",
"body": null,
"is_bot": false,
"headline": "Add Collect to stdscan",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T20:00:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c169799b9e14c26f61a12902c746a978b1344c4",
"body": null,
"is_bot": false,
"headline": "add struct collect test",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T19:50:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea944170483cd3efde81743611e620b511e7021b",
"body": null,
"is_bot": false,
"headline": "Add ColumnMapper and Rename SingleValueMapper -> SingleColumnMapper",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T19:08:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49478d6a13fbef45f2cbb8ef5515774148fb9612",
"body": null,
"is_bot": false,
"headline": "Add Collect function",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T19:05:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34936d79b6dc46503d8276b6b46c7f235ebb88f5",
"body": null,
"is_bot": false,
"headline": "initial commit",
"author_name": "Stephen Afam-Osemene",
"author_login": "stephenafamo",
"committed_at": "2022-08-06T13:26:59Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 14,
"commits_last_year": 15,
"latest_release_at": "2026-07-19T23:31:44Z",
"latest_release_tag": "v0.9.0",
"releases_from_tags": true,
"days_since_last_push": 3,
"active_weeks_last_year": 2,
"days_since_latest_release": 3,
"mean_days_between_releases": 143.8
},
"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/stephenafamo/scan",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/stephenafamo/scan",
"is_deprecated": false,
"latest_version": "v0.9.0",
"repository_url": "https://github.com/stephenafamo/scan",
"versions_count": 14,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-19T23:31:44Z",
"latest_version_yanked": null,
"days_since_latest_publish": 3
}
]
},
"popularity": {
"forks": 6,
"stars": 104,
"watchers": 3,
"fork_history": {
"days": [
{
"date": "2023-06-05",
"count": 1
},
{
"date": "2023-07-05",
"count": 1
},
{
"date": "2024-11-15",
"count": 1
},
{
"date": "2025-10-05",
"count": 1
},
{
"date": "2026-07-07",
"count": 1
},
{
"date": "2026-07-17",
"count": 1
}
],
"complete": true,
"collected": 6,
"total_forks": 6
},
"star_history": null,
"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": 13411,
"source_files_sampled": 19,
"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": "github.com/jackc/pgx/v5",
"direct": true,
"version": "5.2.0",
"severity": "critical",
"ecosystem": "go",
"cvss_score": 9.8,
"advisory_ids": [
"GHSA-9jj7-4m8r-rfcm",
"GHSA-fqpg-rq76-99pq",
"GHSA-j88v-2chj-qfwx",
"GHSA-mrww-27vc-gghv",
"GHSA-xgrm-4fwx-7qm8",
"GO-2024-2567",
"GO-2024-2606",
"GO-2026-4771",
"GO-2026-4772",
"GO-2026-5004"
],
"fixed_version": "5.9.2",
"advisory_count": 10,
"oldest_advisory_days": 870
},
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "0.0.0-20220829220503-c86fa9a7ed90",
"severity": "critical",
"ecosystem": "go",
"cvss_score": 10,
"advisory_ids": [
"GHSA-45gg-vh54-h5m9",
"GHSA-45x7-px36-x8w8",
"GHSA-5cgq-3rg8-m6cv",
"GHSA-78mq-xcr3-xm33",
"GHSA-89gr-r52h-f8rx",
"GHSA-9m57-25v3-79x9",
"GHSA-f5wc-c3c7-36mc",
"GHSA-f6x5-jh6r-wrfv",
"GHSA-hcg3-q754-cr77",
"GHSA-j5w8-q4qc-rx2x"
],
"fixed_version": "3.4.0",
"advisory_count": 38,
"oldest_advisory_days": 948
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "0.3.8",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5970"
],
"fixed_version": "0.39.0",
"advisory_count": 1,
"oldest_advisory_days": 9
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 1,
"critical": 2
},
"advisory_count": 49,
"affected_count": 3,
"assessed_count": 9,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 1
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/aarondl/opt",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20221129170750-3d40c96d9bb8"
},
{
"name": "github.com/google/go-cmp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.5.8"
},
{
"name": "github.com/jackc/pgx/v5",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v5.2.0"
},
{
"name": "github.com/stephenafamo/fakedb",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20221230081958-0b86f816ed97"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/aarondl/opt",
"direct": true,
"version": "0.0.0-20221129170750-3d40c96d9bb8",
"ecosystem": "go"
},
{
"name": "github.com/google/go-cmp",
"direct": true,
"version": "0.5.8",
"ecosystem": "go"
},
{
"name": "github.com/jackc/pgx/v5",
"direct": true,
"version": "5.2.0",
"ecosystem": "go"
},
{
"name": "github.com/stephenafamo/fakedb",
"direct": true,
"version": "0.0.0-20221230081958-0b86f816ed97",
"ecosystem": "go"
},
{
"name": "github.com/aarondl/json",
"direct": false,
"version": "0.0.0-20221020222930-8b0db17ef1bf",
"ecosystem": "go"
},
{
"name": "github.com/jackc/pgpassfile",
"direct": false,
"version": "1.0.0",
"ecosystem": "go"
},
{
"name": "github.com/jackc/pgservicefile",
"direct": false,
"version": "0.0.0-20200714003250-2b9c44734f2b",
"ecosystem": "go"
},
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "0.0.0-20220829220503-c86fa9a7ed90",
"ecosystem": "go"
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "0.3.8",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 9,
"direct_count": 4,
"indirect_count": 5
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 10,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 3,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "stephenafamo",
"commits": 85,
"avatar_url": "https://avatars.githubusercontent.com/u/13472455?v=4"
},
{
"type": "User",
"login": "sandonemaki",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/48534295?v=4"
},
{
"type": "User",
"login": "popescu-af",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/27784017?v=4"
},
{
"type": "User",
"login": "dmakushin",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/24922494?v=4"
},
{
"type": "User",
"login": "RangelReale",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/369785?v=4"
},
{
"type": "User",
"login": "hiendv",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1917947?v=4"
}
],
"contributors_sampled": 6,
"top_contributor_share": 0.859
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"lint.yml",
"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": 6,
"reason": "6 out of 9 merged PRs checked by a CI test -- score normalized to 6",
"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": 5,
"reason": "Found 8/16 approved changesets -- score normalized to 5",
"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": 10,
"reason": "15 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"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": 0,
"reason": "26 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "de9ac3f6f03b6f83902021ced28a4405a14d6067",
"ran_at": "2026-07-23T20:00:55Z",
"aggregate_score": 3.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-19T23:43:54Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-19T23:31:45Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/stephenafamo/scan",
"host": "github.com",
"name": "scan",
"owner": "stephenafamo"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"security": 39,
"vitality": 64,
"community": 45,
"governance": 67,
"engineering": 60
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 64,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"commits_last_year": 15,
"human_commit_share": 1,
"days_since_last_push": 3,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "15 commits in the last year",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 15
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "15 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"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": 72,
"inputs": {
"releases_count": 14,
"latest_release_tag": "v0.9.0",
"releases_from_tags": true,
"days_since_latest_release": 3,
"mean_days_between_releases": 143.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "14 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 14
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~143.8 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 143.8
}
}
],
"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": 3,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 3 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 3
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 45,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"forks": 6,
"stars": 104,
"watchers": 3,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "104 stars",
"points": 32.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 104
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "6 forks",
"points": 5.8,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 6
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "3 watchers",
"points": 1.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 3
}
}
],
"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 (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"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": "moderate",
"name": "Sustainability & Governance",
"value": 67,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 23,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 6,
"top_contributor_share": 0.859
},
"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 86% of commits",
"points": 3.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 86
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "6 contributors",
"points": 8.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 6
}
}
],
"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": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"merged_prs": 10,
"open_issues": 0,
"closed_issues": 3,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 0
},
"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": "10/10 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 10,
"decided": 10
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 8/16 approved changesets -- score normalized to 5",
"points": 7.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"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": 67,
"inputs": {
"followers": 431,
"owner_type": "User",
"is_verified": null,
"owner_login": "stephenafamo",
"public_repos": 120,
"account_age_days": 4018
},
"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": "431 followers of stephenafamo",
"points": 18.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 431,
"login": "stephenafamo"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "120 public repos, account ~11 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 120
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/stephenafamo/scan"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 3
},
"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 3 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 3
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "14 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 14
}
}
],
"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": 60,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 60,
"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": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"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": "6 out of 9 merged PRs checked by a CI test -- score normalized to 6",
"points": 12,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"database",
"go",
"golang",
"scan",
"sql"
],
"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": "5 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 5
}
}
],
"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": "at_risk",
"name": "Security",
"value": 39,
"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": 36,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.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": "6 out of 9 merged PRs checked by a CI test -- score normalized to 6",
"points": 1.5,
"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 8/16 approved changesets -- score normalized to 5",
"points": 3.8,
"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": "15 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"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": "26 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "moderate",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 9 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": 9
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 53,
"inputs": {
"source": "osv",
"advisories": 49,
"affected_packages": 3,
"assessed_packages": 9,
"unassessed_packages": 0,
"affected_by_severity": "critical 2, unknown 1",
"direct_affected_packages": 1
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "1 affected: github.com/jackc/pgx/v5 5.2.0 (critical 9.8)",
"points": 7.6,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 1,
"packages": "github.com/jackc/pgx/v5 5.2.0 (critical 9.8)"
}
}
],
"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": "1 advisory-carrying package(s) unaddressed past 90 days; oldest published 870 days ago",
"points": 32.1,
"status": "partial",
"details": [
{
"code": "advisories_stale",
"params": {
"days": 90,
"count": 1,
"oldest": 870
}
}
],
"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": 9,
"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": 6
},
"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": "at_risk",
"name": "AI Readiness",
"value": 48,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 11,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.202,
"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": "20 of 99 human commits state their intent (structured subject or explanatory body)",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 20,
"sampled": 99
}
}
],
"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"
],
"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": "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 99",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 99
}
}
],
"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": 13411,
"source_files_sampled": 19,
"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/19 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 19,
"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-23T20:01:10.042873Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/stephenafamo/scan.svg",
"full_name": "stephenafamo/scan",
"license_state": "standard",
"license_spdx": "MIT"
}