原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [
"bitcoin",
"blockchain",
"ruby"
],
"is_fork": false,
"size_kb": 34641,
"has_wiki": true,
"homepage": null,
"languages": {
"Ruby": 1102871,
"Shell": 131
},
"pushed_at": "2026-07-27T09:25:23Z",
"created_at": "2017-06-13T09:12:00Z",
"owner_type": "Organization",
"updated_at": "2026-07-27T09:20:26Z",
"description": "The implementation of the bitcoin protocol for ruby.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Ruby",
"significant_languages": [
"Ruby"
]
},
"owner": {
"blog": "https://www.chaintope.com/",
"name": "chaintope, Inc",
"type": "Organization",
"login": "chaintope",
"company": null,
"location": "Japan",
"followers": 15,
"avatar_url": "https://avatars.githubusercontent.com/u/32918787?v=4",
"created_at": "2017-10-19T02:37:01Z",
"is_verified": null,
"public_repos": 63,
"account_age_days": 3203
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.12.0",
"kind": "minor",
"published_at": "2026-02-07T07:03:44Z"
},
{
"tag": "v1.11.0",
"kind": "minor",
"published_at": "2025-12-15T05:58:23Z"
},
{
"tag": "v1.10.0",
"kind": "minor",
"published_at": "2025-11-09T04:35:34Z"
},
{
"tag": "v1.9.1",
"kind": "patch",
"published_at": "2025-08-05T00:35:28Z"
},
{
"tag": "v1.9.0",
"kind": "minor",
"published_at": "2025-08-04T01:36:24Z"
},
{
"tag": "v1.8.2",
"kind": "patch",
"published_at": "2025-05-20T00:55:58Z"
},
{
"tag": "v1.8.1",
"kind": "patch",
"published_at": "2025-03-18T01:21:30Z"
},
{
"tag": "v1.8.0",
"kind": "minor",
"published_at": "2025-02-03T05:19:26Z"
},
{
"tag": "v1.7.0",
"kind": "minor",
"published_at": "2024-08-17T07:44:56Z"
},
{
"tag": "v1.6.0",
"kind": "minor",
"published_at": "2024-07-09T07:32:47Z"
},
{
"tag": "v1.5.0",
"kind": "minor",
"published_at": "2024-03-14T06:26:15Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2023-12-19T04:17:30Z"
},
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2023-04-07T07:43:51Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2022-10-24T05:38:00Z"
},
{
"tag": "v1.1.1",
"kind": "patch",
"published_at": "2022-05-23T00:02:43Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2022-05-21T04:15:52Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2021-11-16T23:50:53Z"
},
{
"tag": "v0.9.0",
"kind": "minor",
"published_at": "2021-11-12T12:04:30Z"
},
{
"tag": "v0.8.0",
"kind": "minor",
"published_at": "2021-06-29T10:49:30Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2021-02-19T01:43:56Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2021-01-20T02:28:09Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2020-08-19T07:02:07Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2019-12-27T03:57:54Z"
}
],
"recent_commits": [
{
"oid": "111b7ed7811789fc9acd913344f6b64b4e251e32",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.12.1",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-27T09:20:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4978ea4f6719737a7fb89415607d3f9210fe33d6",
"body": "…ro-length strings\n\nunpack_var_string returned nil for a zero-length var_str and raised\nNoMethodError for an empty payload. As a result, parsing a version\nmessage with an empty user_agent (which is valid and seen in the wild)\nproduced user_agent=nil, breaking to_payload round-trip with\nNoMethodError. It now returns an empty string in both cases.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix unpack_var_string to return an empty string instead of nil for ze…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-27T09:18:41Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "50f53db9ef7d81d8c8d13955bb45e7dd034df510",
"body": "Nodes prior to BIP-31 (protocol version < 60001) send a ping message\nwith no nonce. Parsing such a ping succeeded but produced an object\nwhose to_payload/to_response raised TypeError. Ping#to_payload now\nreturns an empty payload when nonce is nil, and Ping#to_response\nreturns nil since a pre-BIP31 ping does not expect a pong.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix TypeError when generating a response to a ping message without nonce",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-27T09:18:35Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f36664f1697d0166878ef6f20068e828a21bac1f",
"body": "…ge that omitted the relay field (can be omitted in BIP-37)",
"is_bot": false,
"headline": "Fix a bug that caused a NoMethodError of nil.zero? in a version messa…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-27T09:09:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4069b5310e13be25f402d0bdc4e1fcc171bd206e",
"body": null,
"is_bot": false,
"headline": "Bump actions/checkout@v5",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-21T02:20:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49cd4b6665b6f03b23810f398e6f551f21828328",
"body": null,
"is_bot": false,
"headline": "Enable YJIT",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-21T00:56:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49bfbfc5c8b71e8744a8f280e7757d85e75eb282",
"body": "see: https://github.com/bitcoin/bitcoin/pull/34295",
"is_bot": false,
"headline": "test: Improve STRICTENC/DERSIG unit tests",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-07-05T05:26:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb49bc6312851d9a49a4e747cec5c6e907ef0edc",
"body": null,
"is_bot": false,
"headline": "Update BIP-322 spec for simple and full",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-05-24T08:32:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75afdc0b8308915c0cfd07ac36f19f0de7899025",
"body": null,
"is_bot": false,
"headline": "Refactoring to speed up",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-04-18T04:23:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "395e6737948b150763e9349fa5b90f7d0e6810ee",
"body": null,
"is_bot": false,
"headline": "Improved constant-time processing",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-04-18T03:27:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4119730a41153b56c0d0d50ceb6a827d47ecb1db",
"body": null,
"is_bot": false,
"headline": "Ensuring BIP32 compliance",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-04-18T03:17:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc79df58038d17c6a146f6c7100ba5ce300a7305",
"body": null,
"is_bot": false,
"headline": "Unify code",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-04-18T03:09:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a9f8db4e8036e56be18104af5e6ad94ae85331f",
"body": null,
"is_bot": false,
"headline": "Remove unused load",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-19T08:04:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "332aa694864c8142ca166fc79e34c38e2659d48e",
"body": null,
"is_bot": false,
"headline": "Implement sp() descriptor",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-17T08:52:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca4b170b9a8bebd4919de016a3f79b88e1ac0076",
"body": null,
"is_bot": false,
"headline": "Support kmax option for sp",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-09T08:28:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b30cb4b24b2da3399481e4bf0ad68c560dc95664",
"body": null,
"is_bot": false,
"headline": "Implement sp scan method",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-08T07:07:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2767e675e3a60279df0b5b7117c42b399011a29a",
"body": null,
"is_bot": false,
"headline": "Remove observer dependency",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-05T06:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8f9740222b1f8ff5f95f8bd99b3db91b1fbbf88",
"body": null,
"is_bot": false,
"headline": "Remove network related specs",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-05T05:48:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9890be2d7ef0f5352f02ff02f0847f12619360d",
"body": null,
"is_bot": false,
"headline": "Remove 'eventmachine'",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-05T05:45:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1db85fd92067d54b266c325400f2167eb735be1d",
"body": null,
"is_bot": false,
"headline": "Remove node implementations",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-03-05T05:43:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e48e8602b1dd5cfcd1dbfbb7c0e29f9e5ce160e",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.12.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-07T07:00:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "070327133a2a3e5a6d265b2d82f06f9414c01e74",
"body": null,
"is_bot": false,
"headline": "Add check to allow only whitelisted methods",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-07T06:42:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d7d2e75b69a75bdb02e35e9cf19ff491c5ed78e",
"body": "https://github.com/bitcoin/bitcoin/pull/32143",
"is_bot": false,
"headline": "Fix mis-categorized error code in OP_IF evaluation",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-02T08:57:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8cd91ed0d606d6a928cb00d5949f8b6687b4adb",
"body": "https://github.com/bitcoin/bitcoin/pull/34381",
"is_bot": false,
"headline": "Change to return proper error for CScriptNum errors",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-02T08:53:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d4df2eed8bcc1cbc8828096fa1e019a8ccf3a25",
"body": null,
"is_bot": false,
"headline": "Add sendtxrcncl message",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-02T01:47:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "420b553e1b989f7f639a3a77529795df6fa32adb",
"body": null,
"is_bot": false,
"headline": "Remove redundant data",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-02T00:59:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff9b54b9dfcb2bef988d162c263c78c8c9f8c229",
"body": null,
"is_bot": false,
"headline": "Add wtixdrelay message class",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2026-02-02T00:32:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47fa465176f253eeae8a441a890e0b54a13f9614",
"body": null,
"is_bot": false,
"headline": "Bump ruby version to 4.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-30T02:08:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e46ca90f40226a02487d9d3c399534de78752d4c",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.11.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T05:52:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "adf537349e12f0b2d406fd4db9164ecded9258af",
"body": null,
"is_bot": false,
"headline": "Support P2A output verification",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T05:30:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5b4375f576bb3b208d567edf4bf1771571d2cba",
"body": null,
"is_bot": false,
"headline": "Add Script#to_p2a and Script#p2a? methods",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T04:29:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe5fd2b16060b9543a8128397274e57c3d14df4a",
"body": null,
"is_bot": false,
"headline": "Add SCRIPT_ERR_TAPSCRIPT_EMPTY_PUBKEY",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T03:45:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2ffcc6336413fd8ee89cdbe823b263719bd472a",
"body": "…script\n\nhttps://github.com/bitcoin/bitcoin/pull/33961/",
"is_bot": false,
"headline": "Port: add a separate ScriptError for empty pubkeys encountered in Tap…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T02:58:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea38b410eb7611a0afff363d8d1d66367d520c9b",
"body": "…oded)\n\nhttps://github.com/bitcoin/bitcoin/pull/32924",
"is_bot": false,
"headline": "Add valid tx test with minimum-sized ECDSA signature (8 bytes DER-enc…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-12-15T02:41:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90fd39db32a2ea63fd5dc0039fd561089d58fe62",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.10.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-11-09T04:27:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f0e889bf062eb44f3c21816fc9b3badceb2a8b1",
"body": null,
"is_bot": false,
"headline": "Update BIP324 test vector",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-10-25T09:03:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "954140b868b819e8523a16d587de52de1fab2111",
"body": null,
"is_bot": false,
"headline": "Add sp address validation in BIP321URI",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-10-01T08:33:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76e1307fe9da300d7587b91a748257785125b97b",
"body": null,
"is_bot": false,
"headline": "Migrate BIP21URI class to BIP321URI",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-10-01T07:54:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f5e7e7e636a710476425008a1845688ab83ac2f",
"body": null,
"is_bot": false,
"headline": "Add BIP21URI class",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-10-01T02:01:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f6cc9a7bff7cda7601423cef8f1241a657e2889",
"body": null,
"is_bot": false,
"headline": "Add BIP-390 support description",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-09-08T13:31:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "063f0d5a4da00f0805725f04a057ddd4cc35c735",
"body": null,
"is_bot": false,
"headline": "Remove unnecessary puts",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-09-05T01:22:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "714afced32781cb00a829e93861ff9e42604f64c",
"body": "https://github.com/bitcoin/bitcoin/pull/31640",
"is_bot": false,
"headline": "Port tests: improves tapscript unit tests",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-09-04T08:14:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d6352f57ef54b945450e5f7ccf67c1f4a61108b",
"body": "https://github.com/bitcoin/bitcoin/pull/33047",
"is_bot": false,
"headline": "Appley test: check proper OP_2ROT behavior",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-09-04T06:34:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "125c746c4f1ae50e007be4e0212348e586d196a3",
"body": null,
"is_bot": false,
"headline": "Remove leb128 dependency",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-19T00:14:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26514dc045d019e15b8e8fc64476a557f216606a",
"body": null,
"is_bot": false,
"headline": "Remove openassets features",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-09T02:56:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72a2e2085267e72e4ff1e31095c70b52f7cde5f7",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.9.1",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-05T00:30:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d741fa873981bc650982f6911a3e8f81bda1c847",
"body": null,
"is_bot": false,
"headline": "Implement to_s for musig() descriptor",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-05T00:12:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c7b70b4cec6aa1e27ca615fac71724c66c542ae",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.9.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-04T01:26:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04ba81aeb4b3391f127d1303f2a256718296d32d",
"body": null,
"is_bot": false,
"headline": "Split descriptor spec",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-04T01:04:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b41f8193b70390bf300abfbb22836032ae32d959",
"body": null,
"is_bot": false,
"headline": "Support parse musig() descriptor string",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-04T00:51:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5d67c77c0bb9a17d67ef6ef63b75aea7d3d916f",
"body": null,
"is_bot": false,
"headline": "Implement musig() descriptor",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-03T08:55:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d04056596293455d664cff367f13337049786a39",
"body": null,
"is_bot": false,
"headline": "Fix method description",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-08-03T04:58:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32051cfb0c9255b85ce1d85f5fc924bb2033201c",
"body": "… gem",
"is_bot": false,
"headline": "Migrate CustomDepthBuilder's merkle tree implementation to use merkle…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-07-31T02:45:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c01170479dc85b373486bf4da15d689787f1c243",
"body": null,
"is_bot": false,
"headline": "Remove unused variable",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-07-31T02:22:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "453b944de812dbba9c62d694c33e143dfd6e16c4",
"body": null,
"is_bot": false,
"headline": "Migrate SimpleBuilder's merkle tree implementation to use merkle gem",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-07-31T01:30:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6eabaee885af5930aefc2a077d93b1e7bdd264d9",
"body": null,
"is_bot": false,
"headline": "Migrate merkle tree implementation to merkle gem",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-07-28T07:02:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "340d097f01029aad6b2e545079f207711515a294",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.8.2",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-05-20T00:26:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73aa2f2b197f25801859bddded2b793307083783",
"body": null,
"is_bot": false,
"headline": "Support testnet4 setting",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-05-20T00:05:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f7ee3a974f7e647b60c98e60a3f75a3b7c0edcd",
"body": null,
"is_bot": false,
"headline": "Implement sender output derivation for SilentPayment",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-04-02T01:41:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f2b8f27831b438350f9dca1cac75a168d8e2707",
"body": "…ompressed: true is specified but an uncompressed public key is passed",
"is_bot": false,
"headline": "Add a check to throw an exception when initializing Bitcoin::Key if c…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-04-02T01:33:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "479b26b42e312ae6f7bd76ce117ccc2c505fb7a2",
"body": null,
"is_bot": false,
"headline": "Switch silent payment addr to bech32 gem",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-03-26T07:43:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c24dbba9036c58e54c84c0521271cd29b22f87f5",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.8.1",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-03-18T01:02:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9642c098a7755e23c062ce42c996caa17d8eb3f8",
"body": null,
"is_bot": false,
"headline": "Fix typo",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-03-16T08:15:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aceb23f77f1f703bf59a7dfca524ba93d3803639",
"body": null,
"is_bot": false,
"headline": "Remove json_pure dependency",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-03-10T06:38:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20e6982895f6091e793b5232210b59d8b2c4183b",
"body": null,
"is_bot": false,
"headline": "Add logger dependency to fix warning",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-02-28T04:41:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed918270389ba9a9814d8afb21aca7f1169a9a82",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.8.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-02-03T05:09:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d44ec2b801c0c8785932e1f5af4f1e392ceb0e0",
"body": null,
"is_bot": false,
"headline": "Support ruby 3.4",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2025-02-03T04:35:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d5a559d343b43d3f50b74b4e85923ec3a2ffd92",
"body": null,
"is_bot": false,
"headline": "Remove ffi dependency since it is included in secp256k1rb",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-18T04:15:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ef40f1415d007cd66280d04d8acb23731c7d46b",
"body": "…24#v2_ecdh",
"is_bot": false,
"headline": "Fix a bug where C extensions were not being executed in Bitcoin::BIP3…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-14T07:24:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3d85f6aa07cdd6737d5032b47cee073bec61653",
"body": "…ature",
"is_bot": false,
"headline": "Remove recover id from arguments when recovering public key from sign…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-13T05:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eeb14f41d3030e782def542f77a213243b4603f",
"body": null,
"is_bot": false,
"headline": "Separate secp256k1 library calls into external gem",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-13T05:55:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8578bb601c8c0e52409e272fc72a72071288ebbc",
"body": null,
"is_bot": false,
"headline": "Add gems outside the standard library",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-12T07:49:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef7a499a324f63064a44122e1849c520c63a82d1",
"body": "…Parser was removed from 2.8.0",
"is_bot": false,
"headline": "Update json_pure version to fix error that occurred when JSON::Pure::…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-11T06:40:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fefe66a5a3d1187f72edb4eeaae9797883f623e",
"body": null,
"is_bot": false,
"headline": "Move base64 require",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-11-11T06:00:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98acd6293fa2c4d948aa674f636c80ddeb4dbdb1",
"body": null,
"is_bot": false,
"headline": "Add testnet4 configuration",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-09-04T00:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59a2402cfd84f1a8919acfa55866258cfa062e95",
"body": null,
"is_bot": false,
"headline": "Add testnet4 configuration",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-09-03T08:51:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "958f843cb3be90a9a606f830242f6cb0b203a0d2",
"body": null,
"is_bot": false,
"headline": "Update dns seed and fix bip34 height",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-09-03T08:48:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce54672edd597dd05aaf014edeeb7f75038bc528",
"body": "…fy_message",
"is_bot": false,
"headline": "Support BIP-322 full scheme verification in Bitcoin::MessageSign#veri…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-21T07:53:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "112e9eff04bc9f2c0fdf31f8e6b872ffbb20843f",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.7.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-17T07:36:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0223415fd83e0339642422cfbb99d62b8fbdb859",
"body": "…ck was always true",
"is_bot": false,
"headline": "Fix a bug in Bitcoin::MessageSign#verify_message where the BIP322 che…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-17T07:18:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "433c2387836e8ded60affd17876422a9e5fb92b0",
"body": null,
"is_bot": false,
"headline": "Add Bitcoin::Block#create_genesis",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-09T05:26:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b62492da2e58565fe0370cf9943281730affea1",
"body": null,
"is_bot": false,
"headline": "Add arguments type check",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-09T02:24:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46f0f36e9181e7a74d1be220a5c35193d48ab938",
"body": null,
"is_bot": false,
"headline": "Fix ci error",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-03T08:24:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6375c412a71f7e4f20e97c86bac490585eaf2a1b",
"body": "…Witness#parse_from_payload",
"is_bot": false,
"headline": "Fix an exception occurring when specifying an empty payload in Script…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-08-03T07:17:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab0913ec0de34cd5612235469587e458a073d78f",
"body": null,
"is_bot": false,
"headline": "Add silentpayment module",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-30T06:55:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e34aa1f980e2a89b54ed103fef2b85278c94c664",
"body": null,
"is_bot": false,
"headline": "Add Bitcoin::SilentPayment::Addr",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-30T06:51:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1164a77f10f759cde1460891eb74bf45df7c646b",
"body": null,
"is_bot": false,
"headline": "Add Bitcoin::Descriptor::KeyExpression#extracted_key",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-14T05:10:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f72a450f6a80d549da0d732213ae95db8306ece",
"body": null,
"is_bot": false,
"headline": "Implement rawtr() descriptor",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-11T06:36:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02f3ae605db3fdf2b39acc31f89fadd321aff38f",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.6.0",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-09T07:08:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "301534c23eb841975211df08737d317213533baf",
"body": null,
"is_bot": false,
"headline": "Add descriptor wiki link",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-09T07:00:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63037460932a6412763e4747cf92298106ec5157",
"body": null,
"is_bot": false,
"headline": "Add descriptor description",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-09T06:59:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "099fc1579926d06da18341e1284c7de70528ffca",
"body": null,
"is_bot": false,
"headline": "Implements multi_a and sortedmulti_a",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-09T05:50:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad34f28fcaa9d1e178a3431e4d871eb80f43db8f",
"body": null,
"is_bot": false,
"headline": "Implement #to_s and parse logic for tr()",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-08T07:52:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63c8194543f05e4e49f16dd0f64382d5c640e2ba",
"body": null,
"is_bot": false,
"headline": "Implement tr() descriptor",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-08T06:20:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e8ce3c46a2bbe7cc7ed64a2b9d20604075ebd44",
"body": null,
"is_bot": false,
"headline": "Remove unused method",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-08T01:20:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43688ca900c47d2b73b2e73857faa7b31c878f57",
"body": "…nly_pubkey",
"is_bot": false,
"headline": "Fixed to set key_type to :p2tr when generated by Bitcoin::Key#from_xo…",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-07T06:37:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19a8b6d1870dbb1f6f341270ff6a17e9a7ccd002",
"body": "…Bitcoin::Key from String",
"is_bot": false,
"headline": "Change Bitcoin::Descriptor::Expression#extract_pubkey return type to …",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-06T08:27:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4bac156c0e9c9406dca3413515570fc74a1ab459",
"body": null,
"is_bot": false,
"headline": "Implements raw() and hex() descriptor specified by BIP-385",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-04T07:20:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dbc76be74b29d7eef4948d0942f1182ca108366",
"body": null,
"is_bot": false,
"headline": "Add descriptor#to_s(checksum: true)",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-04T06:30:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "671a72bf4d057801d8749552f8656a39f57c73c6",
"body": null,
"is_bot": false,
"headline": "Add BIP-384 test vector",
"author_name": "azuchi",
"author_login": "azuchi",
"committed_at": "2024-07-04T05:07:22Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 23,
"commits_last_year": 52,
"latest_release_at": "2026-02-07T07:03:44Z",
"latest_release_tag": "v1.12.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 18,
"days_since_latest_release": 170,
"mean_days_between_releases": 64.2
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 50,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "bitcoinrb",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/bitcoinrb",
"is_deprecated": false,
"latest_version": "1.12.1",
"repository_url": "https://github.com/chaintope/bitcoinrb",
"versions_count": 47,
"total_downloads": 150231,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2017-08-25T01:59:07.283000Z",
"latest_published_at": "2026-07-27T09:25:34.163000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 20,
"stars": 67,
"watchers": 9,
"fork_history": {
"days": [
{
"date": "2017-08-08",
"count": 1
},
{
"date": "2018-02-16",
"count": 1
},
{
"date": "2018-12-20",
"count": 1
},
{
"date": "2018-12-23",
"count": 1
},
{
"date": "2019-01-16",
"count": 1
},
{
"date": "2019-05-14",
"count": 1
},
{
"date": "2019-08-25",
"count": 1
},
{
"date": "2019-11-05",
"count": 1
},
{
"date": "2020-01-07",
"count": 1
},
{
"date": "2020-01-14",
"count": 1
},
{
"date": "2021-02-08",
"count": 1
},
{
"date": "2021-03-22",
"count": 1
},
{
"date": "2021-12-16",
"count": 1
},
{
"date": "2023-08-22",
"count": 1
},
{
"date": "2024-01-10",
"count": 1
},
{
"date": "2024-03-05",
"count": 1
},
{
"date": "2024-04-14",
"count": 1
},
{
"date": "2024-06-18",
"count": 1
},
{
"date": "2025-07-30",
"count": 1
},
{
"date": "2026-02-05",
"count": 1
}
],
"complete": true,
"collected": 20,
"total_forks": 20
},
"star_history": null,
"open_issues_and_prs": 1
},
"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": 128985,
"source_files_sampled": 235,
"oversized_source_files": 2,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Gemfile"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 3,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 17,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [
{
"name": "parallel_tests",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "leveldb-native",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "bundler",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rake",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": ">= 12.3.3"
},
{
"name": "rspec",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": "~> 3.0"
},
{
"name": "timecop",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "webmock",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": ">= 3.11.1"
},
{
"name": "parallel",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": ">= 1.20.1"
},
{
"name": "csv",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": "~> 3.3"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "bundler",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "csv",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "leveldb-native",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "parallel",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "parallel_tests",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rake",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rspec",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "timecop",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "webmock",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "base32",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "base64",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "bech32",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "bip-schnorr",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "dnsruby",
"direct": false,
"version": "1.73.0",
"ecosystem": "rubygems"
},
{
"name": "ecdsa_ext",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "logger",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "merkle",
"direct": false,
"version": "0.3.0",
"ecosystem": "rubygems"
},
{
"name": "murmurhash3",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "secp256k1rb",
"direct": false,
"version": "0.1.1",
"ecosystem": "rubygems"
},
{
"name": "siphash",
"direct": false,
"version": null,
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 20,
"direct_count": 9,
"indirect_count": 11
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 42,
"open_issues": 1,
"closed_ratio": 0.969,
"closed_issues": 31,
"closed_unmerged_prs": 3
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "azuchi",
"commits": 464,
"avatar_url": "https://avatars.githubusercontent.com/u/1539047?v=4"
},
{
"type": "User",
"login": "Yamaguchi",
"commits": 65,
"avatar_url": "https://avatars.githubusercontent.com/u/220267?v=4"
},
{
"type": "User",
"login": "mike-ct",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/50609964?v=4"
},
{
"type": "User",
"login": "Takeshi-Y",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/1701264?v=4"
},
{
"type": "User",
"login": "bterkuile",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/202443?v=4"
},
{
"type": "User",
"login": "rantan",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/134133?v=4"
},
{
"type": "User",
"login": "quanon",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1762741?v=4"
},
{
"type": "User",
"login": "fryota142",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/45581894?v=4"
},
{
"type": "User",
"login": "pool2win",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/78231905?v=4"
}
],
"contributors_sampled": 9,
"top_contributor_share": 0.845
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ruby.yml"
],
"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": 9,
"reason": "binaries present in source code",
"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": null,
"reason": "no pull request found",
"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 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"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": 6,
"reason": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"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": "no SAST tool detected",
"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": "111b7ed7811789fc9acd913344f6b64b4e251e32",
"ran_at": "2026-07-27T09:31:10Z",
"aggregate_score": 3.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-27T09:20:27Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2024-06-20T14:21:58Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 61,
"created_at": "2021-10-18T13:50:02Z",
"last_comment_at": "2021-10-19T01:45:40Z",
"last_comment_author": "ShigeichiroYamasaki"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/chaintope/bitcoinrb",
"host": "github.com",
"name": "bitcoinrb",
"owner": "chaintope"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"security": 49,
"vitality": 75,
"community": 58,
"governance": 66,
"engineering": 60
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 75,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"commits_last_year": 52,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 18
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "18/52 weeks with commits",
"points": 12.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 18
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "52 commits in the last year",
"points": 15.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 52
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"points": 6,
"status": "partial",
"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": 82,
"inputs": {
"releases_count": 23,
"latest_release_tag": "v1.12.0",
"releases_from_tags": false,
"days_since_latest_release": 170,
"mean_days_between_releases": 64.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "23 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 23
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 170 days ago",
"points": 27,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 170
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~64.2 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 64.2
}
}
],
"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": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 58,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"forks": 20,
"stars": 67,
"watchers": 9,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "67 stars",
"points": 29.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 67
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "20 forks",
"points": 10.7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 20
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "9 watchers",
"points": 5,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 9
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"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
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 67,
"inputs": {
"packages": [
"bitcoinrb"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 150231,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "150,231 downloads all-time across rubygems",
"points": 53.8,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 150231,
"ecosystems": "rubygems"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 66,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 31,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 9,
"top_contributor_share": 0.845
},
"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 84% of commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 84
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "9 contributors",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 9
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 81,
"inputs": {
"merged_prs": 42,
"open_issues": 1,
"closed_issues": 31,
"issue_closed_ratio": 0.969,
"closed_unmerged_prs": 3
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "97% of issues closed",
"points": 45.3,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 97
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "42/45 decided PRs merged",
"points": 35.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 42,
"decided": 45
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"followers": 15,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "chaintope",
"public_repos": 63,
"account_age_days": 3203
},
"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": "15 followers of chaintope",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 15,
"login": "chaintope"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "63 public repos, account ~8 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 63
}
},
{
"code": "account_age_years",
"params": {
"years": 8
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"bitcoinrb"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on rubygems",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "rubygems"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "47 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 47
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 60,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"bitcoin",
"blockchain",
"ruby"
],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"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": 49,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 3.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6.8,
"status": "partial",
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"points": 4.5,
"status": "partial",
"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": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 3 resolved dependencies against OSV; 17 could not be assessed (no resolved version, an unsupported ecosystem, or beyond the reported package list). This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 3
}
},
{
"code": "advisories_unassessed",
"params": {
"count": 17
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 3,
"unassessed_packages": 17,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 3,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "critical",
"name": "AI Readiness",
"value": 22,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 2,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.03,
"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": "3 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 1.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 3,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.02,
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "2 of the last 100 commits agent-authored or agent-credited",
"points": 4,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"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": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"primary_language": "Ruby",
"largest_source_bytes": 128985,
"source_files_sampled": 235,
"oversized_source_files": 2
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Ruby without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Ruby"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "2/235 source files over 60KB",
"points": 54.5,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 235,
"oversized": 2
}
}
],
"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-27T09:31:22.670868Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/c/chaintope/bitcoinrb.svg",
"full_name": "chaintope/bitcoinrb",
"license_state": "standard",
"license_spdx": "MIT"
}