Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 54,
"has_wiki": false,
"homepage": null,
"languages": {
"Rust": 33753
},
"pushed_at": "2026-07-29T21:01:53Z",
"created_at": "2020-07-29T21:38:45Z",
"owner_type": "Organization",
"updated_at": "2026-07-29T21:02:23Z",
"description": "Safely call ioctls from Rust",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://enarx.dev/",
"name": "Enarx",
"type": "Organization",
"login": "enarx",
"company": null,
"location": null,
"followers": 104,
"avatar_url": "https://avatars.githubusercontent.com/u/44877733?v=4",
"created_at": "2018-11-08T18:25:08Z",
"is_verified": null,
"public_repos": 37,
"account_age_days": 2820
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-29T20:57:58Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-02-25T14:34:53Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2020-09-04T17:17:24Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2020-08-19T19:57:58Z"
}
],
"recent_commits": [
{
"oid": "41936a60d98c0ea3b683547d0e4a4bd3bd022c39",
"body": "Wrap the ioctl() invocations and the method-chain returns that\nexceed the line width, so `cargo fmt --check` passes in CI. No\nbehavior change.",
"is_bot": false,
"headline": "style: satisfy rustfmt in the ioctl call sites",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-29T21:01:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d79c50f54712fddf8c0d9fb0d7d65079202dc753",
"body": "Breaking release: ioctl argument types are now bound by zerocopy's\nFromBytes/IntoBytes/Immutable/KnownLayout traits, and the ioctl call\ntakes an AsFd by shared reference instead of an AsRawFd by &mut. Adds\nPtr/PtrMut for pointer-shaped arguments.",
"is_bot": false,
"headline": "chore(release): v0.3.0",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-29T20:57:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a62b0c42ee7e2cb332f70a99d8215be9f567eb39",
"body": "AsRawFd::as_raw_fd() returns a bare RawFd integer with no lifetime\ntied to the borrow, so nothing stops a type from implementing it\naround a stale or already-closed fd. AsFd::as_fd() -> BorrowedFd<'_>\ncloses that gap by tying the fd's validity to a real borrow lifetime\n— the same class of fix Ptr/Pt\n[…]\n from &impl AsRawFd/&mut impl AsRawFd to impl AsFd. Callers\npassing &file/&mut file are unaffected; a caller implementing only\nAsRawFd (not AsFd) on a custom fd-holding type needs to add an AsFd\nimpl.",
"is_bot": false,
"headline": "fix(ioctl)!: take AsFd instead of AsRawFd, drop &mut",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-02T23:51:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d7e3d9c2f1769363d91d670d1cd3233726d759a6",
"body": "The safety obligations behind an unsafe Group::write_read/Ioctl::classic\ncall used to be one sentence buried in Ioctl::classic's doc comment,\nwith no prescribed mechanism for satisfying it. Spell out both halves\nexplicitly: representation (the FromBytes/IntoBytes/Immutable bounds,\nchecked by the com\n[…]\nn this crate cannot\ncheck), including a minimal worked example and the derive-macro\npadding-proof sharp edge that comes up when mixing a Ptr/PtrMut field\nwith a plain sibling field in the same struct.",
"is_bot": false,
"headline": "docs(ioctl): document the two-part contract on argument types",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-02T23:21:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4f2632a85112811559163cd9ced347808e409bea",
"body": "Some ioctls embed the address of a second buffer as a raw integer\nfield (e.g. SCSI SG_IO's sg_io_hdr.dxferp). A bare u64 field carries\nno information about what it points to or how long that pointee\nneeds to remain valid, and the previous commit's FromBytes/IntoBytes\nbounds have nothing to say about\n[…]\ne same struct. This is a load-bearing invariant, not an\nimplementation detail: neither type may ever gain a safe method that\ndereferences the stored address without redoing this argument from\nscratch.",
"is_bot": false,
"headline": "feat(ioctl): add Ptr/PtrMut for pointer-shaped arguments",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-02T23:21:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "17c1cc1dc48b7d9c508dede9aad7890170c4535d",
"body": "Ioctl<Read, &T>::ioctl passed uninitialized memory to the kernel and\nunconditionally assumed it was initialized afterward; Write/WriteRead\naccepted any T, including types with invalid bit patterns, so a\nkernel-written enum/bool/reference field could later be UB to read.\n\nBound each direction by what\n[…]\n require T to implement the corresponding\nzerocopy traits (FromBytes/IntoBytes/Immutable). Existing argument\nstructs need #[derive(FromBytes, IntoBytes, Immutable)] as\nappropriate for their direction.",
"is_bot": false,
"headline": "fix(ioctl)!: bound argument types with zerocopy traits",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-07-02T23:20:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f451c96a4e6db8f855e842ca5d1f97426627fed4",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v6...v7)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-24T00:09:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6d066ddb1cf34b751e712da5d93399e4ee0cf9e6",
"body": null,
"is_bot": false,
"headline": "Release v0.2.0",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:34:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "175f49fcccb2003498c9334a720c5f9c23b0bf9b",
"body": null,
"is_bot": false,
"headline": "fix: remove parisc cfg — no Rust target exists for it",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:28:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "331e3b4cec7e196c4f4a9ba6756ecaeaf4f35be8",
"body": "Several Linux architectures override the asm-generic ioctl direction\nbits and size field width. Use cfg-based conditional compilation to\nselect the correct platform constants at compile time.\n\nThree platform variants exist:\n- Standard (asm-generic): x86, arm, aarch64, riscv, s390x, etc.\n SIZEBITS=1\n[…]\nA-RISC: parisc\n SIZEBITS=14, NONE=0, READ=1, WRITE=2\n\nThis also fixes the none() direction to use the platform-correct NONE\nvalue instead of hardcoded 0, matching the kernel's _IO() macro.\n\nFixes #20",
"is_bot": false,
"headline": "fix: use correct ioctl encoding for non-standard platforms",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:28:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e6a608c16afddbb6f52508eb0b8715cbf53e571c",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4...v6)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 4 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-25T14:19:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9861596819a2b5165751a0d263deb68e1b69a5ba",
"body": null,
"is_bot": false,
"headline": "style: remove extra blank line to satisfy rustfmt",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80ac652dc3699f72d30e779f5dc727bc8393eed0",
"body": "Reverts the dependabot removal — while iocuddle has no cargo deps,\ndependabot is still valuable for keeping GitHub Actions versions\ncurrent. Added github-actions ecosystem and switched to weekly.",
"is_bot": false,
"headline": "ci: restore dependabot with github-actions ecosystem",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e0cacf31f9bec4f3a4147c21f9238befcf1b5e6",
"body": "iocuddle has zero dependencies, so cargo dependabot serves no purpose.",
"is_bot": false,
"headline": "ci: remove dependabot",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebb1d7c0cced70a8f8f4533a3d3bb4a129f53eff",
"body": "- Bump edition from 2018 to 2021\n- Bump MSRV from 1.56 to 1.63 (minimum for edition 2021)\n- Remove deprecated [badges] section (crates.io no longer renders them)\n- Remove rust-toolchain.toml pinning to 1.56\n- Remove .gitignore from exclude list\n- Clean up formatting",
"is_bot": false,
"headline": "build: modernize Cargo.toml and project metadata",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56e663201b81fcd97e5193e4db71e25caf6e1867",
"body": "Replace the duplicated doc comment block in lib.rs with\n`#![doc = include_str!(\"../README.md\")]`, making README.md the single\nsource of truth for both GitHub and docs.rs.\n\nRemove stale badges from README.md header.\n\nThis replaces the cargo-readme CI check that was removed in the previous\ncommit.",
"is_bot": false,
"headline": "docs: unify README.md and crate docs via include_str!",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36ec6e25a374056afd998d9c35ee478b79e1eb9b",
"body": "- Replace deprecated actions-rs/toolchain and actions-rs/cargo with\n dtolnay/rust-toolchain and direct cargo invocations\n- Upgrade actions/checkout from v2 to v4\n- Remove cargo-readme CI check (replaced by include_str in next commit)\n- Drop beta from test matrix (stable + nightly + MSRV is sufficient)\n- Add push trigger alongside pull_request\n- Update MSRV in test matrix to 1.63.0 (matches Cargo.toml bump)",
"is_bot": false,
"headline": "ci: modernize GitHub Actions workflows",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e5d6882825206ade1ad8ebd7fff16425ad4aa5b",
"body": "Remove enarxbot.yml, automerge.yml, and commisery.yml which depend on\nthe defunct enarx org shared workflows and bot infrastructure.\n\nRemove CODEOWNERS which references @enarx/codeowners team.",
"is_bot": false,
"headline": "ci: remove dead enarx org workflows and CODEOWNERS",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2026-02-25T14:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee882b00fcbc82cfa0e58594f5abd78b2fbda994",
"body": "Signed-off-by: Dmitri Pal <dmitri@profian.com>",
"is_bot": false,
"headline": "chore: add shared commisery workflow",
"author_name": "Dmitri Pal",
"author_login": null,
"committed_at": "2023-01-31T20:47:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d90d06c90159dc44b5f498e86359607586b66b74",
"body": "Signed-off-by: Dmitri Pal <dmitri@profian.com>",
"is_bot": false,
"headline": "chore: add shared workflow for automatic pr merge",
"author_name": "Dmitri Pal",
"author_login": null,
"committed_at": "2023-01-12T07:44:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f6dc942c4dae669b51d09749eef693e2906d004",
"body": null,
"is_bot": false,
"headline": "build: add rust-toolchain/rust-version, bump MSRV to 1.56",
"author_name": "bstrie",
"author_login": "bstrie",
"committed_at": "2022-11-21T15:25:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a33fbc7524fab2b1a08fca3c8c43fa2f9ba0cfb6",
"body": "Signed-off-by: bstrie <865233+bstrie@users.noreply.github.com>",
"is_bot": false,
"headline": "build: increase MSRV to 1.53",
"author_name": "bstrie",
"author_login": "bstrie",
"committed_at": "2022-11-16T15:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3395ae151ede8dddbb51bc486dc838a946d5c0d5",
"body": "Signed-off-by: bstrie <865233+bstrie@users.noreply.github.com>",
"is_bot": false,
"headline": "style: fix clippy warnings",
"author_name": "bstrie",
"author_login": "bstrie",
"committed_at": "2022-11-16T15:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66ed8de747d520e373d99af837c8b0d689a1fcc3",
"body": "Signed-off-by: bstrie <865233+bstrie@users.noreply.github.com>",
"is_bot": false,
"headline": "chore: add standardized codeowners",
"author_name": "bstrie",
"author_login": "bstrie",
"committed_at": "2022-11-16T15:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e9e19bc8faa242f0ad6368a7ed643d03431ea0f",
"body": "This allows us to wrap a larger subset of ioctls.\n\nSigned-off-by: Nathaniel McCallum <npmccallum@redhat.com>",
"is_bot": false,
"headline": "Add support for the none direction",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2021-01-25T15:55:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be3654bf8a80a079de1742787274b84c6faa5a84",
"body": null,
"is_bot": false,
"headline": "Enable upstreamed pull request automation actions",
"author_name": "Mark Bestavros",
"author_login": "mbestavros",
"committed_at": "2020-12-08T22:44:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a984c2ce301a7d7e2a521c1f8b25369ed7186da1",
"body": null,
"is_bot": false,
"headline": "Enable codeowners",
"author_name": "Mark Bestavros",
"author_login": "mbestavros",
"committed_at": "2020-11-12T16:22:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d8a63dd5499f70ed2d477e6a6a0bf553f965081",
"body": null,
"is_bot": false,
"headline": "Enable Enarxbot v2",
"author_name": "Mark Bestavros",
"author_login": "mbestavros",
"committed_at": "2020-11-04T00:02:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d5d4224606b988e0d37d1efa96dd50b6a80c0d6",
"body": null,
"is_bot": false,
"headline": "Enable dependabot for automated cargo updates",
"author_name": "Mark Bestavros",
"author_login": "mbestavros",
"committed_at": "2020-10-06T18:02:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f49c89f03408243d818c83c1027c392c2d48bab",
"body": null,
"is_bot": false,
"headline": "Release v0.1.1",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-09-04T17:17:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48324e2e18997c1f3c0b4844e05202d61419f031",
"body": "This provides a standard workaround for bugs in the kernel ioctl API.",
"is_bot": false,
"headline": "Add the `lie()` method",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-09-04T17:15:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25c869cd17ed1597f3512663f8c7221abe53f957",
"body": "`assume_init()` must only be called, when ioctl returns with `0`, otherwise the code path is unsound.",
"is_bot": false,
"headline": "Use MaybeUninit correctly",
"author_name": "Harald Hoyer",
"author_login": "haraldh",
"committed_at": "2020-08-26T14:56:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b34612ed8d632a8b9ab54da9364e428a70c12b14",
"body": null,
"is_bot": false,
"headline": "Disable workflows on push",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-08-19T19:57:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "457e5ae0b5ddf6715cdfdf597798c67ab2d06c2a",
"body": null,
"is_bot": false,
"headline": "Test that the rust doc matches README.md",
"author_name": "Mark Bestavros",
"author_login": null,
"committed_at": "2020-08-07T15:13:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c6bf1f86b4ca30ac2afcaf5907419db5be15283",
"body": null,
"is_bot": false,
"headline": "Cargo.toml: extend with keywords, categories and badges",
"author_name": "Harald Hoyer",
"author_login": "haraldh",
"committed_at": "2020-08-07T14:15:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6d2d9c5afce07e388e6dc28d62b8f085024895f",
"body": null,
"is_bot": false,
"headline": "Add repo title to README + minor fix",
"author_name": "Mark Bestavros",
"author_login": null,
"committed_at": "2020-08-04T15:27:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7caf83d0e38dd101d476a592ab6a4afb7f14a669",
"body": null,
"is_bot": false,
"headline": "Add status badges",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T22:13:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "186dd12ad711b90848395831d7117d6b5aa08dc2",
"body": null,
"is_bot": false,
"headline": "Add README.md",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T22:12:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffc0cbb52c955ca1aa3b2741dba369e670a2899d",
"body": null,
"is_bot": false,
"headline": "Fix clippy error",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T22:12:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85ed656eb81408a7d2a1e9be99b4bd8aee3075c6",
"body": null,
"is_bot": false,
"headline": "Add GitHub Actions workflows",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T22:12:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78eb1e87ff931d10dfc1b93b1cda423a94e0bb93",
"body": null,
"is_bot": false,
"headline": "Add .gitignore",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T21:43:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b843c5ec4131fe3a726ded8b60cca626b4073a91",
"body": null,
"is_bot": false,
"headline": "Move contents to root directory",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-07-29T21:40:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d559611ecc074f9d507bac06456f04c704012f3d",
"body": null,
"is_bot": false,
"headline": "Use unwrap_or_else for the initial ioctl doc test",
"author_name": "Harald Hoyer",
"author_login": "haraldh",
"committed_at": "2020-05-04T13:13:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec23a7aca7f017b0634001218823902637d4e21b",
"body": null,
"is_bot": false,
"headline": "Don't fail the doctest if /dev/tty does not exist",
"author_name": "Connor Kuehl",
"author_login": null,
"committed_at": "2020-05-01T20:02:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82a96103728749ac59f711c696aa554996548a4e",
"body": "Related: #219",
"is_bot": false,
"headline": "Replace LICENSE files w/ Github-provided version",
"author_name": "Mark Bestavros",
"author_login": null,
"committed_at": "2020-02-10T22:04:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da6a38e8b8292ad5a1b174ebef7fc94cad15657c",
"body": "Several crates were missing full Apache 2.0 licenses; they have been\nadded. Several Cargo.toml files were missing license fields; those\nhave been filled. All Apache 2.0 file headers have been replaced\nwith shorter and more consistent SPDX IDs.",
"is_bot": false,
"headline": "Add missing licenses; replace headers w/ SPDX IDs",
"author_name": "Mark Bestavros",
"author_login": null,
"committed_at": "2020-02-06T19:05:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a9a1786804a8d5ddb8dbfe6658f558f7760deef",
"body": "The iocuddle library is a library that enables one to move ioctl unsafe\nblocks from the call site to the definition site. This aids in reducing the\nnumber of unsafe blocks in the code.",
"is_bot": false,
"headline": "Add iocuddle library",
"author_name": "Nathaniel McCallum",
"author_login": "npmccallum",
"committed_at": "2020-01-10T17:03:45Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 18,
"latest_release_at": "2026-07-29T20:57:58Z",
"latest_release_tag": "v0.3.0",
"releases_from_tags": true,
"days_since_last_push": 0,
"active_weeks_last_year": 4,
"days_since_latest_release": 0,
"mean_days_between_releases": 723.3
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 87,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "iocuddle",
"exists": true,
"license": "Apache-2.0",
"keywords": [
"ioctl",
"linux",
"api-bindings",
"os"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/iocuddle",
"is_deprecated": false,
"latest_version": "0.3.0",
"repository_url": "https://github.com/enarx/iocuddle",
"versions_count": 4,
"total_downloads": 2021837,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 172637,
"first_published_at": "2020-08-19T20:01:32.077491Z",
"latest_published_at": "2026-07-29T20:58:32.030109Z",
"latest_version_yanked": false,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 7,
"stars": 13,
"watchers": 5,
"fork_history": {
"days": [
{
"date": "2020-07-29",
"count": 1
},
{
"date": "2020-08-06",
"count": 1
},
{
"date": "2020-09-04",
"count": 1
},
{
"date": "2022-11-16",
"count": 1
},
{
"date": "2023-01-11",
"count": 1
},
{
"date": "2025-03-20",
"count": 1
},
{
"date": "2026-04-04",
"count": 1
}
],
"complete": true,
"collected": 7,
"total_forks": 7
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml"
],
"largest_source_bytes": 33753,
"source_files_sampled": 1,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 1,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "zerocopy",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "zerocopy",
"direct": true,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 1,
"direct_count": 1,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 19,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 6,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "npmccallum",
"commits": 27,
"avatar_url": "https://avatars.githubusercontent.com/u/288304?v=4"
},
{
"type": "User",
"login": "mbestavros",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/10786787?v=4"
},
{
"type": "User",
"login": "bstrie",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/865233?v=4"
},
{
"type": "User",
"login": "haraldh",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/427825?v=4"
}
],
"contributors_sampled": 4,
"top_contributor_share": 0.711
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"lint.yml",
"test.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": 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": 2,
"reason": "3 out of 12 merged PRs checked by a CI test -- score normalized to 2",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 3,
"reason": "Found 8/25 approved changesets -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 7 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": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 5,
"reason": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"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": 10,
"reason": "security policy file 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": "41936a60d98c0ea3b683547d0e4a4bd3bd022c39",
"ran_at": "2026-07-30T13:07:14Z",
"aggregate_score": 5.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-29T21:02:18Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-06-24T00:09:08Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/enarx/iocuddle",
"host": "github.com",
"name": "iocuddle",
"owner": "enarx"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 56 is calibrated to 59 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 56,
"calibrated": 59,
"calibration": "2026-08-02"
}
}
],
"value": 59,
"inputs": {
"security": 58,
"vitality": 59,
"community": 65,
"governance": 66,
"calibration": "2026-08-02",
"engineering": 33,
"ai_readiness": 43,
"weighted_overall_raw": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 59,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"commits_last_year": 18,
"human_commit_share": 0.957,
"days_since_last_push": 0,
"active_weeks_last_year": 4
},
"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": "4/52 weeks with commits",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 4
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "18 commits in the last year",
"points": 11.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 18
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"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": 64,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v0.3.0",
"releases_from_tags": true,
"days_since_latest_release": 0,
"mean_days_between_releases": 723.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~723.3 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 723.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": "exceptional",
"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": 4,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 4 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 4
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 65,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 27,
"inputs": {
"forks": 7,
"stars": 13,
"watchers": 5,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "13 stars",
"points": 17.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 13
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "7 forks",
"points": 6.5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 7
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "5 watchers",
"points": 3.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 5
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"readme_badge_services": [],
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 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": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "excellent",
"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": 87,
"inputs": {
"packages": [
"iocuddle"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 2021837,
"monthly_downloads": 172637
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "172,637 downloads/month across crates",
"points": 69.8,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 172637,
"ecosystems": "crates"
}
}
],
"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": "good",
"name": "Sustainability & Governance",
"value": 66,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 31,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 4,
"top_contributor_share": 0.711
},
"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 71% of commits",
"points": 6.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 71
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "4 contributors",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 4
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 7 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 86,
"inputs": {
"merged_prs": 19,
"open_issues": 0,
"closed_issues": 6,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 1,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "19/20 decided PRs merged",
"points": 28.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 19,
"decided": 20
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 8/25 approved changesets -- score normalized to 3",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"followers": 104,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "enarx",
"public_repos": 37,
"account_age_days": 2820
},
"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": "104 followers of enarx",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 104,
"login": "enarx"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "37 public repos, account ~7 yr old",
"points": 23.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 37
}
},
{
"code": "account_age_years",
"params": {
"years": 7
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"iocuddle"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "crates"
}
}
],
"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": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 33,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"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 12 merged PRs checked by a CI test -- score normalized to 2",
"points": 4,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "weak",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 58,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"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": 58,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 5.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 12 merged PRs checked by a CI test -- score normalized to 2",
"points": 0.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 8/25 approved changesets -- score normalized to 3",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 7 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": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.8,
"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": "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 detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"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"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 2
},
"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": "weak",
"name": "AI Readiness",
"value": 43,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 30,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.556,
"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": "25 of 45 human commits state their intent (structured subject or explanatory body)",
"points": 29.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 25,
"sampled": 45
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 32,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml"
],
"dependency_bot_commit_share": 0.043
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"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": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"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 47",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 47
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "2 of the last 47 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 2,
"sampled": 47
}
}
],
"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": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 33753,
"source_files_sampled": 1,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/1 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 1,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"sdk": 2,
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
},
{
"tier": "tags",
"label": "sdk",
"source": "tag:api-bindings",
"weight": 2
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index crates:iocuddle@0.3.0; advisories assessed against the repository dependency graph instead",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-30T13:07:27.096976Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/e/enarx/iocuddle.svg",
"full_name": "enarx/iocuddle",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}