Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 506,
"has_wiki": false,
"homepage": null,
"languages": {
"C": 400770,
"Nim": 193818,
"Shell": 3127
},
"pushed_at": "2026-07-21T10:07:34Z",
"created_at": "2019-09-30T18:02:32Z",
"owner_type": "Organization",
"updated_at": "2026-07-21T10:03:41Z",
"description": "BearSSL wrapper in Nim",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "master",
"license_spdx_raw": "NOASSERTION",
"primary_language": "C",
"significant_languages": [
"C",
"Nim"
]
},
"owner": {
"blog": "https://status.app",
"name": "Status",
"type": "Organization",
"login": "status-im",
"company": null,
"location": "Zug, Switzerland",
"followers": 998,
"avatar_url": "https://avatars.githubusercontent.com/u/11767950?v=4",
"created_at": "2015-04-02T08:01:48Z",
"is_verified": null,
"public_repos": 738,
"account_age_days": 4130
},
"license": {
"state": "custom",
"spdx_id": null,
"raw_spdx": "NOASSERTION",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.2.7",
"kind": "patch",
"published_at": "2026-03-19T01:04:51Z"
},
{
"tag": "v0.2.6",
"kind": "patch",
"published_at": "2025-05-21T09:19:48Z"
}
],
"recent_commits": [
{
"oid": "945ac7beb5f18172c04f253e6210ebe9b0545050",
"body": null,
"is_bot": false,
"headline": "v0.2.12 (#106)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-07-21T10:03:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9d9e5d9e42f6c9e900b2674202a180ddff4023f",
"body": "Unity-build some of the C files - not all C files in bearssl are\namenably to unity building due to the liberal use of `static inline` -\nnevertheless, many are and here we cover a large portion of them.",
"is_bot": false,
"headline": "Speed up build (#105)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-07-17T12:42:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78cb496bb9bd29f54b9c43b5be20db18df979ae5",
"body": "- https://curl.haxx.se/ca/cacert.pem\n\nCo-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump cacerts to 2026-07-16 (#104)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-07-16T05:06:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c307026d4d86dc560880c6fa716f5e626ff7fc2",
"body": null,
"is_bot": false,
"headline": "v0.2.11 (#103)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-07-09T13:52:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73c418b366b34d3566ba6a5b37c6390ce429500f",
"body": null,
"is_bot": false,
"headline": "replace deprecated actions/checkout@v4 with actions/checkout@v5 (#102)",
"author_name": "tersec",
"author_login": "tersec",
"committed_at": "2026-07-07T10:43:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "18ddb79d6720e262f82527ff2c846bf464fd6e33",
"body": "…ef (#100)\n\nFollow-up to #95 / #97, which switched the PEM `setdest` / decoder `appendDn` /\nhash `update` callbacks to plain `pointer` but left `br_x509_class.append` on\nthe `const` aliases. Being `= pointer`, they're structurally identical, so\nNim folds all four into one C typedef -- and the `const\n[…]\nader, so const-typed downstream\ncallbacks still match. See the field's doc comment for the `addr cls.append`\ntrade-off.\n\nWorks around nim-lang/Nim#25931.\n\nCo-authored-by: Jacek Sieka <jacek@status.im>",
"is_bot": false,
"headline": "Stop the X509 class `append` callback from poisoning the shared typed…",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-07-03T14:05:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fd07c5ee4c06e46baeff1889a1307cd2a3aa7252",
"body": "* Fix cross compilation issue when using parentDir\n\n* x509 too",
"is_bot": false,
"headline": "Fix cross compilation issue when using parentDir (#101)",
"author_name": "andri lim",
"author_login": "jangko",
"committed_at": "2026-07-02T14:11:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25197fec8a3988d1153be7a1a79890b70e69d6db",
"body": null,
"is_bot": false,
"headline": "v0.2.10 (#98)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-06-23T09:49:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e74223040cccb9ed1af4294763940f6cda65887",
"body": "The X509Class callback fields typed `ctx` as non-const\n`ptr ptr X509Class`, but the C header uses `const br_x509_class **`\n(and `*const *` / `const br_x509_pkey *` for get_pkey), tripping GCC\n14+ -Werror=incompatible-pointer-types in downstream code that\ninstalls custom X509 callbacks.\n\nUse const-correct types (ConstCstring, X509ClassPointerConstConst,\nConstPtrX509Pkey), mirroring br_hash_class's ConstPtrPtrHashClass.\n\nCo-authored-by: Jacek Sieka <jacek@status.im>",
"is_bot": false,
"headline": "Make br_x509_class callbacks const-correct (#96)",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-06-23T09:38:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "279a0e8388bad978a138262caf9dc1cc21503e6f",
"body": "PR #89 switched the x509 `append_dn` and hash `update` callback params to\n`ConstPointer`. These are structurally identical to the PEM `setdest`\ncallback, so Nim collapses all three into one generated C typedef and\nrenders it `const` in some translation units (compilation-order dependent).\nNon-const \n[…]\ncasts to the\nconst-qualified `br_x509_decoder_init` signature, mirroring `pem_compat.c`.\nThe shared typedef is now uniformly non-const, while const-correctness\ntoward the real C function is preserved.",
"is_bot": false,
"headline": "Stop const-poisoning the shared callback typedef (#97)",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-06-23T03:45:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "913aa19f80e272348b179ec46fdd00628213e5d7",
"body": null,
"is_bot": false,
"headline": "v0.2.9 (#93)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-06-19T11:22:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d8be4c8c03f834c7df07d77c79dafe2091df0bf",
"body": "* Restore plain `pointer` pem setdest callback via C shim\n\nPR #89 changed `pemDecoderSetdest`/`setdest` to take `ConstPointer` for the\ncallback's `src`. Because `const void *` is baked into the generated C\nfunction-pointer type, downstream callers that declare their callback with a\nplain `pointer` (\n[…]\nandalone `pem_compat.c` (mirroring bearssl's own `br_pem_decoder_setdest`\ninline setter, with the cast added) and importc it as `pemDecoderSetdest`.\n\nRelated #94\n\n* Fix compile path in bearssl_pem.nim",
"is_bot": false,
"headline": "Restore plain `pointer` pem setdest callback via C shim (#95)",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-06-18T11:47:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c0ad8f479b365eba40104f094b91940b182eb909",
"body": null,
"is_bot": false,
"headline": "upstream: bump to latest (#92)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-06-16T12:45:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a4eed052abbded2d94feaf3f5bbd95a30ec4671",
"body": "- https://curl.haxx.se/ca/cacert.pem\n\nCo-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump cacerts to 2026-05-14 (#90)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-05-14T05:28:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da4de52d2cde6a4d3eae80e538632ace08d82256",
"body": "…#89)oj\n\n- GCC 14+ elevated `-Wincompatible-pointer-types` to an error, causing compilation failures where BearSSL's C headers expect `const void *` / `const unsigned char *` but the Nim bindings generated `void *` / `unsigned char *`\n- Introduce `ConstPointer` and `ConstPtrByte` types (`bearssl/abi\n[…]\n byte` for const parameters must be updated to `ConstPointer` / `ConstPtrByte`. Both are aliases for `pointer` at the Nim level, but GCC 14+ rejects the mismatch in generated C function pointer types.",
"is_bot": false,
"headline": "Fix GCC 14+ -Wincompatible-pointer-types errors on const parameters (…",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-05-07T07:29:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "22c6a76ce015bc07e011562bdcfc51d9446c1e82",
"body": null,
"is_bot": false,
"headline": "v0.2.8 (#88)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2026-04-10T13:54:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "775dccc3d87a8226615d1e69f697c114c118ef56",
"body": "Fixes GCC 14+ `-Wincompatible-pointer-types` on `protocol_names`, which is\ndeclared `const char **` in BearSSL.\n\nRelated: https://github.com/status-im/nim-chronos/pull/640",
"is_bot": false,
"headline": "Fix GCC Wincompatible-pointer-types issue on protocol_names (#87)",
"author_name": "Shuu",
"author_login": "fox0430",
"committed_at": "2026-04-10T13:36:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b417993323f5cf88e978021c5b4024b2b66840df",
"body": "- https://curl.haxx.se/ca/cacert.pem\n\nCo-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump cacerts to 2026-03-19 (#85)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-03-19T04:45:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b341f30d8c619b9a75c154243f9a55468a404e2",
"body": "* Fix/incorrect parameter type in sha256update\n* Add patched secp256r1 verify for nimbus EL P256verify precompile\n* Don't use quoteShell when compiling on bare metal\n* Replace incorrect uint instances with csize_t\n* Bump cacerts to 2026-02-22",
"is_bot": false,
"headline": "v0.2.7 (#84)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-03-19T01:04:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "668425650c0d81e6e16cb9dafe63526eb66dee0a",
"body": "- https://curl.haxx.se/ca/cacert.pem\n\nCo-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump cacerts to 2026-02-22 (#82)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-02-22T04:45:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f4a1ac03319c755b1b84752836e1748741f83f4",
"body": "Without fetch-depth: 2, amending the branch gets rid of the merge info.",
"is_bot": false,
"headline": "Fetch parent commit as well in update-cert automation (#81)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-02-21T10:16:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e71bfd91ff48c424634ef44a71c94af9985d6cfd",
"body": "Pushing from actions fails due to branch protection rules. Create PR instead, when cacerts need updating.",
"is_bot": false,
"headline": "Use PR instead of a direct push for update-cert automation (#79)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-02-20T18:59:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31b8007329397c202667c3fb8e808304cd41469a",
"body": "update.sh needs submodules to successfully build brssl for .pem -> .c.",
"is_bot": false,
"headline": "Checkout submodules when updating cacert (#77)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-02-18T18:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "267c79ec374d4ef18ba85ee34c008cf3c17a9588",
"body": "Run the update.sh script daily via GitHub Actions.",
"is_bot": false,
"headline": "Automate updating cacert (#76)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-02-18T18:00:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "548e56fbee5cbb611f0e9720524e1b08b22d281d",
"body": "Wrap the manual maintenance steps to get new certificates in update.sh.\nThe timestamp will be re-inserted as a comment rather than filename\non the first run.",
"is_bot": false,
"headline": "Create script to update certificates (#75)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2026-02-18T18:00:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f08d72203f9e110c099c6f393e1c0640fcbe176f",
"body": null,
"is_bot": false,
"headline": "Change len: uint to len: csize_t (#69)",
"author_name": "Matt Haggard",
"author_login": "iffy",
"committed_at": "2025-12-10T19:11:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff43a1dad1af1cc4bd928c243a1c0470a315aa2c",
"body": null,
"is_bot": false,
"headline": "Don't use quoteShell when compiling on bare metal (#72)",
"author_name": "Ben Hartnett",
"author_login": "bhartnett",
"committed_at": "2025-12-10T07:20:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "405f07ef14ccaeadf8b4d0200f94752df13d2cd5",
"body": "A special patch of secp256r1 verify raw due to\noriginal muladd function cannot handle h == 0 or h == N.\nAlso return 0 if r == 0.",
"is_bot": false,
"headline": "Add patched secp256r1 verify for nimbus EL P256verify precompile (#70)",
"author_name": "andri lim",
"author_login": "jangko",
"committed_at": "2025-10-14T22:20:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b16f70bd8e14abed1c9f03f93757547cf1e95c03",
"body": "* ignore .nimble\n\n* changes the type of len param to uint in sha256Update\n\n* adds tests for sha256\n\n* applied review suggestions\n\n* added nimbledeps to .gitignore",
"is_bot": false,
"headline": "Fix/incorrect parameter type in sha256update (#68)",
"author_name": "Marcin Czenko",
"author_login": "marcinczenko",
"committed_at": "2025-06-27T15:39:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11e798b62b8e6beabe958e048e9e24c7e0f9ee63",
"body": "- fix warnings",
"is_bot": false,
"headline": "v0.2.6 (#67)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2025-05-21T09:19:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34d712933a4e0f91f5e66bc848594a581504a215",
"body": "- Warning: Use `newSeqUninit` instead; newSeqUninitialized is deprecated\n- Warning: unsafe conversion to 'cstring' from 'ptr array[0..255, char]'",
"is_bot": false,
"headline": "fix warnings (#66)",
"author_name": "Miran",
"author_login": "narimiran",
"committed_at": "2025-05-14T08:42:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7683c5a6221605bbab31b53d01feb3a3161bb8b",
"body": null,
"is_bot": false,
"headline": "use the common CI workflow (#65)",
"author_name": "Miran",
"author_login": "narimiran",
"committed_at": "2025-01-13T07:44:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "953a795b96d73a7401e7a1041587da9ffe6d78f6",
"body": "`apt-fast` was removed from GitHub with Ubuntu 24.04:\r\n\r\n- https://github.com/actions/runner-images/issues/10003\r\n\r\nFor compatibility, switch back to `apt-get`.",
"is_bot": false,
"headline": "Replace `apt-fast` with `apt-get` (#64)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2024-10-15T14:39:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "667b40440a53a58e9f922e29e20818720c62d9ac",
"body": null,
"is_bot": false,
"headline": "Bump version to 0.2.5.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2024-07-18T16:38:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4e2f555c81ecf6b3eec817f6f83fd3ad6a12b19",
"body": "* rsaKeygenGetDefault test\r\n\r\n* add ubuntu 24 and gcc 14 to ci\r\n\r\n* use PrngClassPointerConst for rsa keygen\r\n\r\n* fix test_brssl\r\n\r\n* add comment about ubuntu 24\r\n\r\n* define and use ConstPtrPtrHashClass\r\n\r\n* remove previous ecKeygen\r\n\r\n* remove previous x509NoanchorInit\r\n\r\n* improve test\r\n\r\n* add ecKeygen test\r\n\r\n* add x509NoanchorInit test\r\n\r\n* remove commented code\r\n\r\n* rename target to linux-gcc-14\r\n\r\n* test already exists\r\n\r\n* fix tests",
"is_bot": false,
"headline": "gcc 14 support (#62)",
"author_name": "diegomrsantos",
"author_login": "diegomrsantos",
"committed_at": "2024-07-18T15:50:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "646fa2152b11980c24bf34b3e214b479c9d25f21",
"body": null,
"is_bot": false,
"headline": "Release v0.2.4",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2024-06-26T23:49:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "554b464b34cd5df2beb51952302e86edf184e480",
"body": "* Fix recently discovered nim-2.0 gcc-14 issues.\r\n\r\n* One more place to fix.",
"is_bot": false,
"headline": "Fix gcc-14 issues part 2. (#61)",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2024-06-26T22:42:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8790ee6401b21e304c5d85a9572188592a9d8e0c",
"body": "* update ci.yml and be more explicit in .nimble\r\n\r\n* test both amd64 and arm64 macos",
"is_bot": false,
"headline": "update ci.yml and be more explicit in .nimble (#60)",
"author_name": "Miran",
"author_login": "narimiran",
"committed_at": "2024-06-26T22:22:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a806cbfab5fe8de49c76139f8705fff79daf99ee",
"body": "* Fix compilation warning in tests.\r\n\r\n* Release 0.2.3.",
"is_bot": false,
"headline": "Release 023 (#59)",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2024-06-02T13:55:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff0b47ed80bdf836ca592c7cd41507da227c02c7",
"body": "* Fix GCC-14 [-Wincompatible-pointer-types] issue.\r\n\r\n* Add more fixes.\r\n\r\n* More fixes.",
"is_bot": false,
"headline": "Fix GCC-14 [-Wincompatible-pointer-types] issue. (#58)",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2024-06-02T03:42:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d81b37dc2011bf3a2bd93500489877c2ce8e6ac3",
"body": null,
"is_bot": false,
"headline": "Bump cacert to version 2024-03-11. (#57)",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2024-04-12T11:21:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86f212c6a5d76b52e20fad2e318cc5436d04fc26",
"body": "- Adds clang 15 support; handles `-Wincompatible-function-pointer-types`",
"is_bot": false,
"headline": "release `v0.2.2` (#56)",
"author_name": "Etan Kissling",
"author_login": "etan-status",
"committed_at": "2024-03-07T09:45:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7640cc6aa859f6d4ad657c892f14c76dc1d34bd5",
"body": null,
"is_bot": false,
"headline": "test refc in CI in Nim 2.0 and later (#55)",
"author_name": "tersec",
"author_login": "tersec",
"committed_at": "2024-02-14T01:08:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d55d3a86d7ec3ad11b244e17b3bad490bfbd076d",
"body": null,
"is_bot": false,
"headline": "Switch to llvm-mingw in Windows CI",
"author_name": "jangko",
"author_login": "jangko",
"committed_at": "2023-09-14T03:49:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4157639db180e52727712a47deaefcbbac6ec86",
"body": null,
"is_bot": false,
"headline": "0.2.1",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2023-08-16T10:52:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "917b7274f93d8df7a9451d0e9ae96bb0f983546e",
"body": "* test c++ support, work around linking issue\r\n\r\n* fix imports, don't test C++ after all",
"is_bot": false,
"headline": "work around C++ linking issue (#50)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2023-08-16T10:47:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4f0977b5423f729001882f583d3fc2ac781c783",
"body": null,
"is_bot": false,
"headline": "bump (#46)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2023-08-16T08:48:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99fcb3405c55b27cfffbf60f5368c55da7346f23",
"body": null,
"is_bot": false,
"headline": "remove Nim 1.2 and 1.4 support; test Nim 2.0 in CI (#48)",
"author_name": "tersec",
"author_login": "tersec",
"committed_at": "2023-06-13T20:55:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9372f27a25d0718d3527afad6cc936f6a853f86e",
"body": null,
"is_bot": false,
"headline": "remove appveyor/travis scripts and fix ci (#47)",
"author_name": "andri lim",
"author_login": "jangko",
"committed_at": "2023-05-22T10:03:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "acf9645e328bdcab481cfda1c158e07ecd46bd7b",
"body": null,
"is_bot": false,
"headline": "Fixed hmacSize definition (#44)",
"author_name": "Yuriy Glukhov",
"author_login": "yglukhov",
"committed_at": "2023-01-17T10:49:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a647994910904b0103a05db3a5ec1ecfc4d91a88",
"body": "* fix carry propagation bug\r\n* improved c++ compat\r\n* new date range validation api",
"is_bot": false,
"headline": "bump upstream (#41)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-12-08T20:34:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0271920a734b8c02186785390e2fdf56624790b",
"body": "* ci: abort redundant PR builds\r\n\r\n* bump checkouts",
"is_bot": false,
"headline": "ci: abort redundant PR builds (#40)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-11-22T16:55:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc4e5c54aa3c083152b9f7d93f364067dbdc5e3b",
"body": "* remove non-split api, bump version\r\n * 0.1.5 is the last version to support the old ABI\r\n* move cacert to certs/\r\n* add compat shim for abi/cacert",
"is_bot": false,
"headline": "remove non-split api, bump version (#39)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-11-21T17:01:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5159f7e385547c5236d8d5781495225d9f1d9368",
"body": "* update nimble build\r\n\r\n* remove arc tests\r\n\r\norc is default on devel",
"is_bot": false,
"headline": "update nimble build (#38)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-11-21T10:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ee8b136e32b2995bad0b16b597d6b50485a9078",
"body": null,
"is_bot": false,
"headline": "readd bearsl/cacert",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-11-20T07:21:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e5fa149b6b2a8fee24d35280a70c42fbe40d8fa",
"body": "Makes the certificates compile a single time instead of being included\r\nall over - also bump to a more recent version",
"is_bot": false,
"headline": "update cacert, turn it into C file (#37)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-11-18T07:32:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4c4233de453cb7eac0ce3f3ffad6496295f83ab",
"body": null,
"is_bot": false,
"headline": "Add setup files",
"author_name": "Ivan Yonchovski",
"author_login": "yyoncho",
"committed_at": "2022-07-25T19:05:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25009951ff8e0006171d566e3c7dc73a8231c2ed",
"body": null,
"is_bot": false,
"headline": "rsa: import intx (#35)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-07-18T05:17:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e9b70265052dd1ba5d2ef162f03d11ade5b9173",
"body": "* generate brssl.nim with regenerate.sh as well",
"is_bot": false,
"headline": "brssl: c2nim-generated spelling (#33)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-07-07T16:47:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32e125015ae4251675763842366380795a91b722",
"body": "* move `-d:nimRawSetjmp` to config.nims\r\n\r\nRefs https://github.com/status-im/nimbus-build-system/issues/44\r\n\r\n* not vcc\r\n\r\n* use .cfg not .nims",
"is_bot": false,
"headline": "move `-d:nimRawSetjmp` to config.nims (#30)",
"author_name": "Miran",
"author_login": "narimiran",
"committed_at": "2022-06-24T18:09:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2631f8473ddfd8237a0a5e82304daac081abe50b",
"body": null,
"is_bot": false,
"headline": "cross-compile-compatible paths (#31)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-06-24T18:09:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ba7f13372d4d191e464a250051a5744ea1d9416",
"body": null,
"is_bot": false,
"headline": "pem: convenience API (#29)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-06-16T14:50:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0ea93f77ef2a8dcd0a58e3eddeebc89977d9ed3",
"body": "Helpers to generate random numbers, including simple Nim types\r\n\r\n* disable C++ tests\r\n * there are too many `const` vs `non-const` issues to run these tests -\r\nC++ never actually worked\r\n* add generateBytes to make fresh seqs\r\n\r\nCo-authored-by: Mamy Ratsimbazafy <mamy_github@numforge.co>\r\nCo-authored-by: Etan Kissling <etan@status.im>",
"is_bot": false,
"headline": "rand: convenience API (#28)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-06-15T20:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4aec8b664709356060b71b7e495be62ca446a65",
"body": "* split `decls.nim` into smaller modules - allows using parts of the ABI\r\nwithout compiling all of `bearssl`\r\n* deprecate functions with `Br` prefix - there are duplicate exports\r\nboth with and without `Br` for the same function and we use both in\r\nconsumers like `chronos` and `libp2p`\r\n* fix severa\n[…]\nhe Split likely needs more cleanup work - this is a first cut to get\r\nthe idea in place.\r\n\r\nIn the new layout, `bearssl/abi/` contains \"raw\" nim mappings while\r\nhand-written helpers are in `bearssl/`.",
"is_bot": false,
"headline": "split decls into separate modules in `bearssl/abi` (#27)",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2022-06-14T17:33:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0ebb1d7a4af5f4b4d4756a9b6dbfe5d411fa55d9",
"body": null,
"is_bot": false,
"headline": "Add a Nimble lock file",
"author_name": "Zahary Karadjov",
"author_login": "zah",
"committed_at": "2022-04-14T15:08:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65b74302e03912ab5bde64b6da10d05896139007",
"body": "…s installation)",
"is_bot": false,
"headline": "Fix a submodule URL (otherwise, cloning was failing on a fresh Window…",
"author_name": "Zahary Karadjov",
"author_login": "zah",
"committed_at": "2022-03-04T11:29:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "450a0d10074f9ed35cf93f4980e77e01b0e1abb1",
"body": null,
"is_bot": false,
"headline": "add rsa_pss sign and vrfy FFI",
"author_name": "jangko",
"author_login": "jangko",
"committed_at": "2022-03-02T10:06:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba80e2a0d7ae8aab666cee013e38ff8d33a3e5e7",
"body": null,
"is_bot": false,
"headline": "CI: cleanup",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2021-12-14T02:22:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b39f3d2975dceac30e1acb712e1497aa2baa6327",
"body": "* CI: test with multiple Nim versions\r\n\r\nand add a real test",
"is_bot": false,
"headline": "CI: test with multiple Nim versions (#24)",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2021-12-11T23:01:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ca2e9fe879a37d8b64d72ddb2124239429d6443",
"body": "enable --stylecheck:usages",
"is_bot": false,
"headline": "Merge pull request #23 from status-im/stylecheck-usages",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2021-12-10T09:54:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b70350dcba6356ad9824dc27e58332df1399105",
"body": null,
"is_bot": false,
"headline": "enable --stylecheck:usages",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2021-12-10T09:03:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc62f4fccd2d40c884009ae8f2b14bb6a86a55cf",
"body": "fix type mismatch",
"is_bot": false,
"headline": "Merge pull request #20 from narimiran/cuchar-fix",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2021-06-07T11:46:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba68572fde3cef6df34d412f9ccf94e0dfef933d",
"body": null,
"is_bot": false,
"headline": "CI: simplify Nim compiler caching (#19)",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2021-06-03T01:02:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a0401d6d0dc7b4be61d5fc4b9f906c8649c9bb0",
"body": null,
"is_bot": false,
"headline": "fix type mismatch",
"author_name": "narimiran",
"author_login": "narimiran",
"committed_at": "2021-05-20T06:28:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a7401ad466d70bab31c5d6dc82d1d584e4ebd1f",
"body": "…021 GMT. (#18)",
"is_bot": false,
"headline": "Bump bundled cacert.pem to version generated at Tue Jan 19 04:12:04 2…",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2021-02-24T12:23:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dd9a835500c40dba8956ad54d0532892f08f105",
"body": "* Change submodule source to our mirror\r\n\r\n* Update to latest commit\r\n\r\n* check if nimble fetches submodules\r\n\r\n* install everything\r\n\r\n* revert\r\n7429ecb and e91fd5a",
"is_bot": false,
"headline": "Use bearSSL mirror + update to latest (#17)",
"author_name": "Mamy Ratsimbazafy",
"author_login": "mratsim",
"committed_at": "2021-02-24T11:01:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f226c97ec5832ce4a316b7b3ef0d8c2535c8972",
"body": null,
"is_bot": false,
"headline": "enable cross-compilation",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2021-02-03T06:03:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eebf730ccda5b5fade2a8f48b3da1496f2c47ba5",
"body": "add github action script",
"is_bot": false,
"headline": "Merge pull request #14 from status-im/github_action",
"author_name": "andri lim",
"author_login": "jangko",
"committed_at": "2021-01-13T06:14:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5131fd9e53f55c89b960f2866e3f9bbdd5907775",
"body": null,
"is_bot": false,
"headline": "add github action script",
"author_name": "jangko",
"author_login": "jangko",
"committed_at": "2021-01-13T04:21:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba5f4687987817902c2727e30b35cb5ad1e61203",
"body": "* Fix BR_UNALIGNED define for ARM architectures.",
"is_bot": false,
"headline": "Fix BR_UNALIGNED define for ARM architectures. (#11)",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2020-07-28T00:09:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33b2303fc3b64359970b77bb09274c3e012ff37f",
"body": "Update BearSSL to upstream version.",
"is_bot": false,
"headline": "Merge pull request #10 from status-im/update-upstream",
"author_name": "Eugene Kabanov",
"author_login": "cheatfate",
"committed_at": "2020-07-06T13:25:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97910ecd7b4ccea91eb4e4c8890dd21f93ec583a",
"body": "Update Mozilla certificates to 2020-06-24 version.",
"is_bot": false,
"headline": "Update BearSSL to upstream version.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2020-07-06T13:22:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "108f580d95988e4d81f4fdbcbdf12b1b789609e9",
"body": "update minimum required nim version",
"is_bot": false,
"headline": "Merge pull request #9 from nikitinator/master",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2020-07-06T09:54:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0380527f72a3f69a787995c97b5badd4e6b4a10",
"body": "https://github.com/status-im/nim-bearssl/commit/7d2a18115bc0592526e6ac4adfda9f43d0e2ca66\r\nhere you use c_sizet, that was added in nim 1.2",
"is_bot": false,
"headline": "update minimum required nim version",
"author_name": "nikitincrime",
"author_login": "nikitinator",
"committed_at": "2020-07-06T09:29:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d2a18115bc0592526e6ac4adfda9f43d0e2ca66",
"body": null,
"is_bot": false,
"headline": "add brHmacDrbgGenerate",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2020-07-04T08:20:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68c6d27304245c948526487b37e10951acf7dbc8",
"body": null,
"is_bot": false,
"headline": "fix raises in imported C functions",
"author_name": "Jacek Sieka",
"author_login": "arnetheduck",
"committed_at": "2020-04-06T18:08:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "924fb6cad1c849eec29d2c96c9803e4f43d6a8f0",
"body": "Bump version to 0.1.5.",
"is_bot": false,
"headline": "Fix path handling for compilation targets.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2020-03-08T18:28:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a9503b6dff59985f7f0f5845014fffa557bdec3",
"body": "Update CA certificates to 2020-01-01.\nBump version to 0.1.4.",
"is_bot": false,
"headline": "Update BearSSL to latest version.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2020-02-14T10:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02c575c84489c88b09ff18062bd306de6dd83356",
"body": "More rigorous effect annotations for all imported procs",
"is_bot": false,
"headline": "Merge pull request #5 from status-im/effect-annotations",
"author_name": "Yuriy Glukhov",
"author_login": "yglukhov",
"committed_at": "2019-12-07T16:13:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8e89349bc6f4fe34e667a3b8119d62d348b0582",
"body": null,
"is_bot": false,
"headline": "More rigorous effect annotations for all imported procs",
"author_name": "Zahary Karadjov",
"author_login": "zah",
"committed_at": "2019-12-07T13:40:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62414b0bdde9f1da2313c01a6e96e2a8d81b1f4e",
"body": null,
"is_bot": false,
"headline": "Missed actual fix.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-11-06T11:39:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2dd31d892a84df180d44dc2fd5d2bc6bb64c5fd3",
"body": "Bump to 0.1.3",
"is_bot": false,
"headline": "Fix test1.nim compilation warning.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-11-06T11:35:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b67ae9534d52b33ca2dee4da5f83dc139aeeed06",
"body": "Bump version to 0.1.2.",
"is_bot": false,
"headline": "Fix compilation warnings.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-11-06T11:15:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca3bafb85d285f9a7d61295512e2dbc24fbf2185",
"body": "Bump version to 0.1.1.",
"is_bot": false,
"headline": "Fix [GcUnsafe2] problems for consumers of this library.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-11-06T10:56:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "993372dd78fa935e051e2d1f3c874d068d7171e6",
"body": null,
"is_bot": false,
"headline": "Fix nimble installation instructions.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-10-23T08:27:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3279827272c7499f4ae8793b2fbe9ed2d57d2268",
"body": "Comment travis arm64 because of non-related failure.\nRemove sudo requirement from x86 travis.",
"is_bot": false,
"headline": "Fix appveyor.",
"author_name": "cheatfate",
"author_login": "cheatfate",
"committed_at": "2019-10-23T08:23:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6133ec47de1900cc17db91fc0f929d0dcbaa63f",
"body": null,
"is_bot": false,
"headline": "Better gcsafety",
"author_name": "Zahary Karadjov",
"author_login": "zah",
"committed_at": "2019-10-18T11:12:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6eeb5dd4a8cf455159d6c6724328e3a50f9b120",
"body": null,
"is_bot": false,
"headline": "Merge branch 'ARM64'",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2019-10-17T17:00:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52590023bcbbfc5218061e0f40482266878e7209",
"body": null,
"is_bot": false,
"headline": "ARM64 support",
"author_name": "Ștefan Talpalaru",
"author_login": "stefantalpalaru",
"committed_at": "2019-10-17T16:03:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80d28b8fe2b86ac07b4018b12348db2befa18a9d",
"body": "Adjustments.",
"is_bot": false,
"headline": "Merge pull request #1 from status-im/compat",
"author_name": "Yuriy Glukhov",
"author_login": "yglukhov",
"committed_at": "2019-10-08T09:36:30Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 28,
"latest_release_at": "2026-03-19T01:04:51Z",
"latest_release_tag": "v0.2.7",
"releases_from_tags": false,
"days_since_last_push": 2,
"active_weeks_last_year": 14,
"days_since_latest_release": 126,
"mean_days_between_releases": 301.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 11,
"stars": 42,
"watchers": 19,
"fork_history": {
"days": [
{
"date": "2020-01-26",
"count": 1
},
{
"date": "2022-07-05",
"count": 1
},
{
"date": "2022-11-23",
"count": 1
},
{
"date": "2022-11-29",
"count": 1
},
{
"date": "2023-01-16",
"count": 1
},
{
"date": "2024-08-12",
"count": 1
},
{
"date": "2025-06-02",
"count": 1
},
{
"date": "2025-06-26",
"count": 1
},
{
"date": "2025-10-06",
"count": 1
},
{
"date": "2025-12-04",
"count": 1
},
{
"date": "2026-04-10",
"count": 1
}
],
"complete": true,
"collected": 11,
"total_forks": 11
},
"star_history": null,
"open_issues_and_prs": 5
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 346606,
"source_files_sampled": 18,
"oversized_source_files": 1,
"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": 1,
"merged_prs": 76,
"open_issues": 4,
"closed_ratio": 0.733,
"closed_issues": 11,
"closed_unmerged_prs": 13
},
"bus_factor": 3,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "arnetheduck",
"commits": 28,
"avatar_url": "https://avatars.githubusercontent.com/u/1382986?v=4"
},
{
"type": "User",
"login": "cheatfate",
"commits": 20,
"avatar_url": "https://avatars.githubusercontent.com/u/5955411?v=4"
},
{
"type": "User",
"login": "etan-status",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/89844309?v=4"
},
{
"type": "User",
"login": "jangko",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/2784755?v=4"
},
{
"type": "User",
"login": "yglukhov",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/6962409?v=4"
},
{
"type": "User",
"login": "stefantalpalaru",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/495550?v=4"
},
{
"type": "User",
"login": "fox0430",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/15966436?v=4"
},
{
"type": "User",
"login": "narimiran",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/16516130?v=4"
},
{
"type": "User",
"login": "zah",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/175462?v=4"
},
{
"type": "User",
"login": "tersec",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/11422416?v=4"
}
],
"contributors_sampled": 17,
"top_contributor_share": 0.275
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"update-cacert.yaml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 9,
"reason": "29 out of 30 merged PRs checked by a CI test -- score normalized to 9",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 3,
"reason": "Found 9/30 approved changesets -- score normalized to 3",
"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": 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": 9,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "15 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 7,
"reason": "SAST tool is not run on all commits -- score normalized to 7",
"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": "945ac7beb5f18172c04f253e6210ebe9b0545050",
"ran_at": "2026-07-24T00:03:10Z",
"aggregate_score": 5.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-23T12:58:17Z",
"oldest_open_prs": [
{
"number": 54,
"created_at": "2024-01-12T14:55:51Z",
"last_comment_at": "2024-08-21T14:12:13Z",
"last_comment_author": "iffy"
}
],
"last_merged_pr_at": "2026-07-21T10:03:08Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 53,
"created_at": "2023-12-29T04:01:30Z",
"last_comment_at": "2024-01-12T06:18:53Z",
"last_comment_author": "arnetheduck"
},
{
"number": 99,
"created_at": "2025-10-06T21:24:33Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 73,
"created_at": "2026-02-09T19:54:53Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 91,
"created_at": "2026-06-13T20:32:42Z",
"last_comment_at": "2026-06-26T09:05:12Z",
"last_comment_author": "arnetheduck"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/status-im/nim-bearssl",
"host": "github.com",
"name": "nim-bearssl",
"owner": "status-im"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"security": 51,
"vitality": 71,
"community": 43,
"governance": 75,
"engineering": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 71,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"commits_last_year": 28,
"human_commit_share": 0.96,
"days_since_last_push": 2,
"active_weeks_last_year": 14
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 2 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 2
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "14/52 weeks with commits",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 14
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "28 commits in the last year",
"points": 13.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 28
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "15 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 74,
"inputs": {
"releases_count": 2,
"latest_release_tag": "v0.2.7",
"releases_from_tags": false,
"days_since_latest_release": 126,
"mean_days_between_releases": 301.7
},
"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 126 days ago",
"points": 27,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 126
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~301.7 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 301.7
}
}
],
"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": 2,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 2 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 2
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 43,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 42,
"inputs": {
"forks": 11,
"stars": 42,
"watchers": 19,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "42 stars",
"points": 26.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 42
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "11 forks",
"points": 8.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 11
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "19 watchers",
"points": 7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 19
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "at_risk",
"name": "Community health",
"note": null,
"notes": [],
"value": 44,
"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": "license file present, not a recognized license",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "license_custom",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 75,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "good",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"bus_factor": 3,
"contributors_sampled": 17,
"top_contributor_share": 0.275
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "3 contributor(s) cover half of all commits",
"points": 36,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 3
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 28% of commits",
"points": 16.3,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 28
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "17 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 17
}
}
],
"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": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"merged_prs": 76,
"open_issues": 4,
"closed_issues": 11,
"issue_closed_ratio": 0.733,
"closed_unmerged_prs": 13
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "73% of issues closed",
"points": 34.3,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 73
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "76/89 decided PRs merged",
"points": 32.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 76,
"decided": 89
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 9/30 approved changesets -- score normalized to 3",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"followers": 998,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "status-im",
"public_repos": 738,
"account_age_days": 4130
},
"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": "998 followers of status-im",
"points": 21.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 998,
"login": "status-im"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "738 public repos, account ~11 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 738
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"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": 56,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "29 out of 30 merged PRs checked by a CI test -- score normalized to 9",
"points": 18,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 51,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"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": 51,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 5.1
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "29 out of 30 merged PRs checked by a CI test -- score normalized to 9",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 9/30 approved changesets -- score normalized to 3",
"points": 2.2,
"status": "partial",
"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": "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.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "15 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 7",
"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": "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": 12
},
"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": 46,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.698,
"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": "67 of 96 human commits state their intent (structured subject or explanatory body)",
"points": 37.2,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 67,
"sampled": 96
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"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": 97,
"inputs": {
"primary_language": "C",
"largest_source_bytes": 346606,
"source_files_sampled": 18,
"oversized_source_files": 1
},
"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": "1/18 source files over 60KB",
"points": 51.9,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 18,
"oversized": 1
}
}
],
"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-24T00:03:32.297701Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/status-im/nim-bearssl.svg",
"full_name": "status-im/nim-bearssl",
"license_state": "custom",
"license_spdx": null
}