Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"c",
"codegen",
"mocking",
"testing"
],
"is_fork": false,
"size_kb": 4338,
"has_wiki": false,
"homepage": "http://throwtheswitch.org",
"languages": {
"C": 1066724,
"Tcl": 143369,
"Ruby": 501900,
"Meson": 772,
"Pascal": 159715,
"Assembly": 12169,
"Batchfile": 7535
},
"pushed_at": "2026-07-20T21:34:24Z",
"created_at": "2012-01-26T19:51:32Z",
"owner_type": "Organization",
"updated_at": "2026-07-20T21:34:48Z",
"description": "Mock/stub generator for C",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "C",
"significant_languages": [
"C",
"Ruby"
]
},
"owner": {
"blog": "https://throwtheswitch.org",
"name": "Throw The Switch",
"type": "Organization",
"login": "ThrowTheSwitch",
"company": null,
"location": "United States of America",
"followers": 323,
"avatar_url": "https://avatars.githubusercontent.com/u/1049138?v=4",
"created_at": "2011-09-14T03:06:41Z",
"is_verified": null,
"public_repos": 14,
"account_age_days": 5430
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v2.7.0",
"kind": "minor",
"published_at": "2026-07-16T15:11:03Z"
},
{
"tag": "v2.6.0",
"kind": "minor",
"published_at": "2025-01-01T17:19:00Z"
},
{
"tag": "v2.5.3",
"kind": "patch",
"published_at": "2021-01-29T16:00:14Z"
},
{
"tag": "v2.5.2",
"kind": "patch",
"published_at": "2020-05-03T20:16:30Z"
},
{
"tag": "v2.5.1",
"kind": "patch",
"published_at": "2020-04-07T12:42:39Z"
},
{
"tag": "v2.5.0",
"kind": "minor",
"published_at": "2019-10-31T12:36:00Z"
},
{
"tag": "v2.4.6",
"kind": "patch",
"published_at": "2017-11-14T21:34:44Z"
},
{
"tag": "v2.4.5",
"kind": "patch",
"published_at": "2017-09-12T11:29:17Z"
},
{
"tag": "v2.4.4",
"kind": "patch",
"published_at": "2017-04-25T12:53:28Z"
},
{
"tag": "v2.4.3",
"kind": "patch",
"published_at": "2016-10-28T03:31:55Z"
}
],
"recent_commits": [
{
"oid": "cdd115dcb9edbd9d49456af622e20fb9ea968ea4",
"body": "Enhance changelog with issue links",
"is_bot": false,
"headline": "Merge pull request #537 from swaldhoer/swaldhoer-patch-1",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-20T21:34:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76fc98d2e0afcbb21529fcafc47f936116d4300d",
"body": null,
"is_bot": false,
"headline": "forgot two files",
"author_name": "swaldhoer",
"author_login": "swaldhoer",
"committed_at": "2026-07-17T10:18:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6ea1aead8081c4b71fa52531e89c633349f1027",
"body": null,
"is_bot": false,
"headline": "Enhance changelog with issue links",
"author_name": "swaldhoer",
"author_login": "swaldhoer",
"committed_at": "2026-07-17T10:16:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ea503340b1d3fdc0f2bcaf69273ba0160ec83af",
"body": "Fix CMock_Guts_MemBytesCapacity() integer underflow",
"is_bot": false,
"headline": "Merge pull request #536 from 94xhn/fix-membytescapacity-underflow",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-16T14:49:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28e03f7b71d4dae85fe3e2f2ddb600fa43c743e0",
"body": null,
"is_bot": false,
"headline": "pull unity fix.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-16T03:44:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52367d7e1f6308f00c2f5e48b73e7503bf72632a",
"body": "… upcoming release.",
"is_bot": false,
"headline": "Update to latest Unity. Add latest contributions to release notes for…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-15T21:25:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c30e6bb022faf6923f93e6414920bf6e182a25ff",
"body": "CMock_Guts_MemBytesCapacity() returned sizeof(CMock_Guts_Buffer), which\nis the size of the pointer variable itself (not the buffer it points\nto), minus CMOCK_MEM_ALIGN_SIZE. On a typical 64-bit build this is\n8 - CMOCK_MEM_ALIGN_SIZE, which underflows to a huge garbage value\nwhenever CMOCK_MEM_ALIGN_\n[…]\nracks the real\nbuffer size (including growth via realloc under CMOCK_MEM_DYNAMIC).\nThis makes MemBytesCapacity() == MemBytesUsed() + MemBytesFree() by\nconstruction, matching the two sibling accessors.",
"is_bot": false,
"headline": "Fix CMock_Guts_MemBytesCapacity() integer underflow",
"author_name": "94xhn",
"author_login": "94xhn",
"committed_at": "2026-07-14T21:17:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "374c7569d15e0282c0920bea5ea09baa1d5f61d2",
"body": null,
"is_bot": false,
"headline": "Bump c_exception",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-08T21:10:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcddcc19b510f3366817fb670d1fade3ce94fc94",
"body": null,
"is_bot": false,
"headline": "Add ability to specify random seed value in tests.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-08T20:00:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f57e036c006ab7c94b71e65939e9bfc15119a9b2",
"body": null,
"is_bot": false,
"headline": "More fixing of warnings after noticing clang was skipping some tests.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-08T18:29:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bd4d94c4c1feab9b345f378055ee66ab4035e2c",
"body": null,
"is_bot": false,
"headline": "Fix warnings between clang and gcc usage",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-08T17:22:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b732cb091ed35cfa17f3c1f26af1804454f6c1cf",
"body": null,
"is_bot": false,
"headline": "Fix CI issue",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-07T21:55:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5f89062a0385726393df0281cf3aa12d1481a81",
"body": "Clean up some warnings. Purposefully accept them in tests where we're verifying it still mocks when those issues exist.",
"is_bot": false,
"headline": "Update to latest Unity, raising warning / error level in the process.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-07T21:08:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85ed528e68eba36a1269f6c97899d42c1da24784",
"body": null,
"is_bot": false,
"headline": "Bump version and change log.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T18:41:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6560abf79212be20171246767dea5143c961690d",
"body": "Implement broader testing across platforms.",
"is_bot": false,
"headline": "Merge pull request #535 from ThrowTheSwitch/refactor/actions",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T18:14:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a737db33eb559394d8a976c75d57b3823584175e",
"body": null,
"is_bot": false,
"headline": "Another tweak to regex handling in parser for performance purposes.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T18:09:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "922ebfa699c848b0f383ff2f6edb056f2afa4b66",
"body": null,
"is_bot": false,
"headline": "Whoops. Fixed last issue.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T14:41:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "847e87e71e7056132f4d4e27c6cf60c43384edcf",
"body": "…is too slow.\n\nFurther tidying of ci.",
"is_bot": false,
"headline": "Fall back to iterative brace removal because I suspect regex version …",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T14:27:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af43eb87b1fceb701e2427a1cea2dfea59131ecd",
"body": null,
"is_bot": false,
"headline": "streamline function declaration regex.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T11:48:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a412dfccc8e580786a856d48f467ec9bd8ac76c",
"body": null,
"is_bot": false,
"headline": "More tweaking of flow.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T11:14:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf10a5bc8a5bed12b60d50b72e3105cc22b1a684",
"body": null,
"is_bot": false,
"headline": "Further refine testing process for speed and coverage.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T02:24:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "895d066157083c01df446b901487a43979039a3d",
"body": null,
"is_bot": false,
"headline": "Change the exit code for valgrind so that we can detect issues.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-07-01T02:15:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61f6f2991b9a69bad68bbb594cc62faad77620e9",
"body": "…Mock.",
"is_bot": false,
"headline": "Add single instance of a valgrind test to verify memory handling in C…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T20:56:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff87d4c08a2c96165b7f7ca534c3973ba20ec583",
"body": "Improve some docs.",
"is_bot": false,
"headline": "Fix some issues that windows noticed with volatile handling.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T20:11:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d745ce8f509c87b6bb27bb6a44aea0c04def9c0",
"body": null,
"is_bot": false,
"headline": "disable color handling when windows testing.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T19:20:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aedb21638f797f8d4859e10baecdec51290dfbd2",
"body": null,
"is_bot": false,
"headline": "Implement broader testing across platforms.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T18:53:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c3a33617f8a8ebb7d4e776a5528bdfb9df3a390",
"body": null,
"is_bot": false,
"headline": "Add documentation for last feature",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T17:36:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b523b568efda63bba3835abb3548bf0b579e2ba",
"body": "…ns (Implements #403)",
"is_bot": false,
"headline": "Add ability to monitor mock behaviors across all mocks and expectatio…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T17:31:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "125fcdef3c0ef99d083bd36054890ee0d8c47a31",
"body": null,
"is_bot": false,
"headline": "Fix format of latest regex.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T15:28:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1724a4d0a23d4090c82f7ba0f3660e2005f28c22",
"body": "…a function.",
"is_bot": false,
"headline": "Fixed another type of function pointer getting falsely identified as …",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T15:17:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a25354f65922a1f7062fd468f99614ab2bf3530e",
"body": null,
"is_bot": false,
"headline": "Improve alignment determination (Fixes #178)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T14:59:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebdc8ee128682ec02499496a58ab9de76b3b9c67",
"body": "…s #132)",
"is_bot": false,
"headline": "Improved the way stubs and callbacks deal with call counts (Implement…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T14:15:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd922f17b02b7a6a59d3f008fe648b7251dc82ce",
"body": "…ed with function prototypes (Fixes #128)",
"is_bot": false,
"headline": "Automatically strip out compile-time assertions so they're not confus…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-30T13:50:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b01cfdc531f50bbd2f1e1fde9ee4a6b0a9badb68",
"body": null,
"is_bot": false,
"headline": "Improve documentation for custom types (#124)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-29T21:08:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38dc454826d4709940ef16d73677cdb33285eaf8",
"body": "…cessing.",
"is_bot": false,
"headline": "Support basic #if 0 and #if 1 handling... not more complicated prepro…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-29T20:48:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e765084123231df7adb9baea85346f76555e204",
"body": null,
"is_bot": false,
"headline": "Use correct pointer macro.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-29T20:10:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2ac5c2c6327e3a098bb079f6ba7cf0a33400c4b",
"body": null,
"is_bot": false,
"headline": "Improve handling of volatile keyword (Fixes #110 and #135)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-29T20:02:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3541b31c56453fc7a53af4a65caf2260a769c86a",
"body": "Bugfix/interactions",
"is_bot": false,
"headline": "Merge pull request #534 from ThrowTheSwitch/bugfix/interactions",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T19:36:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df5ba4f2fc0181620c6b843e6b312d3beafcef72",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' into bugfix/interactions",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T19:28:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d141b59324648bcf6f3e32a77f0ec25bdd78320b",
"body": "[typo] Fix misspelling in temperature test name",
"is_bot": false,
"headline": "Merge pull request #533 from ptrbman/fix-temperature-typo",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T19:28:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b992f1f2e9e49ead26487b8ff1335286b3fac2cf",
"body": "…rify #67)",
"is_bot": false,
"headline": "Verify that failures can be thrown from tearDown without crashing (Ve…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T19:25:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e851a39d58e5678d4bca1e12ef85302cb37adb0f",
"body": "…eak parsing (Fixes #51)",
"is_bot": false,
"headline": "Make sure that calling conventions within the argument list do not br…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T18:44:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc34a9000c810d744403cac7c1a3129301320d71",
"body": null,
"is_bot": false,
"headline": "Add validation that last commit also fixed #94",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T18:29:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55dd1f1ce5b39b5283f3dd078976d4a7fb0750bc",
"body": "…Fix #399)",
"is_bot": false,
"headline": "Protect against function-looking pointers inside struct definitions (…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T18:22:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e8d1f93ef98b9180befb03383279ece32c33d97",
"body": "…ot (Fixed #349)",
"is_bot": false,
"headline": "Fixed handling of pointers that look like function pointers but are n…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T17:00:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "783bbde34d1d9342b997bc2dde74b9b055d06403",
"body": "… #484)",
"is_bot": false,
"headline": "Verify that const qualifiers are retained with custom types (verifies…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T16:17:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92debabbf07081d54a777128e4456ade9db3f1cf",
"body": "…ointer data to fix #11 & #244.",
"is_bot": false,
"headline": "Add CMOCK_MEMCPY and CMOCK_MEMSET and refactor internal handling of p…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T15:56:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d20d18e75cd09c32f8b9c04635c4149317bc63a9",
"body": "…perly (Verifies #485)",
"is_bot": false,
"headline": "Verify that our handling of const and pointers now preserve order pro…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T15:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f74197056b2ecd7d9b433735adb8254a9ad7a5a",
"body": null,
"is_bot": false,
"headline": "The ReturnThrPtr plugin now works even when using Ignore (Fix #61, #225)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-26T14:15:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e048b07ff88939c83a5ac7cb42ff76f307ea965",
"body": "Rename testShouldInitializeTemeratureToInvalidValue to\ntestShouldInitializeTemperatureToInvalidValue.",
"is_bot": false,
"headline": "[typo] Fix misspelling in temperature test name",
"author_name": "Peter Backeman",
"author_login": "ptrbman",
"committed_at": "2026-06-22T20:21:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d482f560666f7438aa78486af6dad7998592e1e5",
"body": null,
"is_bot": false,
"headline": "Protect against more function-looking macros (Fixes#502)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T19:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ef72ca8544171dc213a41c6a865fcdb85c68302",
"body": null,
"is_bot": false,
"headline": "Protect against function-looking structs (Fixes #513)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T19:10:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85058d1407306fe69080f6e9e03562d1c8d93b0b",
"body": null,
"is_bot": false,
"headline": "Fixed skeleton path handling, etc (#488)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T18:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "411f6852f9f5660e5710afa291b9c99a2f56b4ac",
"body": null,
"is_bot": false,
"headline": "Add documentation to avoid problems like #518 and #521.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T17:50:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "383c43246c3539e6754c3d6763e0a6b6096897c3",
"body": "Feature/better arrays",
"is_bot": false,
"headline": "Merge pull request #531 from ThrowTheSwitch/feature/better_arrays",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T14:53:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "990954c548c8131fbbc15578e6c0f9f2f90a6caf",
"body": null,
"is_bot": false,
"headline": "Made the last two features actually cooperate.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-19T00:25:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de4e53cd7b929dea98d94e63fcab04d6421f7a8e",
"body": "…they are treated like strings everywhere else. (Fixes #262 and #177)",
"is_bot": false,
"headline": "The array plugin can now compare strings as byte arrays, even though …",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-18T23:56:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84705b2e8478e35e404067690df8f5fef7f63cae",
"body": null,
"is_bot": false,
"headline": "Rename some misnamed tests.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-18T23:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "336a52bf57fb92124501cd9a11378a242d5c7b52",
"body": null,
"is_bot": false,
"headline": "Verify #463 isn't currently an error, and won't return.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-18T22:49:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aaf9559a57cd151d92d852221a2180290273e7a5",
"body": "Add fallback _ExpectWithArrayExtended when this happens for flexibility.\nFixes issue #520",
"is_bot": false,
"headline": "Finish better identification of array pointer/len pairs.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-18T20:34:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c1f88fb82c75ea03c43cc8cf8a3b0939734c6c4",
"body": "…ointers and lengths",
"is_bot": false,
"headline": "Improve the automatic detection of argument pairs related to arrays/p…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-18T16:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0207f380043d58a15828b522e48751f0597ad8d",
"body": null,
"is_bot": false,
"headline": "void* handling within the array plugin defaults to bytes.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-17T01:41:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bad95c5f5412b7964bdb3211ceb4c8c45de53c13",
"body": "…ives more information. (Fixes #400)",
"is_bot": false,
"headline": "Handle void pointers as pointer comparisons unless the array plugin g…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-17T01:34:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f756eeaf554edee2c906fac358c6ab3501414836",
"body": null,
"is_bot": false,
"headline": "Fix handling of array of pointers (Fixes issue #450)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T22:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82ef7e53cf91e4a58934e9dec2ce5da69b05968a",
"body": null,
"is_bot": false,
"headline": "Fix handling of variable-length-arrays (fixed issue #479)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T21:39:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af610445b3ff91b53d4b7031f4b15f17525caf1a",
"body": null,
"is_bot": false,
"headline": "flesh out tests for arrays and pointers and separate.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T21:02:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0de150635da0e6d373a2fb279ab07d70e30e5c3",
"body": "…arrays.",
"is_bot": false,
"headline": "Improve the array handling by making the public interfaces still use …",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T20:18:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d4ddfdc4cd7fab87b5b45b5799ea3a5320024e2",
"body": null,
"is_bot": false,
"headline": "Fix const pointer handling in return values",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T19:37:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29ef16e54b3b4732bb67365c3fee00f712aac7fc",
"body": "…then separate tracking.\n\nRemove yml files that are no longer needed.",
"is_bot": false,
"headline": "Tidy handling of system tests to depend more on the defines involved …",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-06-16T19:20:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "725e2d90efcada7f1ed1f3702cef5e5766444ecd",
"body": null,
"is_bot": false,
"headline": "cleanup the way defines are handled in tests.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-29T20:28:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c06bbe791c9c4d7c58d27c531cab035666c1f134",
"body": "begin to automatically reject tests based on criteria.",
"is_bot": false,
"headline": "run examples fully and pass optional yaml file to them.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-29T20:09:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c40a6e08c69b99c68416def593d7b621199e00b5",
"body": null,
"is_bot": false,
"headline": "Refactored self-tests to use ceedling-formatted tools files",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-28T20:48:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f0296eb0a9365bbc05c0002374d946da27ae4bd",
"body": null,
"is_bot": false,
"headline": "Fix naming to avoid that extra colon for parsing.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-22T18:41:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "165de30b7d4dbb6498c4c926b6e319c0f73a1bb3",
"body": null,
"is_bot": false,
"headline": "Bump to latest Unity",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-22T18:17:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04b5b21ffdc098978e10bab1bd23ab3056b02fb8",
"body": null,
"is_bot": false,
"headline": "Give system tests more verbose output during testing.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-22T17:35:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f20c59b0295835a83a94a68e48646548691ea833",
"body": null,
"is_bot": false,
"headline": "Make the output more verbose for self-tests.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-22T15:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a9e3afe147a0cb5cd7613ff5eef19cb7b33f6fa",
"body": "…ointless middleware scripts.",
"is_bot": false,
"headline": "update the create_makefile script to be independent and not require p…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-18T21:41:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13da43dc958f224b01e7b43fe2feed560bc185a6",
"body": "Refactor/inherit targets",
"is_bot": false,
"headline": "Merge pull request #530 from ThrowTheSwitch/refactor/inherit_targets",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-18T20:42:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "469fe271f5e76ce98db29ea47cbea2ad69e7747a",
"body": null,
"is_bot": false,
"headline": "Add missing type to parsing test.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-18T20:38:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a99deea71a6e9d477d27c3b8dc2de02ecf3076fb",
"body": null,
"is_bot": false,
"headline": "Refactor test reporting for better final summary.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-18T20:06:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be420840b3d65fe7ed931b2c2254c4a1abf1cbfe",
"body": null,
"is_bot": false,
"headline": "make the cmock modifier files optional as 2nd argument in config",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-17T03:40:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d83c7017e0f5dbf0ac2324e01a2770572b61a3db",
"body": null,
"is_bot": false,
"headline": "Refactor cmock tests to identify the closest matching cmock overlay",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-17T03:02:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c6f42ae4508225b9ebb54c7c4131ae8da292b5f",
"body": null,
"is_bot": false,
"headline": "Tiny tweaks to prepare for next phase",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-17T02:48:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7c3f73b21497f7c0e6c6941a19c883df9de27c8",
"body": null,
"is_bot": false,
"headline": "Tweak naming to fall-through to the correct target",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-16T18:48:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7689b8cc39a179668bd6d734187ca28e820a3ff",
"body": null,
"is_bot": false,
"headline": "continue (update the styling of the targets)",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-16T18:36:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "feda84f23beddf9b70374f9c1753405134ce3356",
"body": null,
"is_bot": false,
"headline": "continuing",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-16T03:53:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d99f0f51d778fc5bae01a7556b8cd545e1d909d",
"body": "…re refactoring to pull project-specific config",
"is_bot": false,
"headline": "Start refactoring targets to use those coming from unity. so far we a…",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-05-16T03:31:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9900e4c5f5b61f4b2ae027cd91fdaa75e14b2112",
"body": null,
"is_bot": false,
"headline": "pull in latest unity. bump version",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-03-21T00:17:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ecd7e7154c7b05e1050c57a7a0de9957fb2a2564",
"body": "Fix links to other Markdown documentation",
"is_bot": false,
"headline": "Merge pull request #527 from sullivanmj/patch-1",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-03-08T20:15:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abcd75ffbc7f048e55a0cdd47e7eedf6ed8304d1",
"body": null,
"is_bot": false,
"headline": "Fix links to other Markdown documentation",
"author_name": "Matt Sullivan",
"author_login": "sullivanmj",
"committed_at": "2026-03-05T15:24:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f368744ca5a203baa273d8de909f694ffa9fed8c",
"body": null,
"is_bot": false,
"headline": "Updates for the new year",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2026-01-23T16:19:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94dcd39765859fb681d500307bbe1b5da4851df2",
"body": null,
"is_bot": false,
"headline": "move to latest unity.",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2025-07-09T21:02:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75c3f3c7b3e936008bbf6dfe8602af4a0d32b603",
"body": null,
"is_bot": false,
"headline": "minor tweaks",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2025-07-09T21:02:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2671ad7046d582ec9116e9ee3050c318f1aac63a",
"body": "Fix compiler error when compiling with `-Wcast-qual` and mocking const function arguments",
"is_bot": false,
"headline": "Merge pull request #504 from bal-stan/patch-1",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2025-07-09T20:25:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf9a13a8d4febbcbc444538bb7fef3b0c5523242",
"body": "Add option 'create_error_stubs' (default is 'true')",
"is_bot": false,
"headline": "Merge pull request #508 from rstahn/rstahn-patch-1",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2025-07-09T17:23:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb0b0e06f55282bf3a6941b3382e97722a186193",
"body": "Unset argument detail before calling callback",
"is_bot": false,
"headline": "Fix confusing output when failing within a callback",
"author_name": "Mark VanderVoord",
"author_login": "mvandervoord",
"committed_at": "2025-07-04T14:48:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2bb9086214fd8aefa64a88cc42e3dc1edbe8d958",
"body": null,
"is_bot": false,
"headline": "Unset argument detail before calling callback",
"author_name": "ml-physec",
"author_login": "ml-physec",
"committed_at": "2025-07-04T14:32:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad9ce635c3c30f1f9a331c56583518164ed15433",
"body": "Remove trigger for branch rstahn-patch-1 for final PR",
"is_bot": false,
"headline": "Update main.yml",
"author_name": "Roland Stahn",
"author_login": "rstahn",
"committed_at": "2025-06-13T10:45:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f2a234dcaf9e2c02e743ce048ab97ba4d571aff",
"body": null,
"is_bot": false,
"headline": "Add tests with 'create_error_stubs' set to false",
"author_name": "Roland Stahn",
"author_login": "rstahn",
"committed_at": "2025-06-13T09:35:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "338279285b5549210ae9b299b90ebdcdb1ebe201",
"body": null,
"is_bot": false,
"headline": "Delete test/unit/cmock_generator_plugin_expect_c_test.rb",
"author_name": "Roland Stahn",
"author_login": "rstahn",
"committed_at": "2025-06-13T09:32:27Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 10,
"commits_last_year": 91,
"latest_release_at": "2026-07-16T15:11:03Z",
"latest_release_tag": "v2.7.0",
"releases_from_tags": false,
"days_since_last_push": 6,
"active_weeks_last_year": 12,
"days_since_latest_release": 10,
"mean_days_between_releases": 394.3
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 62,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 300,
"stars": 830,
"watchers": 51,
"fork_history": {
"days": [
{
"date": "2012-08-12",
"count": 1
},
{
"date": "2012-10-03",
"count": 1
},
{
"date": "2012-10-10",
"count": 1
},
{
"date": "2012-10-17",
"count": 1
},
{
"date": "2013-02-06",
"count": 1
},
{
"date": "2013-03-28",
"count": 1
},
{
"date": "2013-04-26",
"count": 1
},
{
"date": "2013-05-09",
"count": 1
},
{
"date": "2013-05-12",
"count": 1
},
{
"date": "2013-06-05",
"count": 1
},
{
"date": "2013-06-28",
"count": 1
},
{
"date": "2014-02-04",
"count": 1
},
{
"date": "2014-02-23",
"count": 1
},
{
"date": "2014-02-24",
"count": 1
},
{
"date": "2014-04-21",
"count": 1
},
{
"date": "2014-05-08",
"count": 1
},
{
"date": "2014-07-02",
"count": 1
},
{
"date": "2014-10-22",
"count": 1
},
{
"date": "2014-11-12",
"count": 1
},
{
"date": "2015-02-05",
"count": 1
},
{
"date": "2015-02-09",
"count": 1
},
{
"date": "2015-02-19",
"count": 1
},
{
"date": "2015-03-30",
"count": 2
},
{
"date": "2015-04-10",
"count": 1
},
{
"date": "2015-04-13",
"count": 1
},
{
"date": "2015-05-21",
"count": 1
},
{
"date": "2015-05-29",
"count": 1
},
{
"date": "2015-06-15",
"count": 1
},
{
"date": "2015-06-25",
"count": 1
},
{
"date": "2015-07-09",
"count": 1
},
{
"date": "2015-07-21",
"count": 1
},
{
"date": "2015-08-17",
"count": 1
},
{
"date": "2015-10-08",
"count": 1
},
{
"date": "2015-11-25",
"count": 1
},
{
"date": "2015-12-07",
"count": 1
},
{
"date": "2015-12-17",
"count": 1
},
{
"date": "2016-01-06",
"count": 1
},
{
"date": "2016-01-07",
"count": 1
},
{
"date": "2016-01-12",
"count": 1
},
{
"date": "2016-01-27",
"count": 1
},
{
"date": "2016-02-11",
"count": 1
},
{
"date": "2016-03-14",
"count": 1
},
{
"date": "2016-03-31",
"count": 1
},
{
"date": "2016-04-11",
"count": 1
},
{
"date": "2016-04-14",
"count": 1
},
{
"date": "2016-04-21",
"count": 1
},
{
"date": "2016-04-28",
"count": 1
},
{
"date": "2016-07-13",
"count": 1
},
{
"date": "2016-07-29",
"count": 1
},
{
"date": "2016-09-16",
"count": 1
},
{
"date": "2016-09-29",
"count": 1
},
{
"date": "2016-11-11",
"count": 1
},
{
"date": "2017-02-02",
"count": 1
},
{
"date": "2017-02-11",
"count": 1
},
{
"date": "2017-02-13",
"count": 1
},
{
"date": "2017-02-16",
"count": 1
},
{
"date": "2017-02-21",
"count": 1
},
{
"date": "2017-03-11",
"count": 1
},
{
"date": "2017-04-02",
"count": 1
},
{
"date": "2017-04-12",
"count": 1
},
{
"date": "2017-04-26",
"count": 1
},
{
"date": "2017-06-16",
"count": 1
},
{
"date": "2017-06-23",
"count": 1
},
{
"date": "2017-08-02",
"count": 2
},
{
"date": "2017-08-10",
"count": 1
},
{
"date": "2017-08-17",
"count": 1
},
{
"date": "2017-08-21",
"count": 1
},
{
"date": "2017-08-25",
"count": 1
},
{
"date": "2017-09-01",
"count": 1
},
{
"date": "2017-09-05",
"count": 1
},
{
"date": "2017-09-11",
"count": 1
},
{
"date": "2017-12-07",
"count": 1
},
{
"date": "2018-02-05",
"count": 1
},
{
"date": "2018-02-07",
"count": 1
},
{
"date": "2018-02-28",
"count": 1
},
{
"date": "2018-03-06",
"count": 1
},
{
"date": "2018-03-08",
"count": 1
},
{
"date": "2018-03-12",
"count": 1
},
{
"date": "2018-03-22",
"count": 1
},
{
"date": "2018-03-29",
"count": 1
},
{
"date": "2018-04-20",
"count": 1
},
{
"date": "2018-05-02",
"count": 1
},
{
"date": "2018-05-03",
"count": 1
},
{
"date": "2018-06-21",
"count": 1
},
{
"date": "2018-08-20",
"count": 1
},
{
"date": "2018-08-24",
"count": 1
},
{
"date": "2018-09-18",
"count": 1
},
{
"date": "2018-10-07",
"count": 1
},
{
"date": "2018-10-11",
"count": 1
},
{
"date": "2018-10-12",
"count": 1
},
{
"date": "2018-11-13",
"count": 1
},
{
"date": "2018-11-14",
"count": 1
},
{
"date": "2018-12-05",
"count": 1
},
{
"date": "2018-12-16",
"count": 1
},
{
"date": "2019-01-07",
"count": 1
},
{
"date": "2019-01-15",
"count": 1
},
{
"date": "2019-01-22",
"count": 1
},
{
"date": "2019-01-28",
"count": 1
},
{
"date": "2019-02-01",
"count": 1
},
{
"date": "2019-02-05",
"count": 1
},
{
"date": "2019-03-01",
"count": 1
},
{
"date": "2019-03-20",
"count": 1
},
{
"date": "2019-03-22",
"count": 1
},
{
"date": "2019-04-15",
"count": 1
},
{
"date": "2019-05-02",
"count": 1
},
{
"date": "2019-05-04",
"count": 1
},
{
"date": "2019-05-15",
"count": 1
},
{
"date": "2019-05-23",
"count": 1
},
{
"date": "2019-06-10",
"count": 1
},
{
"date": "2019-06-15",
"count": 1
},
{
"date": "2019-06-19",
"count": 1
},
{
"date": "2019-07-03",
"count": 2
},
{
"date": "2019-07-09",
"count": 1
},
{
"date": "2019-07-26",
"count": 1
},
{
"date": "2019-08-22",
"count": 1
},
{
"date": "2019-08-30",
"count": 1
},
{
"date": "2019-09-20",
"count": 1
},
{
"date": "2019-09-27",
"count": 1
},
{
"date": "2019-10-11",
"count": 1
},
{
"date": "2019-10-21",
"count": 1
},
{
"date": "2019-11-08",
"count": 2
},
{
"date": "2019-12-23",
"count": 1
},
{
"date": "2020-01-20",
"count": 1
},
{
"date": "2020-02-03",
"count": 1
},
{
"date": "2020-02-09",
"count": 1
},
{
"date": "2020-02-19",
"count": 1
},
{
"date": "2020-02-20",
"count": 1
},
{
"date": "2020-02-26",
"count": 1
},
{
"date": "2020-03-01",
"count": 1
},
{
"date": "2020-03-04",
"count": 1
},
{
"date": "2020-03-27",
"count": 1
},
{
"date": "2020-04-02",
"count": 1
},
{
"date": "2020-04-08",
"count": 1
},
{
"date": "2020-04-09",
"count": 1
},
{
"date": "2020-04-22",
"count": 1
},
{
"date": "2020-05-04",
"count": 1
},
{
"date": "2020-05-25",
"count": 2
},
{
"date": "2020-05-27",
"count": 1
},
{
"date": "2020-06-02",
"count": 1
},
{
"date": "2020-06-04",
"count": 1
},
{
"date": "2020-06-06",
"count": 1
},
{
"date": "2020-08-18",
"count": 1
},
{
"date": "2020-08-25",
"count": 1
},
{
"date": "2020-09-08",
"count": 1
},
{
"date": "2020-10-09",
"count": 1
},
{
"date": "2020-10-23",
"count": 1
},
{
"date": "2020-11-13",
"count": 1
},
{
"date": "2020-12-02",
"count": 1
},
{
"date": "2020-12-14",
"count": 1
},
{
"date": "2020-12-19",
"count": 1
},
{
"date": "2021-01-06",
"count": 1
},
{
"date": "2021-02-10",
"count": 1
},
{
"date": "2021-02-15",
"count": 2
},
{
"date": "2021-02-25",
"count": 1
},
{
"date": "2021-03-14",
"count": 1
},
{
"date": "2021-03-19",
"count": 1
},
{
"date": "2021-03-24",
"count": 1
},
{
"date": "2021-03-28",
"count": 1
},
{
"date": "2021-03-29",
"count": 1
},
{
"date": "2021-03-30",
"count": 1
},
{
"date": "2021-04-20",
"count": 1
},
{
"date": "2021-05-08",
"count": 1
},
{
"date": "2021-05-13",
"count": 1
},
{
"date": "2021-08-27",
"count": 1
},
{
"date": "2021-09-01",
"count": 1
},
{
"date": "2021-09-08",
"count": 1
},
{
"date": "2021-09-12",
"count": 1
},
{
"date": "2021-10-11",
"count": 1
},
{
"date": "2021-10-21",
"count": 1
},
{
"date": "2021-10-22",
"count": 2
},
{
"date": "2021-11-07",
"count": 1
},
{
"date": "2021-11-09",
"count": 1
},
{
"date": "2021-11-27",
"count": 1
},
{
"date": "2021-12-04",
"count": 1
},
{
"date": "2021-12-10",
"count": 1
},
{
"date": "2021-12-17",
"count": 2
},
{
"date": "2022-01-04",
"count": 1
},
{
"date": "2022-01-06",
"count": 1
},
{
"date": "2022-01-16",
"count": 1
},
{
"date": "2022-01-19",
"count": 1
},
{
"date": "2022-01-20",
"count": 1
},
{
"date": "2022-02-02",
"count": 1
},
{
"date": "2022-02-08",
"count": 1
},
{
"date": "2022-02-18",
"count": 1
},
{
"date": "2022-02-21",
"count": 1
},
{
"date": "2022-03-01",
"count": 1
},
{
"date": "2022-03-02",
"count": 1
},
{
"date": "2022-03-16",
"count": 2
},
{
"date": "2022-03-24",
"count": 1
},
{
"date": "2022-03-30",
"count": 1
},
{
"date": "2022-04-06",
"count": 1
},
{
"date": "2022-04-12",
"count": 1
},
{
"date": "2022-04-18",
"count": 1
},
{
"date": "2022-04-22",
"count": 1
},
{
"date": "2022-04-29",
"count": 1
},
{
"date": "2022-04-30",
"count": 1
},
{
"date": "2022-05-03",
"count": 1
},
{
"date": "2022-06-17",
"count": 1
},
{
"date": "2022-06-28",
"count": 1
},
{
"date": "2022-07-07",
"count": 1
},
{
"date": "2022-07-19",
"count": 1
},
{
"date": "2022-07-20",
"count": 1
},
{
"date": "2022-07-25",
"count": 1
},
{
"date": "2022-08-03",
"count": 1
},
{
"date": "2022-08-08",
"count": 2
},
{
"date": "2022-09-07",
"count": 1
},
{
"date": "2022-09-11",
"count": 1
},
{
"date": "2022-09-14",
"count": 1
},
{
"date": "2022-09-27",
"count": 1
},
{
"date": "2022-10-14",
"count": 1
},
{
"date": "2022-10-20",
"count": 1
},
{
"date": "2022-11-01",
"count": 1
},
{
"date": "2022-12-21",
"count": 1
},
{
"date": "2023-01-05",
"count": 1
},
{
"date": "2023-01-12",
"count": 1
},
{
"date": "2023-01-24",
"count": 1
},
{
"date": "2023-02-20",
"count": 1
},
{
"date": "2023-03-01",
"count": 1
},
{
"date": "2023-03-20",
"count": 1
},
{
"date": "2023-04-07",
"count": 1
},
{
"date": "2023-04-18",
"count": 1
},
{
"date": "2023-04-26",
"count": 1
},
{
"date": "2023-04-28",
"count": 1
},
{
"date": "2023-05-19",
"count": 1
},
{
"date": "2023-06-02",
"count": 1
},
{
"date": "2023-06-05",
"count": 1
},
{
"date": "2023-07-09",
"count": 1
},
{
"date": "2023-07-11",
"count": 1
},
{
"date": "2023-07-18",
"count": 1
},
{
"date": "2023-08-14",
"count": 1
},
{
"date": "2023-08-31",
"count": 1
},
{
"date": "2023-10-01",
"count": 1
},
{
"date": "2023-10-21",
"count": 1
},
{
"date": "2023-10-26",
"count": 1
},
{
"date": "2023-11-27",
"count": 1
},
{
"date": "2023-12-08",
"count": 1
},
{
"date": "2024-01-13",
"count": 1
},
{
"date": "2024-02-06",
"count": 1
},
{
"date": "2024-02-26",
"count": 1
},
{
"date": "2024-02-28",
"count": 1
},
{
"date": "2024-03-01",
"count": 1
},
{
"date": "2024-03-13",
"count": 1
},
{
"date": "2024-03-15",
"count": 1
},
{
"date": "2024-03-17",
"count": 1
},
{
"date": "2024-03-29",
"count": 1
},
{
"date": "2024-04-05",
"count": 1
},
{
"date": "2024-04-11",
"count": 1
},
{
"date": "2024-05-22",
"count": 1
},
{
"date": "2024-07-21",
"count": 1
},
{
"date": "2024-08-04",
"count": 1
},
{
"date": "2024-09-04",
"count": 1
},
{
"date": "2024-09-12",
"count": 1
},
{
"date": "2024-09-21",
"count": 1
},
{
"date": "2024-11-05",
"count": 1
},
{
"date": "2024-11-13",
"count": 1
},
{
"date": "2024-11-15",
"count": 1
},
{
"date": "2024-12-13",
"count": 1
},
{
"date": "2025-01-05",
"count": 1
},
{
"date": "2025-01-10",
"count": 1
},
{
"date": "2025-01-11",
"count": 1
},
{
"date": "2025-01-15",
"count": 1
},
{
"date": "2025-01-30",
"count": 1
},
{
"date": "2025-02-13",
"count": 1
},
{
"date": "2025-02-26",
"count": 1
},
{
"date": "2025-03-01",
"count": 1
},
{
"date": "2025-03-18",
"count": 1
},
{
"date": "2025-04-09",
"count": 1
},
{
"date": "2025-04-23",
"count": 1
},
{
"date": "2025-05-05",
"count": 1
},
{
"date": "2025-05-25",
"count": 1
},
{
"date": "2025-06-02",
"count": 1
},
{
"date": "2025-06-05",
"count": 2
},
{
"date": "2025-07-04",
"count": 1
},
{
"date": "2025-07-17",
"count": 1
},
{
"date": "2025-09-01",
"count": 1
},
{
"date": "2025-12-09",
"count": 1
},
{
"date": "2026-01-12",
"count": 1
},
{
"date": "2026-03-05",
"count": 1
},
{
"date": "2026-03-10",
"count": 1
},
{
"date": "2026-03-24",
"count": 1
},
{
"date": "2026-04-20",
"count": 1
},
{
"date": "2026-05-12",
"count": 1
},
{
"date": "2026-05-20",
"count": 1
},
{
"date": "2026-05-21",
"count": 1
},
{
"date": "2026-06-22",
"count": 1
},
{
"date": "2026-07-14",
"count": 1
}
],
"complete": true,
"collected": 297,
"total_forks": 300
},
"star_history": null,
"open_issues_and_prs": 34
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"examples/make_example/Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 328277,
"source_files_sampled": 152,
"oversized_source_files": 7,
"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": 1,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 1,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [
{
"name": "rspec",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": "1.57.2"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "rspec",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop",
"direct": true,
"version": "1.57.2",
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 2,
"direct_count": 2,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 139,
"open_issues": 33,
"closed_ratio": 0.907,
"closed_issues": 321,
"closed_unmerged_prs": 43
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "mvandervoord",
"commits": 446,
"avatar_url": "https://avatars.githubusercontent.com/u/16511?v=4"
},
{
"type": "User",
"login": "laurensmiers",
"commits": 54,
"avatar_url": "https://avatars.githubusercontent.com/u/8750023?v=4"
},
{
"type": "User",
"login": "jlindgren90",
"commits": 38,
"avatar_url": "https://avatars.githubusercontent.com/u/1244737?v=4"
},
{
"type": "User",
"login": "barneywilliams",
"commits": 24,
"avatar_url": "https://avatars.githubusercontent.com/u/407162?v=4"
},
{
"type": "User",
"login": "SteinHeselmans",
"commits": 12,
"avatar_url": "https://avatars.githubusercontent.com/u/17571703?v=4"
},
{
"type": "User",
"login": "malsyned",
"commits": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/1999313?v=4"
},
{
"type": "User",
"login": "rstahn",
"commits": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/23195933?v=4"
},
{
"type": "User",
"login": "cloudsftp",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/23728166?v=4"
},
{
"type": "User",
"login": "dreamer-coding",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/55331536?v=4"
},
{
"type": "User",
"login": "pwatt01",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/3736073?v=4"
}
],
"contributors_sampled": 65,
"top_contributor_share": 0.613
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"main.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "3 out of 3 merged PRs checked by a CI test -- score normalized to 10",
"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": 1,
"reason": "Found 2/16 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 11 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 18 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": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "cdd115dcb9edbd9d49456af622e20fb9ea968ea4",
"ran_at": "2026-07-27T11:15:51Z",
"aggregate_score": 4.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-20T21:36:56Z",
"oldest_open_prs": [
{
"number": 514,
"created_at": "2025-08-09T22:12:59Z",
"last_comment_at": "2026-05-18T21:45:51Z",
"last_comment_author": "mvandervoord"
}
],
"last_merged_pr_at": "2026-07-20T21:34:24Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 60,
"created_at": "2015-09-23T19:21:27Z",
"last_comment_at": "2017-07-26T12:55:38Z",
"last_comment_author": "aoreskovic"
},
{
"number": 122,
"created_at": "2017-05-05T18:03:42Z",
"last_comment_at": "2026-06-29T20:23:13Z",
"last_comment_author": "mvandervoord"
},
{
"number": 125,
"created_at": "2017-06-08T12:20:05Z",
"last_comment_at": "2023-03-14T10:26:30Z",
"last_comment_author": "Letme"
},
{
"number": 127,
"created_at": "2017-06-15T16:49:19Z",
"last_comment_at": "2019-02-27T21:14:38Z",
"last_comment_author": "bmcdonnell-ionx"
},
{
"number": 129,
"created_at": "2017-07-12T10:36:13Z",
"last_comment_at": "2019-03-20T03:51:18Z",
"last_comment_author": "art-of-dom"
},
{
"number": 134,
"created_at": "2017-08-11T03:24:47Z",
"last_comment_at": "2017-08-23T21:04:01Z",
"last_comment_author": "shreyasbharath"
},
{
"number": 137,
"created_at": "2017-08-22T15:32:16Z",
"last_comment_at": "2017-08-23T16:23:27Z",
"last_comment_author": "sbseltzer"
},
{
"number": 162,
"created_at": "2018-03-20T15:03:24Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 175,
"created_at": "2018-06-30T10:11:37Z",
"last_comment_at": "2018-10-10T14:25:08Z",
"last_comment_author": "Letme"
},
{
"number": 218,
"created_at": "2019-04-25T18:02:10Z",
"last_comment_at": "2023-05-26T15:36:16Z",
"last_comment_author": "kristyan-osborne-paxton"
},
{
"number": 269,
"created_at": "2019-12-03T14:23:13Z",
"last_comment_at": "2022-08-09T08:03:32Z",
"last_comment_author": "rstahn"
},
{
"number": 274,
"created_at": "2019-12-28T17:56:44Z",
"last_comment_at": "2020-05-10T20:41:13Z",
"last_comment_author": "laurencedv"
},
{
"number": 335,
"created_at": "2020-10-21T21:30:40Z",
"last_comment_at": "2021-10-27T18:50:56Z",
"last_comment_author": "lowkin18"
},
{
"number": 362,
"created_at": "2021-07-09T09:07:10Z",
"last_comment_at": "2021-07-09T12:38:25Z",
"last_comment_author": "staticdust"
},
{
"number": 363,
"created_at": "2021-08-03T09:16:39Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 397,
"created_at": "2022-05-02T17:10:29Z",
"last_comment_at": "2022-06-29T19:10:12Z",
"last_comment_author": "glarsennordic"
},
{
"number": 407,
"created_at": "2022-08-10T15:47:05Z",
"last_comment_at": "2023-01-16T19:56:54Z",
"last_comment_author": "radu-toma"
},
{
"number": 416,
"created_at": "2023-01-04T10:36:06Z",
"last_comment_at": "2023-01-19T14:14:56Z",
"last_comment_author": "mattconway1984"
},
{
"number": 428,
"created_at": "2023-02-23T06:04:47Z",
"last_comment_at": "2025-12-18T14:33:20Z",
"last_comment_author": "mvandervoord"
},
{
"number": 434,
"created_at": "2023-04-20T13:56:04Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/ThrowTheSwitch/CMock",
"host": "github.com",
"name": "CMock",
"owner": "ThrowTheSwitch"
},
"metrics": {
"overall": {
"key": "overall",
"band": "good",
"name": "Overall health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"security": 58,
"vitality": 74,
"community": 81,
"governance": 60,
"engineering": 77
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"commits_last_year": 91,
"human_commit_share": 1,
"days_since_last_push": 6,
"active_weeks_last_year": 12
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 6
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "12/52 weeks with commits",
"points": 8.3,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 12
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "91 commits in the last year",
"points": 17.6,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 91
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 18 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": 76,
"inputs": {
"releases_count": 10,
"latest_release_tag": "v2.7.0",
"releases_from_tags": false,
"days_since_latest_release": 10,
"mean_days_between_releases": 394.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "10 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 10
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 10 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 10
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~394.3 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 394.3
}
}
],
"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": 6,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 6 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 6
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 81,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "good",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"forks": 300,
"stars": 830,
"watchers": 51,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "830 stars",
"points": 47.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 830
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "300 forks",
"points": 20.6,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 300
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "51 watchers",
"points": 9.4,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 51
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"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": 18,
"status": "met",
"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
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 60,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 41,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 65,
"top_contributor_share": 0.613
},
"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 61% of commits",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 61
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "65 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 65
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 11 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"merged_prs": 139,
"open_issues": 33,
"closed_issues": 321,
"issue_closed_ratio": 0.907,
"closed_unmerged_prs": 43
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "91% of issues closed",
"points": 42.4,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 91
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "139/182 decided PRs merged",
"points": 29.2,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 139,
"decided": 182
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/16 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"followers": 323,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "ThrowTheSwitch",
"public_repos": 14,
"account_age_days": 5430
},
"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": "323 followers of ThrowTheSwitch",
"points": 18,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 323,
"login": "ThrowTheSwitch"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "14 public repos, account ~14 yr old",
"points": 20.6,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 14
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 77,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"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": "3 out of 3 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"topics": [
"c",
"codegen",
"mocking",
"testing"
],
"has_wiki": false,
"homepage": "http://throwtheswitch.org",
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "http://throwtheswitch.org",
"points": 15,
"status": "met",
"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": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"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": 58,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 48,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "3 out of 3 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 2/16 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 11 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 18 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 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "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 1 resolved dependencies against OSV; 1 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": 1
}
},
{
"code": "advisories_unassessed",
"params": {
"count": 1
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 1,
"unassessed_packages": 1,
"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": 1,
"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": 11
},
"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": 45,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 14,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.26,
"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": "26 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 13.9,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 26,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"examples/make_example/Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "examples/make_example/Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples/make_example/Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "C (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 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": 98,
"inputs": {
"primary_language": "C",
"largest_source_bytes": 328277,
"source_files_sampled": 152,
"oversized_source_files": 7
},
"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": "7/152 source files over 60KB",
"points": 52.5,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 152,
"oversized": 7
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"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",
"Could not fetch rubygems package 'cmock' from its registry"
],
"report_type": "repository",
"generated_at": "2026-07-27T11:16:17.601662Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/ThrowTheSwitch/CMock.svg",
"full_name": "ThrowTheSwitch/CMock",
"license_state": "standard",
"license_spdx": "MIT"
}