Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"go",
"golang",
"search",
"syntax",
"ast",
"gogrep"
],
"is_fork": false,
"size_kb": 150,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 239519,
"Makefile": 592
},
"pushed_at": "2023-04-19T13:39:26Z",
"created_at": "2021-12-14T12:19:21Z",
"owner_type": "User",
"updated_at": "2026-07-21T05:57:02Z",
"description": "Syntax-aware Go code search, based on the mvdan/gogrep",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "master",
"license_spdx_raw": "NOASSERTION",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://twitter.com/quasilyte",
"name": "quasilyte",
"type": "User",
"login": "quasilyte",
"company": null,
"location": "Georgia",
"followers": 844,
"avatar_url": "https://avatars.githubusercontent.com/u/6286655?v=4",
"created_at": "2013-12-30T12:53:15Z",
"is_verified": null,
"public_repos": 169,
"account_age_days": 4600
},
"license": {
"state": "custom",
"spdx_id": null,
"raw_spdx": "NOASSERTION",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2023-02-19T20:02:43Z"
}
],
"recent_commits": [
{
"oid": "631b4cfd0c04064adba931d1474e1d92ca818a46",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: update gogrep library version",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-10-02T17:08:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e78263da2dd364b4112d1af03c049ff69f1f5e77",
"body": "Use a single struct type `NodeSlice` to wrap all\r\nkinds of `ast.Node` slices; this allows us to have\r\nan allocation pool slice that can be used to\r\navoid allocations in most cases.\r\n\r\nWhile some operations like `NodeSlice.At` become slower,\r\nother operations like `NodeSlice.SliceInto` are far\r\nmore \n[…]\n ± 0% -42.86% (p=0.000 n=10+10)\r\n Match/exprList-8 256B ± 0% 160B ± 0% -37.50% (p=0.000 n=10+10)\r\n [Geo mean] 59.0B 48.2B -18.32%",
"is_bot": false,
"headline": "optimize node slices (#33)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-10-02T17:07:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dce9607f77bd8fa3563d0beec842bb2185ab9f53",
"body": "The go install command is incorrectly targeting `quasilyte/cmd`. Also I had to add `@latest` for my install.",
"is_bot": false,
"headline": "Fix `go install` command-line (#32)",
"author_name": "Chris Sidi",
"author_login": "hashtagchris",
"committed_at": "2022-09-20T06:13:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86e4605de09f7a81444906cf426874a434ec156b",
"body": null,
"is_bot": false,
"headline": "handle IndexListExpr node (#31)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-08-28T22:30:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e2753ee08f95c6a2667ea490f14a6bab0852a7c",
"body": "Also treat `any` identical to `interface{}` unless we're\r\ndoing a strict match.\r\n\r\nTo preserve compatibility with older Go releases, `typeparams` package is used.",
"is_bot": false,
"headline": "implement generics matching (#30)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-04-29T20:54:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3b98902346ebf01d4ab9127459fb1ef96cdc5b8",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: update gogrep lib version",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-03-20T17:25:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7f5e21cda5464aeb17a0ce6bf9c6f2a11be4dc4",
"body": "Introduced a new matcher op: maybeVariadicCallExpr.\r\nUnlike CallExpr, it doesn't unconditionally accept\r\nboth variadic and non-variadic calls. Instead, it only\r\naccepts variadic calls if there are more than N arguments.\r\n\r\nTake this pattern for example:\r\n\r\n\tf($_, $_, $_, $*_)\r\n\r\nVariadic call will be accepted only if there are more than\r\n3 arguments passed to f.\r\n\r\n\tf(a, b, c, 4) // ok\r\n\tf(a, b, c, xs...) // ok\r\n\tf(a, b, xs...) // NOT ok\r\n\r\nFixes #28",
"is_bot": false,
"headline": "improve variadic funcs matching rules (#29)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-03-20T17:15:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "628d8b3623b55dd20f0e1e29e2d03b7b8b55d142",
"body": null,
"is_bot": false,
"headline": "add features needed for a submatch support (#27)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-20T14:10:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e471a266cab5319d1c2ff062c6ac7162174f44cf",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: update lib version",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T23:54:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "039753a3dd323781c43641d54c1691153cd52ecc",
"body": null,
"is_bot": false,
"headline": "add range header patterns matching support (#25)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T18:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4887d37f67721913a27869d22fb59e7ea3b22c26",
"body": null,
"is_bot": false,
"headline": "handle `for range ...` patterns correctly (#24)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T15:23:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "088f76da46d24f84b100837565ae9c256d47c22d",
"body": null,
"is_bot": false,
"headline": "fix typo",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T14:43:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a864d73ae9bba832520d707be17160e1de10965a",
"body": "It's still not always correct, but it should be good enough\r\nuntil we have a better alternative.",
"is_bot": false,
"headline": "make partial `range` patterns yield better pos ranges (#23)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T14:31:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cde8b5d8257f986949456ca11ec55ed128f6244f",
"body": "Examples: `range $x`, `range data[:]`",
"is_bot": false,
"headline": "add support for standalone range clauses (#22)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-04T13:08:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44be47473855612b9e7e46934938063eefc56a77",
"body": null,
"is_bot": false,
"headline": "fix a few panics found by fuzzing (#21)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-03T13:48:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffaa07af02e3c4c6e87561e305d4f4aa18250847",
"body": null,
"is_bot": false,
"headline": "fix import patterns compilation (#20)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-03T11:00:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b302ec19c4fe5326a951d3c0d5e24e3e02bcaf28",
"body": "With custom imports, it's possible to re-map default\r\npackage symbols resolving in typed matching mode.",
"is_bot": false,
"headline": "add CompileConfig.Imports option (#19)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-03T10:27:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8571fe5ff4387dc14a146beb3bd579603bf960b5",
"body": "* Added `file.IsTest()` filter\r\n* Added `{{replace s old new}}` template func for `--format`\r\n* updated gogrep lib version",
"is_bot": false,
"headline": "cmd/gogrep: several improvements (#18)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-02T21:20:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1ef2ec3d91c62bea641385da32fd8adf933875d",
"body": "Fixes #16",
"is_bot": false,
"headline": "added basic support for import patterns (#17)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-02T21:11:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4947cd9cf01cbf98aefc4a59a3351560614d2f7",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: more tight memprofile rate",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-01T21:49:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fa18c9834d912039ae4684e827de88eb20b5b60",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: remove debug print",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2022-01-01T01:13:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74657494c7f080002112747d14e89657c26567bc",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: implement match vars interpolation in --format (#15)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-31T23:18:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26cfd4290aa32c1034cd9e95c561cc441029c374",
"body": null,
"is_bot": false,
"headline": "more tests for DeclStmt matching",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-28T11:27:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "598ae16ef739dfeeeffc0e606f08e4c8bb6f23a0",
"body": "Fixes #325",
"is_bot": false,
"headline": "fix DeclStmt matching inside block statements (#14)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-28T09:46:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e12a97c7d96dd6b40cd3c04a29cbcf76036369a5",
"body": null,
"is_bot": false,
"headline": "docs/gogrep_cli: add code formatting to template expressions",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-26T11:35:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19cd916ef20271ddb520514e846daf719905c86f",
"body": null,
"is_bot": false,
"headline": "readme: move cli docs to a separate file (#13)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-26T11:34:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "efa355ff38f6826d0772a932647187a448d65ffa",
"body": null,
"is_bot": false,
"headline": "readme: add cli args documentation (#12)",
"author_name": "Denis Limarev",
"author_login": "peakle",
"committed_at": "2021-12-26T11:12:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ecbf85177e39da662d3d5609e1062f7e81caa4d",
"body": null,
"is_bot": false,
"headline": "fix `stdlibpkg.$_` pattern compilation (#11)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T16:00:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba25d0f7d6bff27f63d8008f9d7528062b6bcbd0",
"body": null,
"is_bot": false,
"headline": "run go-consistent on various modules separately",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T14:39:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93a9b9cfc83c581f0218534c9dcfada25f4c0359",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: fix deps",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T14:33:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb92e7997af1f82a04466689290daf1d72ee4def",
"body": null,
"is_bot": false,
"headline": "move cmd/gogrep to a separate module",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T14:31:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47561ea9892a3269abfa50fc0db2c09d67e0e976",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T14:25:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f810a40e2dfbd18c2cd69bf01701863aa2a1bd8",
"body": null,
"is_bot": false,
"headline": "add more funccall matching tests (#10)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-22T11:14:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c2aba6ca6bba1f5d90e8a4c40efcdd9f5e6153e",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: ignore local heat levels when filtering (#8)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-21T13:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e88226a99620708e8633447259e04eba1bfa1911",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep,filters: add basic var text filters support (#7)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-21T10:11:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbda46ade79595c8b3388b8578bbdb81c6b3be34",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: add useful default --exclude value (#6)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-21T08:46:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48b9c15ce8169bd689eae7593cc514b38e591598",
"body": null,
"is_bot": false,
"headline": "filters,cmd/gogrep: add `$$` var support in filters (#5)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-20T13:22:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b647733e866c0e29f0a71aea63e25ac7d7a91af",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: update heatmap version (#4)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-20T12:29:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3535cb9ecc2d55466df44245a85189f4013b8c0",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: use optimized form of filepath.Abs (#3)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-17T11:29:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d62eab3d637635dae0aed25834a1d737eeb15141",
"body": null,
"is_bot": false,
"headline": "readme: fix links and badges (#2)",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-17T10:01:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6840d3057f5de34c0f8f880a2efd998d5dd8503a",
"body": "all: enable linters and tests on github actions",
"is_bot": false,
"headline": "Merge pull request #1 from quasilyte/quasilyte/enable_linters",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-17T09:53:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db4e633f67f55f5d9e948eb9b7e70a0b1d1cecc5",
"body": null,
"is_bot": false,
"headline": "all: enable linters and tests on github actions",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-17T09:49:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb7320c437a8d8e49289c1fd18af2cc48f92e12b",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: add heatmap filtering support",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-17T09:05:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5c632ae1d67646c7074d6a55468e51d992253aa",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep,filters: initial filters implementation",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-16T20:53:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79943c73296fdad337580a862f102f1526d3d081",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: add some comments",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T14:44:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "520c5829da96dc92e70828ddb4e314121064d344",
"body": null,
"is_bot": false,
"headline": "cmd/gogrep: add -c mode",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T14:34:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c41044e5a3604501f27991ec799d1cadbcdfeb8",
"body": null,
"is_bot": false,
"headline": "remove binary (oops)",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T14:34:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43cb1ff071f4d39a79004cee6514a4bb8c883678",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' of https://github.com/quasilyte/gogrep",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T13:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd67c4aa45949986f441fc47f070ca9a7d527ce0",
"body": null,
"is_bot": false,
"headline": "initial implementation",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T13:58:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb206bffa123caf496ac08b5dee6a4c8c745c3d5",
"body": null,
"is_bot": false,
"headline": "Update LICENSE",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T12:27:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58f343d58ded385765d08a43ba9af333f700fe0c",
"body": null,
"is_bot": false,
"headline": "add readme stub",
"author_name": "Iskander Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T12:25:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a6752040da4aec647879c908aaae6bba0ee137c",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Iskander (Alex) Sharipov",
"author_login": "quasilyte",
"committed_at": "2021-12-14T12:19:22Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 0,
"latest_release_at": "2023-02-19T20:02:43Z",
"latest_release_tag": "v0.5.0",
"releases_from_tags": false,
"days_since_last_push": 1203,
"active_weeks_last_year": 0,
"days_since_latest_release": 1261,
"mean_days_between_releases": null
},
"artifacts": {
"collected": true,
"structure": [
"tree.go_main"
],
"declarations": []
},
"community": {
"has_readme": true,
"has_license": true,
"readme_badges": {
"hosts": [
"codecov.io",
"github.com",
"goreportcard.com",
"pkg.go.dev"
],
"total": 4,
"header": 4,
"collected": true,
"has_inspect_badge": false
},
"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/quasilyte/gogrep",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"categories": [],
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/quasilyte/gogrep",
"declared_type": null,
"is_deprecated": false,
"latest_version": "v0.5.0",
"repository_url": "https://github.com/quasilyte/gogrep",
"versions_count": 1,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2022-10-02T17:08:52Z",
"latest_version_yanked": null,
"days_since_latest_publish": 1401
}
]
},
"popularity": {
"forks": 5,
"stars": 47,
"watchers": 4,
"fork_history": {
"days": [
{
"date": "2021-12-14",
"count": 1
},
{
"date": "2021-12-26",
"count": 1
},
{
"date": "2022-09-20",
"count": 1
},
{
"date": "2023-04-19",
"count": 1
},
{
"date": "2025-06-24",
"count": 1
}
],
"complete": true,
"collected": 5,
"total_forks": 5
},
"star_history": null,
"open_issues_and_prs": 5
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"cmd/gogrep/go.mod",
"go.mod"
],
"largest_source_bytes": 52341,
"source_files_sampled": 31,
"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": 7,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/go-toolsmith/astequal",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.0.3"
},
{
"name": "github.com/google/go-cmp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.5.8"
},
{
"name": "golang.org/x/exp/typeparams",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20220428152302-39d4317da171"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/go-toolsmith/astequal",
"direct": true,
"version": "1.0.3",
"ecosystem": "go"
},
{
"name": "github.com/google/go-cmp",
"direct": true,
"version": "0.5.8",
"ecosystem": "go"
},
{
"name": "golang.org/x/exp/typeparams",
"direct": true,
"version": "0.0.0-20220428152302-39d4317da171",
"ecosystem": "go"
},
{
"name": "golang.org/x/exp/typeparams",
"direct": true,
"version": "0.0.0-20221002003631-540bb7301a08",
"ecosystem": "go"
},
{
"name": "github.com/google/pprof",
"direct": false,
"version": "0.0.0-20211214055906-6f57359322fd",
"ecosystem": "go"
},
{
"name": "github.com/quasilyte/gogrep",
"direct": false,
"version": "0.0.0-20221002170714-e78263da2dd3",
"ecosystem": "go"
},
{
"name": "github.com/quasilyte/perf-heatmap",
"direct": false,
"version": "0.0.0-20211220153856-7361377975b8",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 7,
"direct_count": 4,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 29,
"open_issues": 4,
"closed_ratio": 0.333,
"closed_issues": 2,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "quasilyte",
"commits": 50,
"avatar_url": "https://avatars.githubusercontent.com/u/6286655?v=4"
},
{
"type": "User",
"login": "hashtagchris",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/7145717?v=4"
},
{
"type": "User",
"login": "peakle",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/27820873?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.962
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"go.yml",
"release-management.yml"
],
"has_docs_dir": false,
"linter_configs": [
".golangci.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 20 merged PRs checked by a CI test -- score normalized to 0",
"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": 0,
"reason": "Found 2/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 5 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 10,
"reason": "project is fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 9,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "631b4cfd0c04064adba931d1474e1d92ca818a46",
"ran_at": "2026-08-04T16:55:22Z",
"aggregate_score": 4.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"recent_prs": {
"merged_7d": 0,
"decided_7d": 0,
"merged_30d": 0,
"authors_30d": 0,
"decided_30d": 0,
"sample_size": 29,
"window_days": 30,
"sample_exhausted": false,
"authors_probed_30d": 0,
"newcomer_merged_30d": 0,
"bot_prs_excluded_30d": 0,
"newcomer_authors_30d": 0,
"newcomer_decided_30d": 0
},
"ci_last_run_at": null,
"oldest_open_prs": [
{
"number": 34,
"created_at": "2023-04-19T13:39:26Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2022-10-02T17:07:15Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 9,
"created_at": "2021-12-21T15:01:55Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 26,
"created_at": "2022-01-14T13:31:15Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 35,
"created_at": "2023-08-15T23:38:59Z",
"last_comment_at": "2024-07-05T15:12:59Z",
"last_comment_author": "vendelin8"
},
{
"number": 36,
"created_at": "2023-08-25T01:49:16Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/quasilyte/gogrep",
"host": "github.com",
"name": "gogrep",
"owner": "quasilyte"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": "The weighted overall 43 is calibrated to 39 on the published index scale (record calibration 2026-08-02). High-Risk Jurisdiction Policy applies a 75% multiplier to weighted overall health and gives it an At Risk ceiling of 34.",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 43,
"calibrated": 39,
"calibration": "2026-08-02"
}
},
{
"code": "jurisdiction_overall_adjustment",
"params": {
"cap": 34,
"pct": 75
}
}
],
"value": 29,
"inputs": {
"security": 45,
"vitality": 18,
"community": 39,
"governance": 48,
"calibration": "2026-08-02",
"engineering": 62,
"ai_readiness": 62,
"weighted_overall_raw": 43,
"high_risk_jurisdiction_cap": 34,
"high_risk_jurisdiction_multiplier": 75,
"weighted_overall_before_jurisdiction": 39,
"overall_after_jurisdiction_multiplier": 29
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 18,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 1,
"days_since_last_push": 1203,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1203 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 1203
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "weak",
"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": 44,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v0.5.0",
"releases_from_tags": false,
"days_since_latest_release": 1261,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1261 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1261
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"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": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "dormant",
"guards": [
"dependencies_clean"
],
"signals": [
"scorecard_unmaintained"
],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 1,
"unanswered_open_issues": 4,
"days_since_last_merged_pr": 1402,
"days_since_last_human_commit": 1402,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 1402 days, with nothing left unanswered; held at dormant by no affected dependency",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_quiet",
"params": {
"days": 1402
}
},
{
"code": "abandonment_guarded",
"params": {
"guards": "no affected dependency"
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "weak",
"name": "Community & Adoption",
"value": 39,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"forks": 5,
"stars": 47,
"watchers": 4,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "47 stars",
"points": 27,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 47
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "5 forks",
"points": 5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 5
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "4 watchers",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 4
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "weak",
"name": "Community health",
"note": null,
"notes": [],
"value": 44,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": 4,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [
"codecov.io",
"github.com",
"goreportcard.com",
"pkg.go.dev"
],
"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": "license file present, not a recognized license",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "license_custom",
"params": {}
}
],
"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": "weak",
"name": "Sustainability & Governance",
"value": 48,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.962
},
"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 96% of commits",
"points": 0.9,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 96
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 51,
"inputs": {
"merged_prs": 29,
"open_issues": 4,
"closed_issues": 2,
"prs_merged_7d": 0,
"prs_decided_7d": 0,
"prs_merged_30d": 0,
"prs_decided_30d": 0,
"issue_closed_ratio": 0.333,
"closed_unmerged_prs": 0,
"first_time_authors_30d": 0,
"first_time_prs_merged_30d": 0,
"first_time_prs_decided_30d": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "33% of issues closed",
"points": 14,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 33
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "29/29 decided PRs merged",
"points": 30,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 29,
"decided": 29
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 70,
"inputs": {
"followers": 844,
"owner_type": "User",
"is_verified": null,
"owner_login": "quasilyte",
"public_repos": 169,
"account_age_days": 4600
},
"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": "844 followers of quasilyte",
"points": 21,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 844,
"login": "quasilyte"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "169 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 169
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "moderate",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"packages": [
"github.com/quasilyte/gogrep"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 1401
},
"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 1401 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1401
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "1 published versions",
"points": 4,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 1
}
}
],
"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": 62,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"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": ".golangci.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"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": "0 out of 20 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"go",
"golang",
"search",
"syntax",
"ast",
"gogrep"
],
"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": "6 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 6
}
}
],
"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": "weak",
"name": "Security",
"value": 45,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized. High-Risk Jurisdiction Policy applies a 75% multiplier to Security posture and gives it an At Risk ceiling of 34.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "jurisdiction_posture_adjustment",
"params": {
"cap": 34,
"pct": 75
}
}
],
"value": 31,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.1,
"high_risk_jurisdiction_cap": 34,
"high_risk_jurisdiction_multiplier": 75,
"security_posture_after_multiplier": 31,
"security_posture_before_jurisdiction": 41
},
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 20 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 2/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is fuzzed",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "exceptional",
"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 7 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": 7
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 7,
"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": "exceptional",
"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": 7,
"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": "good",
"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": 75,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": true,
"exposures": [
{
"role": "contributor_organization",
"count": 1,
"country": "Russia"
}
],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 5
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "Russia: contributor_organization (1)",
"points": 75,
"status": "partial",
"details": [
{
"code": "jurisdiction_exposure",
"params": {
"role": "contributor_organization",
"count": 1,
"country": "Russia"
}
}
],
"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": 62,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 31,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.577,
"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": "30 of 52 human commits state their intent (structured subject or explanatory body)",
"points": 30.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 30,
"sampled": 52
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"cmd/gogrep/go.mod",
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"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": ".golangci.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"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 52",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 52
}
}
],
"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": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 52341,
"source_files_sampled": 31,
"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/31 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 31,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [
"application"
],
"labels": [
"application"
],
"scores": {
"library": 3,
"application": 5
},
"primary": "application",
"evidence": [
{
"tier": "structure",
"label": "application",
"source": "tree.go_main",
"weight": 5
},
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 3
}
],
"artifacts": [],
"confidence": "low",
"host_extension": false,
"runs_as_process": true,
"consumed_by_code": false
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-08-04T16:55:35.715382Z",
"schema_version": "0.30.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/q/quasilyte/gogrep.svg",
"full_name": "quasilyte/gogrep",
"license_state": "custom",
"license_spdx": null
}