Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"performance"
],
"is_fork": false,
"size_kb": 164,
"has_wiki": true,
"homepage": null,
"languages": {
"C": 8891,
"C++": 24556,
"CMake": 3127,
"Makefile": 1069
},
"pushed_at": "2026-04-11T20:54:59Z",
"created_at": "2019-02-08T14:54:33Z",
"owner_type": "User",
"updated_at": "2026-07-17T14:54:19Z",
"description": "A C/C++ header file for fast 32-bit division remainders (and divisibility tests) on 64-bit hardware.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "C++",
"significant_languages": [
"C++",
"C"
]
},
"owner": {
"blog": "http://lemire.me/en/",
"name": "Daniel Lemire",
"type": "User",
"login": "lemire",
"company": "Université du Québec (TELUQ)",
"location": "Montreal, Quebec, Canada",
"followers": 8160,
"avatar_url": "https://avatars.githubusercontent.com/u/391987?v=4",
"created_at": "2010-09-08T12:54:35Z",
"is_verified": null,
"public_repos": 382,
"account_age_days": 5796
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2024-07-29T19:09:39Z"
}
],
"recent_commits": [
{
"oid": "1ef867ed244e217432181d16481caf4cd1018fb3",
"body": null,
"is_bot": false,
"headline": "Enable FASTMOD_QUICK_TESTS in CI configuration",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-04-11T20:54:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "208d7c8fb42b57a090355f34e5777790a193d2f1",
"body": null,
"is_bot": false,
"headline": "update",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-04-11T19:31:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "18cad0e69b7419c6eb365c7c4c2123466adf5bb1",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T02:11:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6bbbce165178b764c3c487ba3539ea5bdbab948",
"body": null,
"is_bot": false,
"headline": "more fixes",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T02:10:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16aad99440434975ea3f468799af649070207f08",
"body": null,
"is_bot": false,
"headline": "update",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T02:08:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e5f7cf2bcd9617ef7f4f9623cc6003574e550ef",
"body": null,
"is_bot": false,
"headline": "pruing",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T02:01:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba9821dd8c4f569485ea5c46010b954f04d6f610",
"body": null,
"is_bot": false,
"headline": "adding ci",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T02:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e882bf1a138e91574c86163df17637147adf65b0",
"body": null,
"is_bot": false,
"headline": "refresh",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2026-03-31T01:59:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5589d93fa631cdf60e16bfade5bf8653b7c14699",
"body": "64-bit fastdiv & mod for MSVC",
"is_bot": false,
"headline": "Merge pull request #16 from WalterKruger/master",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-11-15T23:06:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb35ec909ba39997b8b4f589a2d364789bdddb3b",
"body": "There was a bunch of superfluous indentation in the multi-word arithmetic functions.",
"is_bot": false,
"headline": "Style: Removed indentation",
"author_name": "Walter",
"author_login": "WalterKruger",
"committed_at": "2024-11-15T22:24:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04a7f6ea005c6594e3689646454e863d3fa8af60",
"body": "Added 64-bit fastdiv & mod support for MSVC via multi-word arithmetic and VS specific intrinsics. This produces almost identical asm output to GCC/Clang's __uint128_t.\n\nI also had to slightly modify the tests to make it compatible for MSVC:\n- Removed `#ifndef _MSC_VER` directives\n- `__uint128_t` => `auto`\n- Literals `-2147483648` & `-0x80000000` => `INT32_MIN` (to prevent overflow)\n- Added VS compatible `doNotOptimizeAway`",
"is_bot": false,
"headline": "64-bit div & mod for MSVC",
"author_name": "Walter",
"author_login": "WalterKruger",
"committed_at": "2024-11-15T22:06:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa0c0a1624fcc9a41e36a693b12fd987cb4feedb",
"body": null,
"is_bot": false,
"headline": "release 0.1.0",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-07-29T19:08:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af268c47da54bc4087cad74e9bf03b8250d77de1",
"body": null,
"is_bot": false,
"headline": "removing drone",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-07-29T19:03:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64d263e566399ad991b651cd4ee8abd31d3e1d7a",
"body": "CMake fixes to make it easier to use fastmod in NixOS",
"is_bot": false,
"headline": "Merge pull request #15 from octurion/cmake-fixes",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-07-29T19:01:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4584bda1802dd1bedf2e0e5b0c5afb379c419da0",
"body": null,
"is_bot": false,
"headline": "CMake fixes",
"author_name": "Alexandros Tasos",
"author_login": "octurion",
"committed_at": "2024-07-28T14:08:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b3ce3c743b233858234da627c659b5b2a6cc9d6",
"body": null,
"is_bot": false,
"headline": "removing unused function",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-07-02T12:01:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a483e21bb80a5bd7e2521494a94786d0b27b58f7",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-02-11T22:52:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b78fecca1b5c0d8eee59b76997eb71751259661c",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-02-11T22:51:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f33f9632798060a8995bdd48944ea1d395124bea",
"body": null,
"is_bot": false,
"headline": "update",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-02-01T00:22:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b2c0624e6d196494307f37e98a41653618a505f",
"body": null,
"is_bot": false,
"headline": "saving.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T23:27:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8072230da4473fc7693879b17e8c7a13674337a5",
"body": null,
"is_bot": false,
"headline": "saving",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T22:47:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "095643b20793643382c289dd69a50dcc6f3844fc",
"body": null,
"is_bot": false,
"headline": "fix",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T22:19:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74063e0ab9b8fce2d2c2ccc6048279c1f595ea8e",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T20:03:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c1bc44e30b0fa70c89982ba6d0beea08ed2e5f8",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T17:36:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f03ff981cb4afa3413af669aeb9db4e5599519a",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T17:34:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f7adc431eb256b3e5af9a94695330ec6f6a8298",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T17:32:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2b418b6fa75cb75128e6734f21cc96e6e5f839d",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T16:06:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e859e77c9fbe910f3467c687c98e9b7990647a73",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T16:03:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b4732e472d75fd2f8553a80bc1c3f398aec2260",
"body": null,
"is_bot": false,
"headline": "saving",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T16:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cef71e5663ed09bbec3df1461c5216422f3d29ee",
"body": null,
"is_bot": false,
"headline": "fix",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:55:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e79b3a422cb4f80dc5aa95cddbd6613ae81be837",
"body": null,
"is_bot": false,
"headline": "vs 32-bit",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:52:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06d7952d182e62516090058f8037938984c63617",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:45:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c63052cab57c355e3ea1c2d4c10dfc5edae65c3",
"body": null,
"is_bot": false,
"headline": "fixing build for vs",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:44:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe06041141ef1e175ad0e41930e7d12398b5a6b7",
"body": null,
"is_bot": false,
"headline": "saving",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:05:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a13f5a37a0d4ef0d25055181aa3ee330f320c9ce",
"body": null,
"is_bot": false,
"headline": "updating to CMake",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T15:04:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4a6f12372367f82604efc6932ac9f52cf757816",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2024-01-31T14:40:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb334d099e81ec4a41d3c8fcd6b7564c902325ea",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2023-09-11T17:21:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "014a35d646aebeec73b4a4b6616d0f15ad6cbb62",
"body": "Fix warning due to integer precision loss.",
"is_bot": false,
"headline": "Merge pull request #10 from MarcelPiNacy/marcel/warnings",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2022-12-12T16:22:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc1b3d8294aecb07ec112ec78e26aa5d2061f954",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Marcel Pi",
"author_login": null,
"committed_at": "2022-12-12T15:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69e10d82e400dab116b1476dac90774756affb58",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Marcel Pi",
"author_login": null,
"committed_at": "2022-12-12T15:35:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70f17b87a254477e44f20394f54b814dc186702f",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2022-05-17T12:59:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a457f6e1410bd3c30c67a40859525e0ef30154d2",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2022-05-17T12:58:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d02f78e8df89ef50e1f8c83364e8e49dc997de40",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2022-05-17T12:58:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82f9506729dff97d36293aafe061babeefa9c41f",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' of github.com:lemire/fastmod",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2020-08-01T21:59:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b029ad3be816ae6654a18f1013508acf996c2bdc",
"body": null,
"is_bot": false,
"headline": "Fix for issue 8",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2020-08-01T21:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de142ce7daa4466d73fbf280731339ac08ffc994",
"body": null,
"is_bot": false,
"headline": "Update fastmod.h",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T22:01:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37041326b23c0bbf8fb54296d1ccd695a90232d8",
"body": "Use inline for C++ instead of unnamed namespace",
"is_bot": false,
"headline": "Merge pull request #7 from jwakely/master",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T17:24:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a37c4ea50891ad0cccfbe925e5c14f3b2d2816e",
"body": "Using an unnamed namespace meant every file that used these functions\ngot a different version of them, which leads to One-Definition Rule\nviolations if called by templates. Marking them inline means every file\ngets the same definition, and the linker discards duplicates at\nlink-time.\n\nThe constexpr \n[…]\nASTMOD_API is defined to constexpr.\n\nA different macro is needed for the constexpr variables in the C++\nfunction templates, so that they aren't marked 'inline' when that's what\nFASTMOD_API expands to.",
"is_bot": false,
"headline": "Use inline for C++ instead of unnamed namespace",
"author_name": "Jonathan Wakely",
"author_login": "jwakely",
"committed_at": "2019-07-31T15:24:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "393280f52c77ec250f83383616eafbbbd66aa2e7",
"body": null,
"is_bot": false,
"headline": "Adding drone logo.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T14:54:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c239a27bf916b78f817bb6b4f6d17295ada47351",
"body": null,
"is_bot": false,
"headline": "Adding drone support",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T14:53:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9926fd1c13ee8a843be1d4bdad7de259857cdf62",
"body": null,
"is_bot": false,
"headline": "Fixing...",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T14:50:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23630d2289fffc3d96e5458e6043d151e4544fab",
"body": null,
"is_bot": false,
"headline": "Adding tests regarding includes.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-31T14:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af6bc69c46e01d1ebce5a30b007377681ca442a3",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-07-05T01:23:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b83f7bccad4b11f5c624a58430f13c54d2076035",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-05-02T13:47:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd7af7e693c99342b0216b02f790ea8abf4b4b04",
"body": null,
"is_bot": false,
"headline": "Removing possibly unnecessary native flag.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-03-14T18:54:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1aa0dfce76143c89a7394a4de61daa725cbb85be",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-20T01:19:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aba804a3ac40d936fbc5614986de6bb58d8dd46a",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-20T01:19:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3765577b421d9f94991c658ba4c8a1ec5d9dbe00",
"body": null,
"is_bot": false,
"headline": "Documenting further the 64-bit functions.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-19T20:52:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52218f82fad3562477620b1eefab2b09d51a491e",
"body": null,
"is_bot": false,
"headline": "Documenting non-support for Visual Studio.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-19T20:28:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7ec9d2d482761e39f1dac1bd023cddab0042342",
"body": "fastmod64",
"is_bot": false,
"headline": "Merge pull request #5 from dnbaker/master",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-19T20:22:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c11c0daa7be2602f7d9895c574ae77135b95d253",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' into master",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-19T20:22:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf989433faa537ef417b8460f0896d5c6b794347",
"body": null,
"is_bot": false,
"headline": "update readme, makefile for benchmarking.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-16T16:43:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f1e08d9d7e9f769f37041d00a3d9f77f1d18fe1",
"body": null,
"is_bot": false,
"headline": "Add benchmark.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-16T16:40:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63104c14316f9a82ac1b6a67ce0b71fcc92a15eb",
"body": null,
"is_bot": false,
"headline": "Add timing benchmarks.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-16T16:38:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f99112a0f5cd6a8179766359735306708fb6bbed",
"body": null,
"is_bot": false,
"headline": "Add fastdiv_u64.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-14T18:50:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7a9ceef9b9a0a1cac6bcb6f779eefb5d63f8d59",
"body": null,
"is_bot": false,
"headline": "constexpr",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-14T18:42:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84dcbdb021e7a513cdff796ad839bf4352bbd517",
"body": null,
"is_bot": false,
"headline": "static constexpr.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-14T18:41:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b10512860120896c53166386e0928e3e29993f48",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-12T19:22:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ef9e3ce40e94ea928ce634188fd153336e54d94",
"body": null,
"is_bot": false,
"headline": "Update unit.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T14:30:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a072769301b02dc865db132b3696a9a640e4f0b1",
"body": null,
"is_bot": false,
"headline": "Update tests for 64-bit integers.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:58:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b09162b242deed05c86e94d963bade914c035aed",
"body": null,
"is_bot": false,
"headline": "Remove unneeded cast.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:49:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4bf2c8d0513d910d3815c3a5b1d4be5824a71185",
"body": null,
"is_bot": false,
"headline": "Remove uint256_t submodule. (Accomplished with 128-bit multiplies.)",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:45:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea582498a6b9819373ff6596bf3e9f9b45335a0b",
"body": null,
"is_bot": false,
"headline": "Remove uint256_t submodule.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:45:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "547c87dab9d6e188df91ae2336a5f57badeff61f",
"body": null,
"is_bot": false,
"headline": "Complete u64 fastmod support, add to unit test.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:43:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69a77bbbb21478fb9ccefbc119f6cc7e7c00ff21",
"body": null,
"is_bot": false,
"headline": "computeM functions for 64-bit.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:21:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35cd543db6f85bc314377ceee351a52b8ddad4e7",
"body": null,
"is_bot": false,
"headline": "overloads for 32-bit integers.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T13:16:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10809dd76d2409ce5581e5e1e95f99eefc3446ef",
"body": null,
"is_bot": false,
"headline": "This is broken. Working on making fastmod64 available.",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T12:15:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0738e93ed835fb8701297c27a29846860bd8b88a",
"body": "…relaxed C++14 constexpr rules.",
"is_bot": false,
"headline": "Mark functions as constexpr so they can be used at compile-time with …",
"author_name": "dnbaker",
"author_login": "dnbaker",
"committed_at": "2019-02-12T11:56:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d094df61719d183aeeace1286d5293da99da0e8d",
"body": null,
"is_bot": false,
"headline": "fix typo",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-10T18:22:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4224893e3783c92de184c9b9c7aa4f814c90ec55",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-10T16:12:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9769632cbd074910ce0661d465d898004d85a591",
"body": "Make the library do C++ things when compiling as C++",
"is_bot": false,
"headline": "Merge pull request #3 from RealKC/feature/cpp",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-10T16:05:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e666816cf3be8c7c260515521656d342e7a36929",
"body": null,
"is_bot": false,
"headline": "better namespacing",
"author_name": "[RealKC]",
"author_login": "RealKC",
"committed_at": "2019-02-09T20:49:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "224e2e4f4437c4b043e90e885cc9e945323041a4",
"body": null,
"is_bot": false,
"headline": "Add C++ namespacing if compiling as C++",
"author_name": "[RealKC]",
"author_login": "RealKC",
"committed_at": "2019-02-09T20:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ff117f5a9e89ad0c7a2692e1174fda023ef6ac9",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-09T14:23:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5703783c099127a9675549bea243d8f09f930428",
"body": null,
"is_bot": false,
"headline": "Now with support for Visual Studio.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-09T14:22:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1d2318f82dd5a4ce9dcea7b94470adce2f10935",
"body": null,
"is_bot": false,
"headline": "Needs to be retested with visual studio.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-09T13:55:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc60d6e842934b4818ba9c395a0937cb4fde3269",
"body": "Added MSVC support",
"is_bot": false,
"headline": "Merge pull request #2 from Niadb/patch-1",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-09T13:25:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c863600b8b51cb8084ffb543004edc926570bad1",
"body": null,
"is_bot": false,
"headline": "Adding travis file.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-09T13:23:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a53a64686d2cdb742b8902a483ee66baaa810817",
"body": " I've added MSVC support, it depends on the intrinsic __umulh\r\n\r\nAlso fixed various warnings caused by implicit conversions.",
"is_bot": false,
"headline": "Added MSVC support",
"author_name": "Niadb",
"author_login": "Niadb",
"committed_at": "2019-02-09T10:25:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f1b7e3eaa308a25a928eb7109a1fe4519a08938",
"body": null,
"is_bot": false,
"headline": "Cleaning.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-08T16:01:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "978bbb58c7428bf47e4d17264045c49b6d405035",
"body": null,
"is_bot": false,
"headline": "Preparing.",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-08T15:07:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bddf17aa5f9a2f49f9bd6a45a6b76358d2ee21d",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Daniel Lemire",
"author_login": "lemire",
"committed_at": "2019-02-08T14:54:33Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 8,
"latest_release_at": "2024-07-29T19:09:39Z",
"latest_release_tag": "v0.1.0",
"releases_from_tags": false,
"days_since_last_push": 102,
"active_weeks_last_year": 2,
"days_since_latest_release": 723,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 30,
"stars": 350,
"watchers": 13,
"fork_history": {
"days": [
{
"date": "2019-02-08",
"count": 1
},
{
"date": "2019-02-09",
"count": 2
},
{
"date": "2019-02-12",
"count": 1
},
{
"date": "2019-06-04",
"count": 1
},
{
"date": "2019-06-13",
"count": 1
},
{
"date": "2019-06-28",
"count": 1
},
{
"date": "2019-07-31",
"count": 1
},
{
"date": "2020-09-17",
"count": 1
},
{
"date": "2021-08-23",
"count": 1
},
{
"date": "2022-01-28",
"count": 1
},
{
"date": "2022-02-17",
"count": 1
},
{
"date": "2022-05-29",
"count": 1
},
{
"date": "2022-09-06",
"count": 1
},
{
"date": "2022-09-11",
"count": 1
},
{
"date": "2022-09-23",
"count": 1
},
{
"date": "2023-01-16",
"count": 1
},
{
"date": "2023-04-05",
"count": 1
},
{
"date": "2023-09-07",
"count": 1
},
{
"date": "2023-09-23",
"count": 1
},
{
"date": "2024-01-31",
"count": 1
},
{
"date": "2024-03-08",
"count": 1
},
{
"date": "2024-04-13",
"count": 1
},
{
"date": "2024-07-28",
"count": 1
},
{
"date": "2024-10-14",
"count": 1
},
{
"date": "2024-11-04",
"count": 1
},
{
"date": "2024-11-15",
"count": 1
},
{
"date": "2024-11-16",
"count": 1
},
{
"date": "2025-12-14",
"count": 1
}
],
"complete": true,
"collected": 29,
"total_forks": 30
},
"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": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 10851,
"source_files_sampled": 6,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [],
"advisories": {
"error": "No resolved dependencies to assess",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [],
"collected": true,
"truncated": false,
"total_count": 0,
"direct_count": 0,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 6,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 10,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "lemire",
"commits": 67,
"avatar_url": "https://avatars.githubusercontent.com/u/391987?v=4"
},
{
"type": "User",
"login": "dnbaker",
"commits": 16,
"avatar_url": "https://avatars.githubusercontent.com/u/6412885?v=4"
},
{
"type": "User",
"login": "WalterKruger",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/90877047?v=4"
},
{
"type": "User",
"login": "RealKC",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/16511305?v=4"
},
{
"type": "User",
"login": "octurion",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/6114420?v=4"
},
{
"type": "User",
"login": "jwakely",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1254480?v=4"
},
{
"type": "User",
"login": "Niadb",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/34917535?v=4"
}
],
"contributors_sampled": 7,
"top_contributor_share": 0.744
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 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 2 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/27 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 12 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": 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": "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": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"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": "1ef867ed244e217432181d16481caf4cd1018fb3",
"ran_at": "2026-07-23T05:39:58Z",
"aggregate_score": 3.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-04-11T21:20:14Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2024-11-15T23:06:48Z",
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/lemire/fastmod",
"host": "github.com",
"name": "fastmod",
"owner": "lemire"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"security": 38,
"vitality": 31,
"community": 55,
"governance": 63,
"engineering": 63
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "at_risk",
"name": "Vitality",
"value": 31,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"commits_last_year": 8,
"human_commit_share": 1,
"days_since_last_push": 102,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 102 days ago",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 102
}
}
],
"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": "8 commits in the last year",
"points": 8.6,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 8
}
}
],
"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": "at_risk",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 47,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v0.1.0",
"releases_from_tags": false,
"days_since_latest_release": 723,
"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 723 days ago",
"points": 7.2,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 723
}
}
],
"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": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"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": 102,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 102 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 102
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 55,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"forks": 30,
"stars": 350,
"watchers": 13,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "350 stars",
"points": 41.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 350
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "30 forks",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 30
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "13 watchers",
"points": 6,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 13
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 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": 63,
"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": 7,
"top_contributor_share": 0.744
},
"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 74% of commits",
"points": 5.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 74
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "7 contributors",
"points": 9.5,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 7
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 12 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"merged_prs": 6,
"open_issues": 0,
"closed_issues": 10,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "6/6 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 6,
"decided": 6
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/27 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": 75,
"inputs": {
"followers": 8160,
"owner_type": "User",
"is_verified": null,
"owner_login": "lemire",
"public_repos": 382,
"account_age_days": 5796
},
"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": "8,160 followers of lemire",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 8160,
"login": "lemire"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "382 public repos, account ~15 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 382
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 63,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 2 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"topics": [
"performance"
],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"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": 25,
"status": "met",
"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": "1 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 1
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 38,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 38,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.8
},
"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 2 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/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 12 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 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": "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": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"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": "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": 5
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 44,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 6,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.12,
"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": "11 of 92 human commits state their intent (structured subject or explanatory body)",
"points": 6.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 11,
"sampled": 92
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "C++ (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C++"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 92",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 92
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "C++",
"largest_source_bytes": 10851,
"source_files_sampled": 6,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C++ (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C++"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/6 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 6,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-23T05:40:07.123793Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/l/lemire/fastmod.svg",
"full_name": "lemire/fastmod",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}