JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 289,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 158328
},
"pushed_at": "2026-07-22T10:50:33Z",
"created_at": "2026-01-21T16:05:40Z",
"owner_type": "Organization",
"updated_at": "2026-07-20T12:07:29Z",
"description": "Interface to libxml2, with DOM interface",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://kivra.com",
"name": "Kivra",
"type": "Organization",
"login": "kivra",
"company": null,
"location": "Stockholm, Sweden",
"followers": 33,
"avatar_url": "https://avatars.githubusercontent.com/u/1324180?v=4",
"created_at": "2012-01-12T08:54:45Z",
"is_verified": null,
"public_repos": 63,
"account_age_days": 5311
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-01-21T16:35:13Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2026-01-21T16:19:03Z"
}
],
"recent_commits": [
{
"oid": "5183a2e693327e01a131e5be7e375242bd8d45cc",
"body": "…(#2)\n\nlibxml2 headers changed the spelling of xmlParseInNodeContext's last\nparameter from `xmlNodePtr *` (2.9 to 2.14) to `xmlNode **` (2.15+).\nBoth spell the same C type, but cgo derives distinct Go types from the\nspelling, so any direct Go call compiles against exactly one header\ngeneration. A st\n[…]\nompiles\nagainst every libxml2 version and gives the Go side a stable signature.\n\nVerified against libxml2 2.9.14 and 2.15.3 under go1.26.1 and\ngo1.26.5: builds and tests pass in all four combinations.",
"is_bot": false,
"headline": "fix: call xmlParseInNodeContext through a signature-stable C wrapper …",
"author_name": "Patrik Sjöfors",
"author_login": "k-patrik",
"committed_at": "2026-07-20T12:06:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ead3ad0a41bcd80c1404e67a0ca8ca60a55cf994",
"body": "* use unsafe.Pointer instead of uintptr\n* fix a deprecation warning that libxml2-2.15.0 issues when building",
"is_bot": false,
"headline": "fix uintptr usage in structs",
"author_name": "Finnur Torfason",
"author_login": "fstorfa-kivra",
"committed_at": "2026-01-21T16:33:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c934e3fcb9d356b6842830761f72b4802d40c60a",
"body": null,
"is_bot": false,
"headline": "Update README.md (#107)",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2024-09-05T10:00:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a75c203ac627cc06a0856bdd94a17ed3d2af84b8",
"body": null,
"is_bot": false,
"headline": "Fix crash when printing Namespaces (#99)",
"author_name": "hellodword",
"author_login": "hellodword",
"committed_at": "2024-05-21T00:43:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "376cf9e6c6de05f06dd795c5089486b55c1993db",
"body": null,
"is_bot": false,
"headline": "Run on pushes to master",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2024-05-21T00:39:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0c43c1afd51d833f6214aff51a5ed7fbb905ea2",
"body": null,
"is_bot": false,
"headline": "Update Arch libxml2 version",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2024-05-21T00:36:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b65cd51053703d2b0eb6992c8a815430474578ed",
"body": null,
"is_bot": false,
"headline": "Fix invalid Pointer convertion (#97)",
"author_name": "Bulat Khasanov",
"author_login": "khasanovbi",
"committed_at": "2024-05-02T11:27:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52975fd1a01c6436b08f2f1e9de0e5b3ae870bc2",
"body": "* Tweak workflow\r\n\r\n* Run gofmt -w -s",
"is_bot": false,
"headline": "Fix lint (#96)",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2024-03-28T00:55:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5fabe2cfc7d7b9287793962abc098a37a012e1d",
"body": "* Statically link to libxml2 when `static_build` tag is defined\r\n\r\nThere's an unofficial convention in the Go ecosystem that the\r\n`static_build` tag indicates a desire to link statically to external\r\nlibraries detected with pkg-config - examples include:\r\n\r\n* [LXC](https://github.com/lxc/go-lxc/blob\n[…]\ntion CI test for Ubuntu\r\n\r\n* Simplify goflags\r\n\r\n* Update ci.yml\r\n\r\nSee if removing this key works\r\n\r\n* Update ci.yml\r\n\r\n---------\r\n\r\nCo-authored-by: lestrrat <49281+lestrrat@users.noreply.github.com>",
"is_bot": false,
"headline": "Statically link to libxml2 when `static_build` tag is defined (#95)",
"author_name": "Chris Novakovic",
"author_login": "chrisnovakovic",
"committed_at": "2024-03-28T00:45:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "99c71026c2f5bae086f0be939c8141580e907009",
"body": "* Add archlinux CI\r\n\r\nCopied from #91\r\n\r\n* See if this allows me to install a specific version\r\n\r\n* fix version\r\n\r\n* Apply casting to do away the const explicitly",
"is_bot": false,
"headline": "Add archlinux CI + Silence compilation warnings on new libxml2 (#93)",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2023-11-24T11:44:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93e5e3de452a4bcbc4a3d16dd159e840412d29d0",
"body": "* Modernize setup\r\n\r\n* fix version\r\n\r\n* appease linter\r\n\r\n* Add .golangci.yml\r\n\r\n* silence go vet for now, as we intentionally misuse unsafe.Pointer\r\n\r\n* remove remnants of jwx",
"is_bot": false,
"headline": "Modernize (#92)",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2023-11-24T05:45:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c64e12f1f9671d17d35b14774f5bcb3d11fc58a3",
"body": "Add stdlib.h clib.go",
"is_bot": false,
"headline": "Merge pull request #89 from zapisanchez/master",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2023-11-23T11:25:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a7f8cc2f67962543486aca70aba869aec07757d",
"body": null,
"is_bot": false,
"headline": "Add stdlib.h inlcude",
"author_name": "zapisanchez",
"author_login": "zapisanchez",
"committed_at": "2023-11-23T11:20:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6d9de61b80d0c4c527d9a014dfdf9744d706232",
"body": "allow ways to specify path/uri when parsing XSD",
"is_bot": false,
"headline": "Merge pull request #69 from lestrrat-go/topic/with-uri",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2020-11-23T22:48:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4681c5b37077d3c002e226412862cfc85b135ae9",
"body": null,
"is_bot": false,
"headline": "First pass at solving #67",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-09-15T03:55:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3651736b41117903510dbac7cd2b6876e33b9f10",
"body": null,
"is_bot": false,
"headline": "adding test data for https://github.com/lestrrat-go/libxml2/issues/67",
"author_name": "brent s",
"author_login": "johnnybubonic",
"committed_at": "2020-09-11T04:22:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a52d2c78ffc67715f85e5fcc1743b8cb13d5cfff",
"body": "Add options for schema validation",
"is_bot": false,
"headline": "Merge pull request #66 from lestrrat-go/topic/gh-issue-65",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2020-08-28T01:44:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e5b1849e6ddf3606dd9e0dc3bd9a91445229ecd",
"body": null,
"is_bot": false,
"headline": "Update go version",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-08-27T06:13:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8de884223ba84d4df88ce324ab6de287aa567776",
"body": null,
"is_bot": false,
"headline": "Add options for schema validation",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-08-27T06:07:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6483566f52cb4d4c3b743c083bf6e22118112510",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2020-02-15T08:05:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7458dd9fc73540ec339f7e332bff91dc534ead9",
"body": null,
"is_bot": false,
"headline": "reword",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-02-15T08:03:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "308605e3ba610ef2d346bba84df97dd56a95f861",
"body": null,
"is_bot": false,
"headline": "fix markdown",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-02-15T07:52:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c3e5a49d6e090d87f71c40061bca6b84ddab831",
"body": null,
"is_bot": false,
"headline": "Update README",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2020-02-15T07:52:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ad9bf187c39812bd6083ccc1261a713f41e0c17",
"body": "Introduce proper freeing for the buffer",
"is_bot": false,
"headline": "Merge pull request #61 from lestrrat-go/topic/gh-issue-60",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2019-10-08T00:12:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a97695c4eeb87d308007eeb7e137d763cd6b17d9",
"body": null,
"is_bot": false,
"headline": "Introduce proper freeing for the buffer",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2019-10-08T00:03:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29268979b41be220303b6dfed4349b872479d456",
"body": null,
"is_bot": false,
"headline": "add a free",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2019-09-27T00:22:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "faf2a4a99869b0a73a6ce5354643ee091b8dccef",
"body": null,
"is_bot": false,
"headline": "tweak error message",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2019-07-24T00:39:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f24a389bbd76bf20b2139896da78cba180802939",
"body": "Capture parser errors using xmlCtxtGetLastError",
"is_bot": false,
"headline": "Merge pull request #53 from the4thamigo-uk/parser-errors",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2018-08-10T11:06:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d8e61f8e29695ba8b368f16b3f6725156bbfd2a",
"body": "Note that we do not need to free the xmlError struct, because no copy is made when returning. See :\n\nhttps://github.com/GNOME/libxml2/blob/35e83488505d501864826125cfe6a7950d6cba78/error.c#L924\n\nfixes #52",
"is_bot": false,
"headline": "Capture parser errors using xmlCtxtGetLastError",
"author_name": "Andrew Smith",
"author_login": "andy-miracl",
"committed_at": "2018-08-10T10:48:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7de98d6da3b8f461273a5278f5238bd46fd79aa3",
"body": null,
"is_bot": false,
"headline": "Update .travis.yml",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-21T00:49:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c95ea0cae5e4f0ca1d5c22e0f98a6ec455a8e8f",
"body": null,
"is_bot": false,
"headline": "Update import paths",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-21T00:49:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b69a64414741ff2324843a0a31cb600f1de137b5",
"body": "add functionality to parse a schema from a file pointer",
"is_bot": false,
"headline": "Merge pull request #49 from wouterz/parse-from-url-ptr",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2018-02-21T00:45:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b451475b5bab0c494e0d37724dc8d3a337766c50",
"body": null,
"is_bot": false,
"headline": "add functionality to parse from a file",
"author_name": "Wouter Zirkzee",
"author_login": null,
"committed_at": "2018-02-19T13:15:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0399dd78d1c12caa29a6ce94b0f4d22540da59b1",
"body": "Fix #43",
"is_bot": false,
"headline": "Merge pull request #47 from lestrrat/topic/issue-43",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2018-02-08T09:32:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6f1ccecaa4f1fb267c8ad14b414b9610f252cea",
"body": null,
"is_bot": false,
"headline": "Apply patch from @bergner",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-08T09:18:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42579a15be2d7b55975bca7e41ab94f4306c5db6",
"body": null,
"is_bot": false,
"headline": "Add tests",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-08T09:15:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e533885b5c59d7ef501bd3365e1be56ebefe3310",
"body": "Gutweiler fix memleak",
"is_bot": false,
"headline": "Merge pull request #46 from lestrrat/gutweiler-fix-memleak",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2018-02-08T07:48:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14836f23f353b0a72769f50b24a94b5a3636b5f2",
"body": null,
"is_bot": false,
"headline": "fix %%d",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-08T07:41:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d749e8a14c94231eaf800f00e09aec42495a5bd8",
"body": null,
"is_bot": false,
"headline": "avoid recursion",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-08T02:15:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea73f7bcaa8d4abfa3b0a8714c2516ffae91806d",
"body": null,
"is_bot": false,
"headline": "Rename Fatal to Fatalf",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2018-02-08T02:01:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07e93c4d01b7287c0e0ef9927fdf70eb287d99e9",
"body": null,
"is_bot": false,
"headline": "Fix memory leak in Document.Dump and Node.NodeValue",
"author_name": "Clemens Gutweiler",
"author_login": "gutweiler",
"committed_at": "2018-02-07T08:16:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c598c64c1f7c110cd903567461d31b4f03e1bc2f",
"body": "README.md: fix XSD validation sample",
"is_bot": false,
"headline": "Merge pull request #39 from matiasinsaurralde/master",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-10-15T22:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9031183bb8b8922431a9c198b21d0e3a911bf569",
"body": "Don't show go:generate comment in documentation",
"is_bot": false,
"headline": "Merge pull request #38 from SamWhited/patch-1",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-10-15T22:30:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3cf0ccfc6aaff8cf06809168be9af4a5bd52969",
"body": null,
"is_bot": false,
"headline": "README.md: fix XSD validation sample",
"author_name": "Matias Insaurralde",
"author_login": "matiasinsaurralde",
"committed_at": "2017-08-30T11:54:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59ae28ae4f87de14a84e9de16935960c8fe16a9e",
"body": null,
"is_bot": false,
"headline": "Don't show go:generate comment in documentation",
"author_name": "Sam Whited",
"author_login": "SamWhited",
"committed_at": "2017-08-15T23:16:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f1917a02dc85692063b9b7e58a8f984a082e059",
"body": "Proxy ErrAttributeNotFound from clib for consumers to test against",
"is_bot": false,
"headline": "Merge pull request #37 from Fiveside/clib-error-proxy",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-08-15T02:10:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9764d75fb610c024b7c9a9caa49333cccd89fbfe",
"body": "…st the error",
"is_bot": false,
"headline": "Proxy ErrAttributeNotFound from clib to allow consumers to test again…",
"author_name": "Erich Healy",
"author_login": "Fiveside",
"committed_at": "2017-08-14T21:40:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d65fd000267ff2f4d1ecaa92ab199c2334475952",
"body": "Fix typo in parser.NewCtxt error message",
"is_bot": false,
"headline": "Merge pull request #32 from emou/emou-patch-1",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-05-12T23:27:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7299ff95856d61cd69cd72e55133ad0ccb66ea2",
"body": null,
"is_bot": false,
"headline": "Fix typo in parser.NewCtxt error message",
"author_name": "Emil Stanchev",
"author_login": "emou",
"committed_at": "2017-03-17T17:33:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5b79fe508fe624412438ca86d4eaf0009d60edc",
"body": "Auto-generate dom/node_wrap.go",
"is_bot": false,
"headline": "Merge pull request #31 from lestrrat/topic/auto-generate",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-03-16T01:41:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9395e659e039380afcf04613c5215903b7cd201f",
"body": "If you need to add more types to wrap, modify\ninternal/cmd/genwrapnode/genwrapnode.go, and subsequently run\n`go generate`. Do not forget to commit the modified file",
"is_bot": false,
"headline": "Auto-generate dom/node_wrap.go",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2017-03-16T01:37:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c86011bf19151f0d7ccedd9c8ef251d3043274dc",
"body": "added support for wrapping processing information nodes to dom.WrapNode",
"is_bot": false,
"headline": "Merge pull request #30 from shahan312/master",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-03-16T01:08:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e02b0718674a1236327accff2321f61c4e8334e2",
"body": null,
"is_bot": false,
"headline": "added support for wrapping processing information nodes to dom.WrapNode",
"author_name": "Shahan Khan",
"author_login": "bigshahan",
"committed_at": "2017-03-16T01:04:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d873dafba0a2133dc623c9c92bf980c8f4be9d9",
"body": "added support for wrapping comment nodes to dom.WrapNode",
"is_bot": false,
"headline": "Merge pull request #29 from shahan312/master",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2017-02-21T23:58:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86a91661231ef0058d35a1952b1b2cbdbb737ab0",
"body": null,
"is_bot": false,
"headline": "added support for wrapping comment nodes to dom.WrapNode",
"author_name": "Shahan Khan",
"author_login": "bigshahan",
"committed_at": "2017-02-21T23:16:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63ad6869b611e04d9ec167d64611a03dac5e9cdf",
"body": "Switch to xmlCtxtReadMemory",
"is_bot": false,
"headline": "Merge pull request #26 from Fiveside/parser-recover",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-12-16T21:23:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77f71a90e4975873a7d2446ed3daeadf9fe250e1",
"body": null,
"is_bot": false,
"headline": "Fix an issue where XMLParseRecover was ignored",
"author_name": "Erich Healy",
"author_login": null,
"committed_at": "2016-12-16T17:17:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9c558f92be517671b140f166e7fcc59a09c947e",
"body": null,
"is_bot": false,
"headline": "Fix an issue where options would not combine",
"author_name": "Erich Healy",
"author_login": null,
"committed_at": "2016-12-16T17:16:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13b66ba2d8c14e0eb14d5cfc85be101ea86298cd",
"body": null,
"is_bot": false,
"headline": "Fixes #24",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2016-10-18T21:39:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f6b19593b293d5e0ad2e0dddffdcb68ca7cbaad",
"body": "Fixes indentation flag isn't used",
"is_bot": false,
"headline": "Merge pull request #21 from dobegor/patch-1",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-08-09T08:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b265642b2dd55dd9a4e04692b4a102157eab3b5",
"body": null,
"is_bot": false,
"headline": "Fixes indentation flag isn't used",
"author_name": "George Dobrovolsky",
"author_login": "dobegor",
"committed_at": "2016-08-09T08:48:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29a7f58d96509c74e2837259e4b95bd8ff742a53",
"body": "Implement RemoveChild",
"is_bot": false,
"headline": "Merge pull request #19 from lestrrat/topic/issue-11",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-06-26T12:01:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b1813c4813b74fdaf487df88f05069d5f977f2f",
"body": "fixes #11",
"is_bot": false,
"headline": "Implement RemoveChild",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2016-06-26T11:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1322d7c66132769331e0fdb623acc64f0591b6d1",
"body": null,
"is_bot": false,
"headline": "Update go version",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2016-06-25T09:16:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85bd2d97f482bafcdceb6aab4c879d835e9167ad",
"body": "Yikes, this is bad.",
"is_bot": false,
"headline": "Merge pull request #18 from lestrrat/topic/issue-16",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-06-25T09:15:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "552e857950d82b9dfe3832c5e6f8ba59d93816e3",
"body": "fixes #16.\nApologies for not noticing this issue earlier",
"is_bot": false,
"headline": "Yikes, this is bad.",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2016-06-25T09:11:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef0f36877d0ad75188986c823fdecc9edee434eb",
"body": null,
"is_bot": false,
"headline": "Use github.com/pkg/errors",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2016-05-11T06:08:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21fbfb77e5f2941f8a8347343c1b88e3a50d60e2",
"body": "fix *XMLNode.NextSibling() when there is no next sibling",
"is_bot": false,
"headline": "Merge pull request #14 from galdor/master",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-04-21T00:31:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "722346e37d42335232e2187fb3d7b133550d77a4",
"body": null,
"is_bot": false,
"headline": "fix *XMLNode.NextSibling() when there is no next sibling",
"author_name": "Nicolas Martyanoff",
"author_login": "galdor",
"committed_at": "2016-04-20T18:29:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4587fffe35d1b27b6a18e6f704b65b868b7f3a8",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2016-01-05T00:38:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "121fcfff548636618b8f846be2f3366039f6f926",
"body": "Handle CDATA properly in WrapNode()",
"is_bot": false,
"headline": "Merge pull request #9 from lestrrat/issues/7",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2015-12-30T11:16:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40611ff615253eed7bf1fecbc9133907e23706e1",
"body": null,
"is_bot": false,
"headline": "Fix CDATA handling in Literal",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-29T07:46:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76c2efdf6a64352501c1d9e33206cae146e5252d",
"body": "Update example code",
"is_bot": false,
"headline": "Merge pull request #8 from syohex/update-example",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2015-12-27T10:51:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f660e0fece64b1bcde57f0336c0f230aa9ce0083",
"body": "Result of doc.DocumentElement() cannot be used as argument of\nxpath.NewContext because it returns two, a result and an error.",
"is_bot": false,
"headline": "Update example code",
"author_name": "Syohei YOSHIDA",
"author_login": "syohex",
"committed_at": "2015-12-27T05:23:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9934099e727241f39da286beb849bac0596864e",
"body": null,
"is_bot": false,
"headline": "Add test for #7",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-26T09:34:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd2314bd5527745df3df15b18e8cf153512441c1",
"body": "Correct typo of example test",
"is_bot": false,
"headline": "Merge pull request #5 from syohex/typo",
"author_name": "lestrrat",
"author_login": "lestrrat",
"committed_at": "2015-12-17T14:57:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b0f7fdd8b5204d5dacb88eae5814b37addf2074",
"body": null,
"is_bot": false,
"headline": "Correct typo",
"author_name": "Syohei YOSHIDA",
"author_login": "syohex",
"committed_at": "2015-12-16T09:14:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b0048b238c873cd7679b0675ae0e96065913cb8",
"body": null,
"is_bot": false,
"headline": "appease godoc.org",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-14T00:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2230c16c5d2e96ba88965099e1c3b71422630129",
"body": null,
"is_bot": false,
"headline": "Docs and tweaks",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-14T00:56:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53429c3df2ee361059c5484beab123f4b32ae540",
"body": null,
"is_bot": false,
"headline": "Got to set this flag",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-13T11:26:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22b3ff2e2c5aff7056438bfeb8d3e2bd7a5c9012",
"body": null,
"is_bot": false,
"headline": "slight speedup",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-11T02:45:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3730703c991c586032a066c45513a17d44b695e9",
"body": null,
"is_bot": false,
"headline": "Avoid extra allocation",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-11T02:42:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6f8e35d55d4fd0c715b00e9c25b8e2834d4270f",
"body": null,
"is_bot": false,
"headline": "Document's can be recycled with sync.Pool",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-09T09:14:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a8e1eb0a5634b16a293169457f9e2a2d3d89b04",
"body": null,
"is_bot": false,
"headline": "avoid pointers",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-09T07:56:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3d72302f4afe8fbb9c79d9fc6dd9650eafc7919",
"body": null,
"is_bot": false,
"headline": "enclose debug statements",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-08T10:42:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bb2267995a54813a9b7a38210dfe069c6a8bc79",
"body": "…gh XPath results",
"is_bot": false,
"headline": "Update benchmarks, create types.NodeIter type so we can iterate throu…",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-06T11:23:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c2dc337950448327be1b4d5952cf0b37114125b",
"body": null,
"is_bot": false,
"headline": "argh, forgot",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T05:44:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd6f49f45f715c2bc32eae0e7a0a25ba12078245",
"body": null,
"is_bot": false,
"headline": "golint",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T05:42:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c7c480d9bbd874f3f01c8aaf1ae99fad48d4c87",
"body": null,
"is_bot": false,
"headline": "more checks",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T05:41:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "304cd6df903c50e3f1ae8afcb88c30177b2d1421",
"body": null,
"is_bot": false,
"headline": "Move c stuff into clib",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T05:18:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79f831394cf3028c37a5edbab266ee26420d15ed",
"body": null,
"is_bot": false,
"headline": "More interfaces",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T04:48:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "087d62704e38c83ec936da81d1d68b6b13ec7591",
"body": null,
"is_bot": false,
"headline": "fix README",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T04:39:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f4df27c3f1491f8f07dfefccdb8d7eb66b61773",
"body": null,
"is_bot": false,
"headline": "more interfaces",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T04:36:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b370f8113d71cf91d544a308cd561478ea30455",
"body": null,
"is_bot": false,
"headline": "NUL terminate it",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:58:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f36b41173471cb592bfc133dc6e16154852b5b62",
"body": null,
"is_bot": false,
"headline": "ugh",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:57:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e15ef0705fb30e75751d9f2c49ff21e77eebfdf0",
"body": null,
"is_bot": false,
"headline": "Argh, namespace...",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:56:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e57328921de1626855fa30428aecb1bbf53634b",
"body": null,
"is_bot": false,
"headline": "Use SliceHeader to iterate through pointers",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:55:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4da6f5451919cf5f8bee08cc11a495c3f7b8d733",
"body": null,
"is_bot": false,
"headline": "supress errors",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:53:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fcd6f376eb378f1d489331c76425786f637ddc96",
"body": null,
"is_bot": false,
"headline": "some environments complain about not having c99",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:32:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94b87297695e030e56bc81ce9a7884c0b1e6247b",
"body": null,
"is_bot": false,
"headline": "Optimize",
"author_name": "Daisuke Maki",
"author_login": "lestrrat",
"committed_at": "2015-12-03T03:30:19Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 2,
"latest_release_at": "2026-01-21T16:35:13Z",
"latest_release_tag": "v1.1.0",
"releases_from_tags": false,
"days_since_last_push": 6,
"active_weeks_last_year": 2,
"days_since_latest_release": 188,
"mean_days_between_releases": 0
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/kivra/libxml2",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/kivra/libxml2",
"is_deprecated": false,
"latest_version": "v1.1.1",
"repository_url": "https://github.com/kivra/libxml2",
"versions_count": 3,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-20T12:06:12Z",
"latest_version_yanked": null,
"days_since_latest_publish": 8
}
]
},
"popularity": {
"forks": 0,
"stars": 1,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"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": 50790,
"source_files_sampled": 44,
"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": 8,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/pkg/errors",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.9.1"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.8.4"
},
{
"name": "gopkg.in/xmlpath.v1",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.0.0-20140413065638-a146725ea6e7"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/pkg/errors",
"direct": true,
"version": "v0.9.1",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "v1.8.4",
"ecosystem": "go"
},
{
"name": "gopkg.in/xmlpath.v1",
"direct": true,
"version": "v1.0.0-20140413065638-a146725ea6e7",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "v1.1.1",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "v1.0.0",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "v3.0.1",
"ecosystem": "go"
},
{
"name": "launchpad.net/gocheck",
"direct": false,
"version": "v0.0.0-20140225173054-000000000087",
"ecosystem": "go"
},
{
"name": "launchpad.net/xmlpath",
"direct": false,
"version": "v0.0.0-20130614043138-000000000004",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 8,
"direct_count": 3,
"indirect_count": 5
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 1,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "lestrrat",
"commits": 240,
"avatar_url": "https://avatars.githubusercontent.com/u/49281?v=4"
},
{
"type": "User",
"login": "syohex",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/554281?v=4"
},
{
"type": "User",
"login": "bigshahan",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/364781?v=4"
},
{
"type": "User",
"login": "andy-miracl",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/19795429?v=4"
},
{
"type": "User",
"login": "khasanovbi",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/8990821?v=4"
},
{
"type": "User",
"login": "chrisnovakovic",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2261519?v=4"
},
{
"type": "User",
"login": "gutweiler",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/3440495?v=4"
},
{
"type": "User",
"login": "emou",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/48381?v=4"
},
{
"type": "User",
"login": "Fiveside",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1858172?v=4"
},
{
"type": "User",
"login": "fstorfa-kivra",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/70634766?v=4"
}
],
"contributors_sampled": 19,
"top_contributor_share": 0.92
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"assign-issue.yml",
"assign-pr.yml",
"ci.yml",
"codeql.yml",
"lint.yml",
"stale.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": 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": 0,
"reason": "0 out of 1 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 1/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 3 contributing companies or organizations -- score normalized to 10",
"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": 10,
"reason": "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": 0,
"reason": "1 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": 7,
"reason": "SAST tool detected but not run on all commits",
"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": "5183a2e693327e01a131e5be7e375242bd8d45cc",
"ran_at": "2026-07-29T04:59:36Z",
"aggregate_score": 4.4,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": true,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-20T12:06:14Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-20T12:06:12Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/kivra/libxml2",
"host": "github.com",
"name": "libxml2",
"owner": "kivra"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"security": 55,
"vitality": 56,
"community": 12,
"governance": 54,
"engineering": 42
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 56,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 42,
"inputs": {
"commits_last_year": 2,
"human_commit_share": 1,
"days_since_last_push": 6,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 6
}
}
],
"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": "2 commits in the last year",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 2
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "1 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": "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": 78,
"inputs": {
"releases_count": 2,
"latest_release_tag": "v1.1.0",
"releases_from_tags": false,
"days_since_latest_release": 188,
"mean_days_between_releases": 0
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 188 days ago",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 188
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0
}
}
],
"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": 8,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 8 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 8
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 12,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 1,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 1
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"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": 0,
"status": "missed",
"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": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 19,
"top_contributor_share": 0.92
},
"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 92% of commits",
"points": 1.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 92
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "19 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 19
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"merged_prs": 1,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "1/2 decided PRs merged",
"points": 19.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 1,
"decided": 2
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"followers": 33,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "kivra",
"public_repos": 63,
"account_age_days": 5311
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "33 followers of kivra",
"points": 11,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 33,
"login": "kivra"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "63 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 63
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/kivra/libxml2"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 8
},
"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 8 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 8
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "3 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 3
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 42,
"weight": 0.2,
"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": "6 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 6
}
}
],
"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 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "critical",
"name": "Documentation",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": false,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"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": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 55,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 44,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.4
},
"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": "0 out of 1 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 1/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": "update tool detected",
"points": 7.5,
"status": "met",
"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": "1 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 detected but not run on all commits",
"points": 3.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 8 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": 8
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 8,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 8,
"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": 8
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 59,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.38,
"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": "38 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 20.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 38,
"sampled": 100
}
}
],
"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": [],
"has_devcontainer": false,
"has_linter_config": true,
"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": ".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 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "dependency automation configured, none observed in the sampled commits",
"points": 5,
"status": "partial",
"details": [
{
"code": "dependency_bot_config_only",
"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": 50790,
"source_files_sampled": 44,
"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/44 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 44,
"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",
"Community profile unavailable"
],
"report_type": "repository",
"generated_at": "2026-07-29T04:59:49.607651Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/k/kivra/libxml2.svg",
"full_name": "kivra/libxml2",
"license_state": "standard",
"license_spdx": "MIT"
}