for the root object in `test/StdJson.t.sol`, so\nthe current comments are easy t\n[…]\nmment-only change with no ABI or runtime impact, just a documentation\nfix that makes the interface clearer and more accurate.\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "Clarify stdJson key syntax (#832)", "author_name": "tn0vak", "author_login": "tn0vak", "committed_at": "2026-05-05T11:10:50Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "e4cc8e2477e4b73f172bf25754fa2f9c1ddfec53", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.1 to\n1.45.2.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.45.2\u003c/h2>\n\u003ch2>[1.45.2] - 2026-04-27\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.45.1 to 1.45.2 (#856)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-05-05T10:43:29Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "c3fb87018f8674e5125bff0e46c007ba97dd65c1", "body": "…857)\n\nBumps\n[foundry-rs/foundry-toolchain](https://github.com/foundry-rs/foundry-toolchain)\nfrom 1.7.0 to 1.8.0.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/foundry-rs/foundry-toolchain/releases\">foundry-rs/foundry-toolchain's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cb\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump foundry-rs/foundry-toolchain from 1.7.0 to 1.8.0 (#…", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-05-05T10:41:22Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "620536fa5277db4e3fd46772d5cbc1ea0696fb43", "body": "To include compatibility fix:\nhttps://github.com/foundry-rs/forge-std/pull/854 so users don't get the\nwarning wall if they use 0.8.35", "is_bot": false, "headline": "chore(release): bump package.json for v1.16.1 (#855)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-04-29T15:23:14Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "cd9b6716e86117566a05030ea741ef2c0006d0b5", "body": "Solidity 0.8.35 was just released. Bumps `SOLC_LATEST` to 0.8.35 and\nclears `SOLC_PRERELEASE` (the matrix loop is now guarded so prerelease\nentries are skipped when empty).\n\n---------\n\nCo-authored-by: Amp \u003camp@ampcode.com>", "is_bot": false, "headline": "ci: bump SOLC_LATEST to 0.8.35 (#854)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-04-29T15:22:58Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "ff8c25c9f7b9500a53410ec3cedb3bad6ea59581", "body": "Bumps [github/codeql-action](https://github.com/github/codeql-action)\nfrom 4.35.1 to 4.35.2.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/github/codeql-action/releases\">github/codeql-action's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v4.35.2\u003c/h2>\n\u003cul>\n\u003cli>\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump github/codeql-action from 4.35.1 to 4.35.2 (#853)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-04-29T14:59:15Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "8987040ede9553cea20c95ad40d0455930f9c8e0", "body": "## Problem\n\n`scripts/vm.py` uses Python 3.10+ union type syntax (`int | str`, `X |\nNone`) which fails on macOS stock Python 3.9.6:\n\n```\nTypeError: unsupported operand type(s) for |: 'type' and 'type'\n```\n\n## Fix\n\n- Replace `int | str` with `Union[int, str]` and `Cheatcodes | None`\nwith `Optional[Cheatcodes]`\n- Import `Union` and `Optional` from `typing`\n- Regenerated `src/Vm.sol` via `vm.py`\n- Updated interface ID hashes in `test/Vm.t.sol`\n\n---------\n\nCo-authored-by: Amp \u003camp@ampcode.com>", "is_bot": false, "headline": "fix: make vm.py compatible with Python 3.9 (stock macOS) (#852)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-04-23T09:18:32Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "d6f8a21c92ed7934918c67a1a39631589560838d", "body": "Preparation for the next release of forge-std", "is_bot": false, "headline": "chore: prepare forge-std 1.16 release (#851)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-04-23T09:08:12Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f93c42c1c15e06db6a72a602d2a37dd3187a08d3", "body": "### Summary\n\nAdds [Gravity](https://gravity.xyz) L1 mainnet (chain id `127001`,\nnative token `G`) to `StdChains` so that scripts and tests can resolve\nthe chain via `getChain(\"grav\")`.\n\nGravity L1 is a new EVM-compatible L1 (reth-based execution +\nAptos-derived BFT consensus). The `grav` alias match\n[…]\nlloy-rs/chains#275\n\n### Checklist\n\n- [x] `forge build` passes locally\n- [x] Alias matches `ethereum-lists/chains` `shortName`\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "feat(StdChains): add Gravity mainnet (127001) (#848)", "author_name": "Ashin Gau", "author_login": "AshinGau", "committed_at": "2026-04-22T11:58:30Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "62f410ee3563cbe5b5d3af317efe51f1d3a299aa", "body": "Add Radius (723487) and Radius Testnet (72344) to `StdChains`.\n\nRadius is an EVM-compatible stablecoin platform with sub-second finality\nand stablecoin-native fees (~$0.0001/tx).\n\n## Chain details\n\n| | Mainnet | Testnet |\n|---|---|---|\n| Chain ID | 723487 | 72344 |\n| RPC | https://rpc.radiustech.xyz\n[…]\nttps://github.com/alloy-rs/chains/pull/269\nethereum-lists/chains:\nhttps://github.com/ethereum-lists/chains/pull/8168 (merged)\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "feat: add Radius Network chain (#842)", "author_name": "Tyler Frederick", "author_login": "TJ-Frederick", "committed_at": "2026-04-22T11:54:24Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "8dd18274cd93a53fb944b77a28915757eecbc17d", "body": "Resolves #91\n\n- Depends on https://github.com/foundry-rs/foundry/pull/14338\n\nTwo of the most common use-cases for tables are easily logging arrays\nand comparing multiple labelled values, which often leads the user to\nmanually line up the values like so:\n\n```solidity\nconsole.log(\"alice \", 0x328809Bc\n[…]\n6fe48890a74ba84957ebf877fb591e37e0de │\n └─────────┴────────────────────────────────────────────────────────────────────┘\n```\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "feat(console): add console.table (#849)", "author_name": "Nuno David", "author_login": "ndavd", "committed_at": "2026-04-22T11:03:11Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "624bef6975225248ec13fc697fb3208571760965", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.0 to\n1.45.1.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.45.1\u003c/h2>\n\u003ch2>[1.45.1] - 2026-04-13\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.45.0 to 1.45.1 (#850)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-04-21T10:40:08Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "2999b6563e1f07971a09d48b82f3fac910d72a05", "body": "Pin all GitHub Actions in `ci.yml` and `sync.yml` to full commit SHAs\nusing `pinact`, preventing tag-based supply chain attacks.\n\n## Changes\n- `actions/checkout@v6` → `actions/checkout@de0fac2e...ce83dd # v6.0.2`\n(6 occurrences)\n- `foundry-rs/foundry-toolchain@v1` →\n`foundry-rs/foundry-toolchain@878\n[…]\n (2 occurrences)\n- `crate-ci/typos` version comment fixed from `# v1` to `# v1.45.0`\n(already SHA-pinned)\n\nPrompted by: georgen\n\nCo-authored-by: grandizzy \u003c38490174+grandizzy@users.noreply.github.com>", "is_bot": false, "headline": "ci: pin all GitHub Actions to SHA (#847)", "author_name": "Derek Cofausper", "author_login": "decofe", "committed_at": "2026-04-14T12:52:44Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "546cafbff705cdc56bc2b7c928a232cbf6ccc7b9", "body": "Adds a 7 day cooldown to Dependabot version updates. This delays PRs for\nnewly released dependency versions until they are at least 7 days old,\nreducing noise and exposure to supply chain attacks.\n\nSecurity updates bypass the cooldown and are unaffected.\n\nPrompted by: zerosnacks\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "chore(deps): add 7 day dependency cooldown (#846)", "author_name": "Derek Cofausper", "author_login": "decofe", "committed_at": "2026-04-13T13:48:44Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b22916466a649dbec873fa4be538df14cc49402f", "body": "Resolves #676\n\n---------\n\nCo-authored-by: Derek Cofausper \u003c256792747+decofe@users.noreply.github.com>\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "feat(StdCheats): add expectAndMockCall helper (#844)", "author_name": "Nuno David", "author_login": "ndavd", "committed_at": "2026-04-13T12:02:18Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "6466ada8c025ee5c5183bfdf8577aa47f94a133d", "body": "Part of #653. Two more of the files listed in the NatSpec docs\nchecklist.\n\n## StdMath.sol\n\nAdded \\`@notice\\`, \\`@param\\`, and \\`@return\\` tags to the library and\nall five internal functions:\n\n- \\`abs(int256)\\`\n- \\`delta(uint256, uint256)\\`\n- \\`delta(int256, int256)\\`\n- \\`percentDelta(uint256, uint25\n[…]\nso behavior is unchanged. CI should cover the formatting\nand test pass. If CI flags anything I will fix it in this branch.\n\nHappy to split this into two PRs (one per file) if that is easier to\nreview.", "is_bot": false, "headline": "docs: add NatSpec to StdMath and StdError (#845)", "author_name": "SylvarisSolutions", "author_login": "sylvarissolutions-max", "committed_at": "2026-04-13T09:23:42Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "f494b0c2c045dda3df3d761bc82209b9a015c4e7", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.44.0 to\n1.45.0.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.45.0\u003c/h2>\n\u003ch2>[1.45.0] - 2026-04-01\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.44.0 to 1.45.0 (#843)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-04-06T10:09:49Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "4540e4aadda88eeb19a54d2b5ad2117c2c7632ec", "body": "…x (#839)\n\n- Define `SOLC_MINIMUM`, `SOLC_LATEST`, and `SOLC_PRERELEASE` versions\nat the top of CI workflow for easy maintenance\n- Generate build matrix dynamically so version changes only need a\nsingle update\n- Run prerelease solc builds on `nightly` toolchain only (svm-rs is not\nup to date on `stable`)\n- Ignore solc warning 3805 (\"pre-release compiler version\") for\nprerelease builds so `--deny warnings` does not fail on it", "is_bot": false, "headline": "chore(ci): update solc versions, add prerelease CI with dynamic matri…", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-03-27T09:43:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "50fbb2ca69a24b8991771787dfa023c0429584e5", "body": "…#837)\n\nAdds NatSpec documentation to all public and internal functions in\n`StdAssertions.sol` and `StdInvariant.sol` as part of #653.\n\nChanges:\n- Added `@notice` to every function describing its behavior\n- Added `@param` for all parameters\n- Added `@return` for functions with return values\n- Added \n[…]\ntract-level `@notice` for both contracts\n- Replaced existing `@dev`-only comments with `@notice` +\n`@param`/`@return` in StdInvariant.sol\n\nNo logic, interface, or code changes. Comment-only additions.", "is_bot": false, "headline": "docs(StdAssertions, StdInvariant): add NatSpec for public functions (…", "author_name": "Raghuvansh", "author_login": "Ra9huvansh", "committed_at": "2026-03-26T09:38:23Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "c0f966cb111f621bfb283b2a388bc7be18953bba", "body": "removed myself and Yash", "is_bot": false, "headline": "chore: update CODEOWNERS (#836)", "author_name": "Arsenii Kulikov", "author_login": "klkvr", "committed_at": "2026-03-23T19:56:28Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f5495c9b993bfc6e79dd52adfdcb7dac0a1da918", "body": "Co-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "fix(StdStorage): fix uint256 underflow infinite loop in find() (#833)", "author_name": "Derek Cofausper", "author_login": "decofe", "committed_at": "2026-03-15T19:24:34Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "3e6d5cd6dd0dbe61952e6075ea6d55ed31d26381", "body": "This updates the `IERC7540.requestRedeem` comments to match the actual\nowner-based flow.\nThe current wording says control is taken from `sender`, but the\nfunction signature and parameter docs are centered on `owner`, and the\napproval model also allows either ERC-20 approval over the owner's\nshares o\n[…]\nface.\nThis is a comment-only change with no ABI, logic, or behavior changes.\nIt simply makes the redeem-side docs consistent with the API semantics\nand with the already-clarified deposit-side wording.", "is_bot": false, "headline": "Clarify requestRedeem docs (#831)", "author_name": "tn0vak", "author_login": "tn0vak", "committed_at": "2026-03-13T10:44:27Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "04ee608913e6c334973649b2b1a2976260647c1b", "body": "Co-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.43.5 to 1.44.0 (#829)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-03-02T14:31:24Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "96abd708f045daa0d40827b27fb06fb3021b2d8c", "body": null, "is_bot": false, "headline": "Correct depositor terminology in IERC7575 (#827)", "author_name": "Irshad Kohl", "author_login": "IrshadKohl51", "committed_at": "2026-02-26T09:00:11Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "59e4cc349b75f64520fbef515ef44ca03a0a7ef6", "body": "Replace depositor with owner in withdrawal comments, aligning the\nsemantics with actual function parameters.", "is_bot": false, "headline": "Fix depositor terminology in IERC4626 (#825)", "author_name": "Irshad Kohl", "author_login": "IrshadKohl51", "committed_at": "2026-02-24T11:29:04Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "722afcc99a78706335b5a2ece83a4f0de4bc083d", "body": "the RedeemRequest event in IERC7540Redeem had `assets` as the last\nparam, but per EIP-7540 spec it should be `shares`. redeem operates on\nshares, deposit operates on assets - the event was copy-pasted wrong.\n\nref: https://eips.ethereum.org/EIPS/eip-7540#events\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "fix: correct RedeemRequest event param from assets to shares (#822)", "author_name": "David Klank", "author_login": "davidjsonn", "committed_at": "2026-02-23T11:35:26Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "460cc79cfe0ae976129d922235a85386121effb1", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.43.4 to\n1.43.5.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.43.5\u003c/h2>\n\u003ch2>[1.43.5] - 2026-02-16\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.43.4 to 1.43.5 (#824)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-02-23T11:25:59Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "0844d7e1fc5e60d77b68e469bff60265f236c398", "body": "Requested in\nhttps://github.com/foundry-rs/forge-std/pull/810#issuecomment-3913263248\nand makes sense to do for our upcoming v1.6 stable release", "is_bot": false, "headline": "chore(release): prepare for v1.15.0 relesae (#820)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-02-17T09:56:45Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e72518ef87be67df939a70b0ff1cb349e92b6dde", "body": "## Summary\nUpdate `Vm.sol` with all new cheatcodes from foundry.\n\n## New cheatcodes\n- `createEd25519Key(bytes32 salt)` — generate Ed25519 key pair from\ndeterministic salt\n- `publicKeyEd25519(bytes32 privateKey)` — derive Ed25519 public key\n- `signEd25519(bytes namespace, bytes message, bytes32 priva\n[…]\n--isolate` mode)\n\n## Generation\nRegenerated via `scripts/vm.py --from cheatcodes.json` using foundry's\nlatest `cheatcodes.json`.\n\nPrompted by: georgen\n\n---------\n\nCo-authored-by: Amp \u003camp@ampcode.com>", "is_bot": false, "headline": "feat: update Vm.sol with new cheatcodes (#819)", "author_name": "Georgios Konstantopoulos", "author_login": "gakonst", "committed_at": "2026-02-16T18:51:25Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "52c1e835e9ffcfe00bd9f8f51de204b93bc7028a", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.43.3 to\n1.43.4.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.43.4\u003c/h2>\n\u003ch2>[1.43.4] - 2026-02-09\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.43.3 to 1.43.4 (#818)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-02-16T10:35:17Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "87f3448138b6ee16e33055116b150d37a8cf912f", "body": null, "is_bot": false, "headline": "docs: add StdConfig documentation to README (#817)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-02-12T12:34:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "aeb45e9f32ef8ca78f0aeda17596e9c46374da41", "body": "Similar to #811.", "is_bot": false, "headline": "docs: fix IERC7575 previewWithdraw comment (#816)", "author_name": "Degen Dev", "author_login": "NftCryptoHunter007", "committed_at": "2026-02-09T12:24:49Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "07f2c2dc9f48bcab842593eb29dd4b8a14b66b96", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.3 to\n1.43.3.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.43.3\u003c/h2>\n\u003ch2>[1.43.3] - 2026-02-06\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.42.3 to 1.43.3 (#815)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-02-09T11:14:27Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "5ae14434aaea2211adefd069e06e059a02c39f7c", "body": "### Summary\nAdd one-line `@dev` NatSpec explainers to all `StdInvariant`\ntarget/exclude helpers and Forge hook getters.\n\n- Resolves foundry-rs/forge-std#283\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "docs(StdInvariant): add one-line explainers for each function (#813)", "author_name": "giannistbs", "author_login": "giannistbs", "committed_at": "2026-02-09T10:14:52Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "a9c62e3e3be34095de68c22bfdde5a1fd6a7dc3b", "body": null, "is_bot": false, "headline": "docs: fix outdated Std Assertions description in README (#814)", "author_name": "Elena343-ai", "author_login": "Elena343-ai", "committed_at": "2026-02-09T08:30:56Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "121b89cd2ccd2fe8c6841935ddb684135f08392a", "body": null, "is_bot": false, "headline": "docs: fix IERC4626 previewWithdraw comment (#811)", "author_name": "Degen Dev", "author_login": "NftCryptoHunter007", "committed_at": "2026-02-06T11:17:56Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1bf6e02e2b5637056b4a602c119ae42d5fd0f507", "body": "Replaces the incorrect \"only functions related to prank\" statement with\nan accurate list of stdCheats capabilities, including pranking, balance\nmanagement, contract deployment, address creation, time manipulation,\nand fuzzing helpers.", "is_bot": false, "headline": "docs: fix outdated stdCheats description in README (#812)", "author_name": "Elena343-ai", "author_login": "Elena343-ai", "committed_at": "2026-02-06T11:15:20Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "8e7bbe65b08aa71a0c93b50dc707da716a2ac1ff", "body": null, "is_bot": false, "headline": "docs: fix incorrect stdStorage packed slots documentation (#804)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-02-04T18:48:36Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "9aaeaf43602210beecf85137271a2f7c5c1f0975", "body": "For future reference, to update run `./scripts/vm.py` + update interface\nid\n\nSupersedes: https://github.com/foundry-rs/forge-std/pull/809", "is_bot": false, "headline": "chore: update `Vm.sol` (#810)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-02-03T11:16:12Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "3db6467879cba79685bf05e3b46fed02699303ec", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.1 to\n1.42.3.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.42.3\u003c/h2>\n\u003ch2>[1.42.3] - 2026-01-27\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.42.1 to 1.42.3 (#807)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-02-02T11:18:31Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "4f227ab1b9a9a62f587580145951c7ace5e42569", "body": "## Summary\n\nUpdates RPC endpoint URLs from `ithaca.xyz` to `reth.rs`.\n\n## Changes\n\n- `reth-ethereum.ithaca.xyz/rpc` -> `ethereum.reth.rs/rpc`\n\n## Testing\n\nAll 195 tests pass.\n\n---\n\nRelated: https://github.com/paradigmxyz/reth/pull/21574\n\nCo-authored-by: georgios \u003cgeorgios@tempo.xyz>", "is_bot": false, "headline": "chore: update RPC URLs from ithaca.xyz to reth.rs (#805)", "author_name": "Georgios Konstantopoulos", "author_login": "gakonst", "committed_at": "2026-01-29T17:27:40Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0e44f85a13976ba7491c6a9ee994b1a7efc3c281", "body": "Error messages in `checked_write` incorrectly referenced\n`find(StdStorage)` instead of the actual function name\n`checked_write(StdStorage)`.\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "fix: correct error messages in stdStorage checked_write function (#802)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-27T11:29:31Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "03b5d168fd439d21f720d34039eb66d1a55a01e3", "body": "The error message in `dealERC1155` incorrectly referenced\n`deal(address,address,uint,uint,bool)` instead of the actual function\nname and signature.", "is_bot": false, "headline": "fix: correct error message in dealERC1155 function (#801)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-27T11:24:40Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0e4c6fd3693b20d88227de36bdd757ba3c1126e5", "body": "The error message in `dealERC721` incorrectly referenced\n`deal(address,address,uint,bool)` instead of the actual function\nsignature. This was likely a copy-paste error from the `deal` function.", "is_bot": false, "headline": "fix: correct error message in dealERC721 function (#800)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-27T11:23:58Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "bee11e72a6764a40ec9272635d5bb46744be352d", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.0 to\n1.42.1.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.42.1\u003c/h2>\n\u003ch2>[1.42.1] - 2026-01-19\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.42.0 to 1.42.1 (#799)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-01-26T11:35:23Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "dd45fcd9092a49a7e16beed5715e7f277c7c3820", "body": "The constructor docstring listed supported types but forgot to include\n`int`, even though it's mentioned in other comments in the same file and\nis fully supported in the implementation. Just a copy-paste oversight.\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "docs: fix missing `int` type in StdConfig comment (#797)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-26T09:01:48Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0724906ca9ad2c2e4e1b4396f0380bf37c76b09d", "body": null, "is_bot": false, "headline": "docs: fix copy-paste error in IERC7540Redeem comment (#798)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-26T08:31:12Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "73d683471b1e8d0549449d47c2bbe5eea6159aa1", "body": "incorrectly showed `bytes4(\"balanceOf(address)\")` as the way to compute\nthe selector 0x70a08231. This syntax doesn't compute a function selector\n- it would just take ASCII bytes of the string literal. Fixed to show\nthe actual method: `bytes4(keccak256(\"balanceOf(address)\"))`.", "is_bot": false, "headline": "fix: correct function selector computation (#796)", "author_name": "emmmm", "author_login": "eeemmmmmm", "committed_at": "2026-01-25T18:36:42Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f61e4dd133379a4536a54ee57a808c9c00019b60", "body": "Add [Tempo](https://tempo.xyz/) chains:\n\n- **tempo** (Chain ID: 4217) - RPC: https://rpc.mainnet.tempo.xyz\n- **tempo_moderato** (Chain ID: 42431) - RPC:\nhttps://rpc.moderato.tempo.xyz\n- **tempo_andantino** (Chain ID: 42429) - RPC:\nhttps://rpc.testnet.tempo.xyz", "is_bot": false, "headline": "feat: add Tempo mainnet candidate and testnet chain RPC urls (#794)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-01-16T11:18:45Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "887e87251562513a7b5ab1ea517c039fe6ee0984", "body": null, "is_bot": false, "headline": "Fix: spelling and grammar (#791)", "author_name": "sashaodessa", "author_login": "sashaodessa", "committed_at": "2026-01-13T14:03:33Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "17d2404f29436e3d85ef81da9ce31498ae7d2455", "body": "- **StdCheats.sol**: Fix subject–verb agreement in comments describing\nRaw structs parsing from JSON.\n- **StdChains.sol**: Correct verb form in UX-related comment about\n`foundry.toml` alias.\n- **StdConfig.sol**: Fix wording of RPC endpoint caching comment for\nclarity.\n\n---------\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "fix minor documentation typos and grammar (#789)", "author_name": "kilavvy", "author_login": "kilavvy", "committed_at": "2026-01-12T16:29:38Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1a494e4a73715f43602ab0653ea0fd33f3b5bab0", "body": null, "is_bot": false, "headline": "fix: grammar in StdChains.sol and StdConfig.sol (#784)", "author_name": "kilavvy", "author_login": "kilavvy", "committed_at": "2026-01-12T16:25:12Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "bb8647a62b45ede74e0561887a495810776a752f", "body": "Co-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.41.0 to 1.42.0 (#790)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-01-12T12:15:22Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "7ebe43865789603ff914470689c40f8dc1527ddd", "body": null, "is_bot": false, "headline": "fix: correct typos in comments (#788)", "author_name": "leopardracer", "author_login": "leopardracer", "committed_at": "2026-01-11T18:25:46Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0c9da5736d06b0f01fac287c23d30a00d444e872", "body": null, "is_bot": false, "headline": "fix(StdToml): fix typos in code examples and comments (#786)", "author_name": "fuder.eth", "author_login": "vtjl10", "committed_at": "2026-01-09T12:50:37Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "2f05b3001ed9d74b171d17eac80b3765ce186a76", "body": null, "is_bot": false, "headline": "docs: polish wording and fix minor grammar (#785)", "author_name": "sashaodessa", "author_login": "sashaodessa", "committed_at": "2026-01-08T09:07:00Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "480d8768e4bc09eb841dbe38aa0f0370de8f8dd8", "body": null, "is_bot": false, "headline": "fix: grammatical errors in Vm.sol and IERC7540.sol comments (#783)", "author_name": "FT", "author_login": "zeevick10", "committed_at": "2026-01-07T19:27:23Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "52965365cb81caa384c44ba2129e36a2e82bde85", "body": null, "is_bot": false, "headline": "fix(IERC7575): fix grammatical errors and typos in comments (#782)", "author_name": "Maxim Evtush", "author_login": "maximevtush", "committed_at": "2026-01-07T12:53:37Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e3386f2f9cc5ebf16ec5370869d5a49cdb85a0cb", "body": null, "is_bot": false, "headline": "fix(IERC4626): fix grammatical errors and typos in comments (#781)", "author_name": "anim001k", "author_login": "anim001k", "committed_at": "2026-01-06T17:24:54Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1801b0541f4fda118a10798fd3486bb7051c5dd6", "body": "Includes: https://github.com/foundry-rs/forge-std/issues/764 which\nlimits compatibility of `forge-std` to `^0.8.13`\n\nFor readers, if you do require compatibility `\u003c 0.8.13` please refer to\nthe https://github.com/foundry-rs/forge-std/releases/tag/v1.13.0\nrelease.", "is_bot": false, "headline": "chore(release): bump to v1.14.0 (#780)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-01-05T11:36:56Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "7b9119b60052787f5b340b92eed2459bd9c8c7a3", "body": "Bumps minimum compatibility to ^0.8.13\n\nResolves: https://github.com/foundry-rs/forge-std/issues/766\nResolves: https://github.com/foundry-rs/forge-std/issues/764\nResolves: https://github.com/foundry-rs/book/pull/1722\n\n---------\n\nCo-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "fix: limit to ^0.8.13 compatibility (#767)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-01-05T11:23:03Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "271af53796e53e4aac9647b0a6372b843b30c41a", "body": "Extended test_Coercion in LibVariable.t.sol to actually use the existing\nbytes32ArrayVar, intArrayVar, and bytesArrayVar fixtures. The new\nassertions decode these variables via LibVariableHelper and verify the\ncontents of the resulting arrays, turning previously unused setup data\ninto meaningful coverage for toBytes32Array, toInt256Array, and\ntoBytesArray.\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "feat: cover with tests LibVariable array coercions (#774)", "author_name": "phrwlk", "author_login": "phrwlk", "committed_at": "2026-01-05T10:56:48Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "cdecc25c143c024dd2d9fa2830ad8d16569dc089", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.40.0 to\n1.41.0.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.41.0\u003c/h2>\n\u003ch2>[1.41.0] - 2025-12-31\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.40.0 to 1.41.0 (#778)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-01-05T10:43:34Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "c29afdd40a82db50a3d3709d324416be50050e5e", "body": "v1.13.0 is the final release compatible with versions `\u003c 0.8.13`\n(support previously aimed to cover `>= 0.6.2`).\nAll subsequent releases require `>= 0.8.13`. See:\nhttps://github.com/foundry-rs/forge-std/issues/764 for additional\ncontext.\n\nThis will be followed up with another release which includes\nhttps://github.com/foundry-rs/forge-std/pull/767, exact version number\nto be discussed.", "is_bot": false, "headline": "chore(release): bump v1.13.0 (#779)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2026-01-05T10:25:25Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "26048ab55c64519ce21e032fdb49df1d5a2a7eb4", "body": "Co-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "Populate Tx1559.contractAddress during conversion (#733)", "author_name": "Galoretka", "author_login": "Galoretka", "committed_at": "2025-12-22T07:42:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "925dd4aee38b61919bdf3164041e2457c0808d8f", "body": "…Utils (#706)\n\nCo-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "refactor: deduplicate Multicall3 and CREATE2_FACTORY constants in Std…", "author_name": "bigbear", "author_login": "aso20455", "committed_at": "2025-12-22T07:34:30Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e3ffae744ab56f6c3f9ea77fc741e6130f770191", "body": "Co-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "fix: prevent out-of-bounds access in `bytesToBytes32` (#742)", "author_name": "maradini77", "author_login": "maradini77", "committed_at": "2025-12-22T07:26:22Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "a906201617a2df79eb9417dfa594cfcbbd54e083", "body": "Co-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "fix: correct type mismatch in LibVariable documentation example (#725)", "author_name": "GarmashAlex", "author_login": "GarmashAlex", "committed_at": "2025-12-22T07:18:28Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "74800448d09f38390df080ec009f5abfa26a3206", "body": "Co-authored-by: DaniPopes \u003c57450786+DaniPopes@users.noreply.github.com>", "is_bot": false, "headline": "feat: add StdConfig::exists method to check if key exists (#771)", "author_name": "Nikola Malic", "author_login": "nikollamalic", "committed_at": "2025-12-22T07:15:29Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "27ba11c86ac93d8d4a50437ae26621468fe63c20", "body": "- Correct “Let’s” phrasing in README examples.\n- Fix double period in CONTRIBUTING guidelines.", "is_bot": false, "headline": "fix: minor typos in docs (#769)", "author_name": "maradini77", "author_login": "maradini77", "committed_at": "2025-12-11T16:40:48Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e97cf30e3d65d4edec69e8a453b0878ec0acf51c", "body": "…es (#768)\n\nMany files were only marked as `// SPDX-License-Identifier: MIT` whilst\nwe distribute as dual MIT / Apache 2.0\n\nOther small changes are formatter related", "is_bot": false, "headline": "fix: correctly state dual license `MIT or Apache-2.0` in Solidity fil…", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2025-12-11T15:12:05Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "ebc60f500bc6870baaf321a0196fddc24d6edb03", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.39.2 to\n1.40.0.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.40.0\u003c/h2>\n\u003ch2>[1.40.0] - 2025-11-26\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.39.2 to 1.40.0 (#765)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-12-08T09:43:19Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "799589bfa97698c2bdf0ba8df4d461b607e36c57", "body": "…ns (#723)\n\nCo-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "fix: correct error messages in StdStorage parent() and root() functio…", "author_name": "Avory", "author_login": "avorylli", "committed_at": "2025-12-01T10:48:05Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e6dc35ffec261e54225d47a779e25197cc3aa469", "body": "Co-authored-by: zerosnacks \u003c95942363+zerosnacks@users.noreply.github.com>", "is_bot": false, "headline": "Update README.md (#718)", "author_name": "MONK", "author_login": "MonkeyKing44", "committed_at": "2025-12-01T10:45:02Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "66b07bd8c2d981949b0e03fdade760f7dee278e4", "body": null, "is_bot": false, "headline": "feat(stdchains): add ink and ink sepolia default rpc endpoints (#762)", "author_name": "Cruz Molina", "author_login": "CruzMolina", "committed_at": "2025-12-01T10:32:22Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b69e66b0ff79924d487d49bf7fb47c9ec326acba", "body": "- use reth node in config tests instead eth.llamarpc\n- remove log from bound fn to address\nhttps://github.com/foundry-rs/foundry/pull/12478#issuecomment-3592285728\nProjects should `console.log` bounded value in tests themselves if\nneeded", "is_bot": false, "headline": "fix: config test to use reth, remove log from bound (#763)", "author_name": "grandizzy", "author_login": "grandizzy", "committed_at": "2025-11-30T09:47:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "755e679abefaf6ca9a08b5b9b90a52fb9b4ee188", "body": "…d-case-function rule (#761)\n\nPart of: https://github.com/foundry-rs/foundry/issues/12670\n\nNo user facing changes or breaking changes", "is_bot": false, "headline": "chore: update `exposed_ \u003cfunction_name>` be consistent with lint mixe…", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2025-11-28T11:03:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "7117c90c8cf6c68e5acce4f09a6b24715cea4de6", "body": null, "is_bot": false, "headline": "chore: bump to 1.12.0 for next release (#760)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2025-11-26T09:03:12Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "24d76395806bf34aaab7ce0291094174631487f6", "body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to\n6.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/actions/checkout/releases\">actions/checkout's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v6.0.0\u003c/h2>\n\u003ch2>What's Changed\u003c/h2>\n\u003cul>\n\u003cli>Upd\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump actions/checkout from 5 to 6 (#759)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-11-24T10:21:32Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "3f999523613ab5454a5c4ae4abeaa8ea2ba7bcae", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.39.0 to\n1.39.2.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.39.2\u003c/h2>\n\u003ch2>[1.39.2] - 2025-11-13\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.39.0 to 1.39.2 (#758)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-11-17T10:50:37Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "27ab851c7cde58b22cc4de426d59e23a31c5cb9c", "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.38.1 to\n1.39.0.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v1.39.0\u003c/h2>\n\u003ch2>[1.39.0] - 2025-10-31\u003c/h2>\n\u003ch\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "chore(deps): bump crate-ci/typos from 1.38.1 to 1.39.0 (#755)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-11-10T16:01:58Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "da6e5e7086fc658faad4415f78f905407f7dced0", "body": "Ref: https://github.com/foundry-rs/forge-std/actions/runs/19230711588", "is_bot": false, "headline": "chore: fix fmt & bump Vm.sol (#756)", "author_name": "zerosnacks", "author_login": "zerosnacks", "committed_at": "2025-11-10T14:08:08Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "100b0d756adda67bc70aab816fa5a1a95dcf78b6", "body": "…n (#752)\n\n`function changePrank(address msgSender)` has `deprecated` log, but\n`function changePrank(address msgSender, address txOrigin)` is missing\nit.", "is_bot": false, "headline": "chore: add missing deprecated log to second changePrank implementatio…", "author_name": "Estarossa", "author_login": "estarossa0", "committed_at": "2025-10-27T02:07:09Z", "body_truncated": false, "is_coding_agent": false } ], "releases_count": 43, "commits_last_year": 131, "latest_release_at": "2026-06-30T14:22:32Z", "latest_release_tag": "v1.16.2", "releases_from_tags": false, "days_since_last_push": 5, "active_weeks_last_year": 41, "days_since_latest_release": 25, "mean_days_between_releases": 47.6 }, "community": { "has_readme": true, "has_license": true, "has_description": true, "has_contributing": true, "health_percentage": 62, "has_issue_template": false, "has_code_of_conduct": false, "has_pull_request_template": false }, "ecosystem": { "packages": [ { "name": "forge-std", "exists": true, "license": "Apache-2.0", "keywords": [], "ecosystem": "npm", "matches_repo": false, "registry_url": "https://www.npmjs.com/package/forge-std", "is_deprecated": false, "latest_version": "1.1.2", "repository_url": "https://github.com/shunkakinoki/contracts", "versions_count": 5, "total_downloads": null, "dependents_count": null, "deprecation_note": null, "maintainers_count": 1, "monthly_downloads": 25414, "first_published_at": "2022-05-12T04:47:51.876000Z", "latest_published_at": "2022-07-20T20:27:36.008000Z", "latest_version_yanked": null, "days_since_latest_publish": 1466 } ] }, "popularity": { "forks": 513, "stars": 1051, "watchers": 17, "fork_history": { "days": [ { "date": "2022-01-06", "count": 1 }, { "date": "2022-01-15", "count": 1 }, { "date": "2022-01-22", "count": 1 }, { "date": "2022-01-30", "count": 1 }, { "date": "2022-02-01", "count": 1 }, { "date": "2022-02-11", "count": 1 }, { "date": "2022-02-20", "count": 1 }, { "date": "2022-02-23", "count": 1 }, { "date": "2022-03-01", "count": 1 }, { "date": "2022-03-03", "count": 1 }, { "date": "2022-03-07", "count": 1 }, { "date": "2022-03-16", "count": 1 }, { "date": "2022-03-30", "count": 2 }, { "date": "2022-03-31", "count": 2 }, { "date": "2022-04-13", "count": 1 }, { "date": "2022-04-14", "count": 1 }, { "date": "2022-04-17", "count": 1 }, { "date": "2022-04-18", "count": 1 }, { "date": "2022-04-21", "count": 1 }, { "date": "2022-04-22", "count": 1 }, { "date": "2022-04-23", "count": 1 }, { "date": "2022-04-28", "count": 1 }, { "date": "2022-04-29", "count": 2 }, { "date": "2022-05-03", "count": 1 }, { "date": "2022-05-04", "count": 1 }, { "date": "2022-05-09", "count": 2 }, { "date": "2022-05-13", "count": 1 }, { "date": "2022-05-14", "count": 1 }, { "date": "2022-05-17", "count": 1 }, { "date": "2022-05-20", "count": 1 }, { "date": "2022-05-23", "count": 1 }, { "date": "2022-05-25", "count": 1 }, { "date": "2022-06-08", "count": 1 }, { "date": "2022-06-10", "count": 1 }, { "date": "2022-06-12", "count": 2 }, { "date": "2022-06-15", "count": 1 }, { "date": "2022-06-22", "count": 1 }, { "date": "2022-06-23", "count": 3 }, { "date": "2022-06-27", "count": 1 }, { "date": "2022-07-08", "count": 1 }, { "date": "2022-07-10", "count": 1 }, { "date": "2022-07-15", "count": 2 }, { "date": "2022-07-18", "count": 1 }, { "date": "2022-07-19", "count": 2 }, { "date": "2022-07-22", "count": 1 }, { "date": "2022-08-02", "count": 1 }, { "date": "2022-08-03", "count": 1 }, { "date": "2022-08-04", "count": 2 }, { "date": "2022-08-06", "count": 1 }, { "date": "2022-08-07", "count": 1 }, { "date": "2022-08-11", "count": 1 }, { "date": "2022-08-13", "count": 1 }, { "date": "2022-08-14", "count": 1 }, { "date": "2022-08-18", "count": 1 }, { "date": "2022-08-23", "count": 1 }, { "date": "2022-08-30", "count": 1 }, { "date": "2022-09-12", "count": 1 }, { "date": "2022-09-14", "count": 1 }, { "date": "2022-09-28", "count": 1 }, { "date": "2022-10-07", "count": 1 }, { "date": "2022-10-11", "count": 1 }, { "date": "2022-10-25", "count": 2 }, { "date": "2022-10-26", "count": 1 }, { "date": "2022-10-29", "count": 1 }, { "date": "2022-10-31", "count": 1 }, { "date": "2022-11-02", "count": 1 }, { "date": "2022-11-03", "count": 3 }, { "date": "2022-11-08", "count": 1 }, { "date": "2022-11-10", "count": 1 }, { "date": "2022-11-16", "count": 1 }, { "date": "2022-11-18", "count": 1 }, { "date": "2022-11-22", "count": 1 }, { "date": "2022-11-24", "count": 1 }, { "date": "2022-11-27", "count": 1 }, { "date": "2022-11-29", "count": 1 }, { "date": "2022-12-09", "count": 1 }, { "date": "2022-12-14", "count": 1 }, { "date": "2022-12-19", "count": 2 }, { "date": "2023-01-01", "count": 1 }, { "date": "2023-01-05", "count": 1 }, { "date": "2023-01-07", "count": 1 }, { "date": "2023-01-09", "count": 1 }, { "date": "2023-02-04", "count": 1 }, { "date": "2023-02-05", "count": 2 }, { "date": "2023-02-06", "count": 1 }, { "date": "2023-02-14", "count": 2 }, { "date": "2023-02-15", "count": 1 }, { "date": "2023-02-17", "count": 1 }, { "date": "2023-02-20", "count": 1 }, { "date": "2023-02-23", "count": 1 }, { "date": "2023-02-24", "count": 1 }, { "date": "2023-03-06", "count": 1 }, { "date": "2023-03-07", "count": 1 }, { "date": "2023-03-08", "count": 2 }, { "date": "2023-03-15", "count": 1 }, { "date": "2023-03-17", "count": 2 }, { "date": "2023-03-21", "count": 1 }, { "date": "2023-03-24", "count": 1 }, { "date": "2023-03-25", "count": 1 }, { "date": "2023-03-26", "count": 1 }, { "date": "2023-03-27", "count": 1 }, { "date": "2023-03-29", "count": 2 }, { "date": "2023-03-31", "count": 1 }, { "date": "2023-04-01", "count": 1 }, { "date": "2023-04-07", "count": 2 }, { "date": "2023-04-12", "count": 2 }, { "date": "2023-04-18", "count": 1 }, { "date": "2023-04-28", "count": 1 }, { "date": "2023-04-29", "count": 1 }, { "date": "2023-05-01", "count": 1 }, { "date": "2023-05-03", "count": 1 }, { "date": "2023-05-04", "count": 1 }, { "date": "2023-05-05", "count": 1 }, { "date": "2023-05-07", "count": 1 }, { "date": "2023-05-10", "count": 1 }, { "date": "2023-05-15", "count": 1 }, { "date": "2023-05-22", "count": 1 }, { "date": "2023-05-24", "count": 2 }, { "date": "2023-05-26", "count": 1 }, { "date": "2023-06-01", "count": 1 }, { "date": "2023-06-06", "count": 1 }, { "date": "2023-06-07", "count": 1 }, { "date": "2023-06-08", "count": 1 }, { "date": "2023-06-13", "count": 1 }, { "date": "2023-06-14", "count": 1 }, { "date": "2023-06-23", "count": 1 }, { "date": "2023-06-26", "count": 1 }, { "date": "2023-06-29", "count": 2 }, { "date": "2023-07-04", "count": 1 }, { "date": "2023-07-07", "count": 1 }, { "date": "2023-07-14", "count": 1 }, { "date": "2023-07-16", "count": 1 }, { "date": "2023-07-17", "count": 1 }, { "date": "2023-07-31", "count": 2 }, { "date": "2023-08-03", "count": 1 }, { "date": "2023-08-11", "count": 1 }, { "date": "2023-08-15", "count": 1 }, { "date": "2023-08-21", "count": 1 }, { "date": "2023-08-22", "count": 1 }, { "date": "2023-08-23", "count": 1 }, { "date": "2023-08-25", "count": 1 }, { "date": "2023-08-29", "count": 3 }, { "date": "2023-08-31", "count": 1 }, { "date": "2023-09-01", "count": 1 }, { "date": "2023-09-07", "count": 1 }, { "date": "2023-09-11", "count": 1 }, { "date": "2023-09-12", "count": 1 }, { "date": "2023-09-14", "count": 2 }, { "date": "2023-09-27", "count": 1 }, { "date": "2023-10-10", "count": 1 }, { "date": "2023-10-17", "count": 1 }, { "date": "2023-10-23", "count": 1 }, { "date": "2023-10-25", "count": 1 }, { "date": "2023-11-03", "count": 1 }, { "date": "2023-11-05", "count": 14 }, { "date": "2023-11-06", "count": 14 }, { "date": "2023-11-07", "count": 21 }, { "date": "2023-11-15", "count": 2 }, { "date": "2023-11-17", "count": 1 }, { "date": "2023-11-22", "count": 1 }, { "date": "2023-11-23", "count": 1 }, { "date": "2023-11-24", "count": 1 }, { "date": "2023-11-29", "count": 1 }, { "date": "2023-12-15", "count": 1 }, { "date": "2023-12-18", "count": 1 }, { "date": "2023-12-25", "count": 2 }, { "date": "2023-12-30", "count": 1 }, { "date": "2024-01-08", "count": 1 }, { "date": "2024-01-10", "count": 2 }, { "date": "2024-01-16", "count": 1 }, { "date": "2024-01-27", "count": 1 }, { "date": "2024-01-31", "count": 1 }, { "date": "2024-02-08", "count": 1 }, { "date": "2024-02-09", "count": 1 }, { "date": "2024-02-15", "count": 1 }, { "date": "2024-02-26", "count": 1 }, { "date": "2024-02-27", "count": 2 }, { "date": "2024-03-09", "count": 1 }, { "date": "2024-03-14", "count": 1 }, { "date": "2024-03-24", "count": 1 }, { "date": "2024-04-09", "count": 1 }, { "date": "2024-04-10", "count": 1 }, { "date": "2024-04-15", "count": 1 }, { "date": "2024-04-21", "count": 1 }, { "date": "2024-04-22", "count": 1 }, { "date": "2024-04-25", "count": 1 }, { "date": "2024-05-07", "count": 1 }, { "date": "2024-05-08", "count": 2 }, { "date": "2024-05-09", "count": 2 }, { "date": "2024-05-11", "count": 2 }, { "date": "2024-05-13", "count": 1 }, { "date": "2024-05-14", "count": 1 }, { "date": "2024-05-16", "count": 2 }, { "date": "2024-05-29", "count": 1 }, { "date": "2024-05-30", "count": 1 }, { "date": "2024-06-05", "count": 2 }, { "date": "2024-06-06", "count": 1 }, { "date": "2024-06-07", "count": 1 }, { "date": "2024-06-10", "count": 1 }, { "date": "2024-06-11", "count": 1 }, { "date": "2024-06-12", "count": 1 }, { "date": "2024-06-13", "count": 1 }, { "date": "2024-06-18", "count": 1 }, { "date": "2024-06-26", "count": 1 }, { "date": "2024-07-02", "count": 1 }, { "date": "2024-07-03", "count": 1 }, { "date": "2024-07-15", "count": 1 }, { "date": "2024-07-16", "count": 1 }, { "date": "2024-07-17", "count": 1 }, { "date": "2024-07-18", "count": 2 }, { "date": "2024-07-22", "count": 1 }, { "date": "2024-07-26", "count": 1 }, { "date": "2024-08-05", "count": 1 }, { "date": "2024-08-13", "count": 1 }, { "date": "2024-08-20", "count": 1 }, { "date": "2024-09-03", "count": 1 }, { "date": "2024-09-24", "count": 1 }, { "date": "2024-09-26", "count": 1 }, { "date": "2024-09-29", "count": 2 }, { "date": "2024-10-05", "count": 1 }, { "date": "2024-10-09", "count": 1 }, { "date": "2024-10-19", "count": 1 }, { "date": "2024-10-20", "count": 1 }, { "date": "2024-10-21", "count": 1 }, { "date": "2024-10-22", "count": 1 }, { "date": "2024-10-24", "count": 1 }, { "date": "2024-10-28", "count": 1 }, { "date": "2024-11-08", "count": 1 }, { "date": "2024-11-18", "count": 1 }, { "date": "2024-11-20", "count": 1 }, { "date": "2024-11-28", "count": 1 }, { "date": "2024-11-29", "count": 1 }, { "date": "2024-12-03", "count": 1 }, { "date": "2024-12-16", "count": 1 }, { "date": "2024-12-17", "count": 1 }, { "date": "2024-12-18", "count": 1 }, { "date": "2024-12-25", "count": 1 }, { "date": "2024-12-28", "count": 1 }, { "date": "2024-12-29", "count": 1 }, { "date": "2024-12-31", "count": 1 }, { "date": "2025-01-11", "count": 1 }, { "date": "2025-01-16", "count": 1 }, { "date": "2025-01-20", "count": 1 }, { "date": "2025-01-21", "count": 1 }, { "date": "2025-01-24", "count": 1 }, { "date": "2025-01-28", "count": 1 }, { "date": "2025-01-29", "count": 1 }, { "date": "2025-01-31", "count": 1 }, { "date": "2025-02-01", "count": 1 }, { "date": "2025-02-07", "count": 1 }, { "date": "2025-02-09", "count": 1 }, { "date": "2025-02-20", "count": 1 }, { "date": "2025-02-22", "count": 1 }, { "date": "2025-02-26", "count": 2 }, { "date": "2025-02-28", "count": 1 }, { "date": "2025-03-03", "count": 2 }, { "date": "2025-03-11", "count": 1 }, { "date": "2025-03-14", "count": 1 }, { "date": "2025-03-17", "count": 1 }, { "date": "2025-03-18", "count": 1 }, { "date": "2025-03-19", "count": 1 }, { "date": "2025-03-22", "count": 1 }, { "date": "2025-03-23", "count": 1 }, { "date": "2025-03-26", "count": 2 }, { "date": "2025-03-27", "count": 1 }, { "date": "2025-04-05", "count": 1 }, { "date": "2025-04-23", "count": 1 }, { "date": "2025-04-25", "count": 1 }, { "date": "2025-04-29", "count": 2 }, { "date": "2025-04-30", "count": 1 }, { "date": "2025-05-02", "count": 1 }, { "date": "2025-05-10", "count": 1 }, { "date": "2025-05-11", "count": 2 }, { "date": "2025-05-20", "count": 2 }, { "date": "2025-05-21", "count": 1 }, { "date": "2025-05-22", "count": 1 }, { "date": "2025-06-04", "count": 1 }, { "date": "2025-06-13", "count": 1 }, { "date": "2025-06-17", "count": 1 }, { "date": "2025-06-18", "count": 1 }, { "date": "2025-07-03", "count": 1 }, { "date": "2025-07-05", "count": 1 }, { "date": "2025-07-14", "count": 1 }, { "date": "2025-07-19", "count": 1 }, { "date": "2025-07-20", "count": 1 }, { "date": "2025-07-28", "count": 1 }, { "date": "2025-07-31", "count": 2 }, { "date": "2025-08-01", "count": 1 }, { "date": "2025-08-04", "count": 2 }, { "date": "2025-08-05", "count": 1 }, { "date": "2025-08-08", "count": 2 }, { "date": "2025-08-09", "count": 1 }, { "date": "2025-08-11", "count": 1 }, { "date": "2025-08-13", "count": 1 }, { "date": "2025-08-26", "count": 2 }, { "date": "2025-08-28", "count": 1 }, { "date": "2025-09-08", "count": 2 }, { "date": "2025-09-09", "count": 4 }, { "date": "2025-09-10", "count": 1 }, { "date": "2025-09-12", "count": 2 }, { "date": "2025-09-23", "count": 1 }, { "date": "2025-09-27", "count": 1 }, { "date": "2025-10-02", "count": 1 }, { "date": "2025-10-05", "count": 1 }, { "date": "2025-10-07", "count": 1 }, { "date": "2025-10-10", "count": 1 }, { "date": "2025-10-13", "count": 1 }, { "date": "2025-10-14", "count": 1 }, { "date": "2025-10-25", "count": 2 }, { "date": "2025-11-08", "count": 2 }, { "date": "2025-11-09", "count": 1 }, { "date": "2025-11-12", "count": 2 }, { "date": "2025-11-21", "count": 1 }, { "date": "2025-11-23", "count": 2 }, { "date": "2025-11-25", "count": 1 }, { "date": "2025-12-02", "count": 1 }, { "date": "2025-12-16", "count": 1 }, { "date": "2025-12-17", "count": 4 }, { "date": "2025-12-18", "count": 1 }, { "date": "2025-12-26", "count": 1 }, { "date": "2025-12-30", "count": 1 }, { "date": "2026-01-01", "count": 2 }, { "date": "2026-01-04", "count": 1 }, { "date": "2026-01-05", "count": 1 }, { "date": "2026-01-06", "count": 1 }, { "date": "2026-01-07", "count": 3 }, { "date": "2026-01-08", "count": 1 }, { "date": "2026-01-11", "count": 1 }, { "date": "2026-01-14", "count": 1 }, { "date": "2026-01-25", "count": 1 }, { "date": "2026-01-31", "count": 2 }, { "date": "2026-02-02", "count": 1 }, { "date": "2026-02-03", "count": 1 }, { "date": "2026-02-04", "count": 2 }, { "date": "2026-02-06", "count": 1 }, { "date": "2026-02-07", "count": 1 }, { "date": "2026-02-08", "count": 1 }, { "date": "2026-02-12", "count": 1 }, { "date": "2026-02-13", "count": 1 }, { "date": "2026-02-14", "count": 1 }, { "date": "2026-02-20", "count": 1 }, { "date": "2026-02-21", "count": 1 }, { "date": "2026-02-24", "count": 1 }, { "date": "2026-02-26", "count": 1 }, { "date": "2026-02-27", "count": 1 }, { "date": "2026-03-03", "count": 2 }, { "date": "2026-03-09", "count": 1 }, { "date": "2026-03-11", "count": 1 }, { "date": "2026-03-13", "count": 1 }, { "date": "2026-03-14", "count": 3 }, { "date": "2026-03-15", "count": 1 }, { "date": "2026-03-16", "count": 1 }, { "date": "2026-03-19", "count": 1 }, { "date": "2026-03-23", "count": 1 }, { "date": "2026-03-25", "count": 1 }, { "date": "2026-03-29", "count": 1 }, { "date": "2026-03-31", "count": 2 }, { "date": "2026-04-01", "count": 1 }, { "date": "2026-04-11", "count": 1 }, { "date": "2026-04-13", "count": 1 }, { "date": "2026-04-15", "count": 2 }, { "date": "2026-04-26", "count": 1 }, { "date": "2026-04-27", "count": 2 }, { "date": "2026-04-29", "count": 1 }, { "date": "2026-04-30", "count": 2 }, { "date": "2026-05-07", "count": 1 }, { "date": "2026-05-10", "count": 1 }, { "date": "2026-05-12", "count": 1 }, { "date": "2026-05-13", "count": 1 }, { "date": "2026-05-18", "count": 1 }, { "date": "2026-05-20", "count": 1 }, { "date": "2026-05-31", "count": 1 }, { "date": "2026-06-04", "count": 2 }, { "date": "2026-06-13", "count": 1 }, { "date": "2026-06-24", "count": 1 }, { "date": "2026-06-26", "count": 1 }, { "date": "2026-06-30", "count": 1 }, { "date": "2026-07-07", "count": 5 }, { "date": "2026-07-11", "count": 1 }, { "date": "2026-07-16", "count": 1 }, { "date": "2026-07-17", "count": 1 } ], "complete": true, "collected": 504, "total_forks": 513 }, "star_history": null, "open_issues_and_prs": 31 }, "ai_readiness": { "has_nix": false, "example_dirs": [], "has_llms_txt": false, "has_dockerfile": false, "has_mcp_signal": false, "bootstrap_files": [], "api_schema_files": [], "has_devcontainer": false, "typecheck_configs": [], "toolchain_manifests": [], "largest_source_bytes": 17400, "source_files_sampled": 1, "oversized_source_files": 0, "agent_instruction_files": [], "agent_instruction_max_bytes": null }, "dependencies": { "manifests": [ "package.json" ], "advisories": { "error": "No resolved dependencies to assess", "scope": "repository_graph", "source": null, "findings": [], "collected": false, "malicious": [], "truncated": false, "by_severity": {}, "advisory_count": 0, "affected_count": 0, "assessed_count": 0, "malicious_count": 0, "assessed_package": null, "unassessed_count": 0, "direct_affected_count": 0 }, "ecosystems": [ "npm" ], "dependencies": [], "all_dependencies": { "error": null, "source": "github-sbom", "packages": [], "collected": true, "truncated": false, "total_count": 0, "direct_count": 0, "indirect_count": 0 } }, "maintainership": { "issues": { "open_prs": 9, "merged_prs": 477, "open_issues": 22, "closed_ratio": 0.909, "closed_issues": 221, "closed_unmerged_prs": 113 }, "bus_factor": 7, "bot_contributors": 1, "top_contributors": [ { "type": "User", "login": "mds1", "commits": 61, "avatar_url": "https://avatars.githubusercontent.com/u/17163988?v=4" }, { "type": "User", "login": "zerosnacks", "commits": 50, "avatar_url": "https://avatars.githubusercontent.com/u/95942363?v=4" }, { "type": "User", "login": "brockelmore", "commits": 43, "avatar_url": "https://avatars.githubusercontent.com/u/31553173?v=4" }, { "type": "User", "login": "ZeroEkkusu", "commits": 32, "avatar_url": "https://avatars.githubusercontent.com/u/94782988?v=4" }, { "type": "User", "login": "PaulRBerg", "commits": 26, "avatar_url": "https://avatars.githubusercontent.com/u/8782666?v=4" }, { "type": "User", "login": "DaniPopes", "commits": 23, "avatar_url": "https://avatars.githubusercontent.com/u/57450786?v=4" }, { "type": "User", "login": "mattsse", "commits": 16, "avatar_url": "https://avatars.githubusercontent.com/u/19890894?v=4" }, { "type": "User", "login": "gakonst", "commits": 14, "avatar_url": "https://avatars.githubusercontent.com/u/17802178?v=4" }, { "type": "User", "login": "grandizzy", "commits": 13, "avatar_url": "https://avatars.githubusercontent.com/u/38490174?v=4" }, { "type": "User", "login": "klkvr", "commits": 10, "avatar_url": "https://avatars.githubusercontent.com/u/62447812?v=4" } ], "contributors_sampled": 99, "top_contributor_share": 0.127 }, "quality_signals": { "has_ci": true, "has_tests": true, "ci_workflows": [ "ci.yml", "sync.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": 9, "reason": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests" }, { "name": "CII-Best-Practices", "score": 0, "reason": "no effort to earn an OpenSSF best practices badge detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices" }, { "name": "Code-Review", "score": 7, "reason": "Found 15/19 approved changesets -- score normalized to 7", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review" }, { "name": "Contributors", "score": 10, "reason": "project has 14 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": 10, "reason": "23 commit(s) and 0 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": 10, "reason": "all dependencies are pinned", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies" }, { "name": "SAST", "score": 10, "reason": "SAST tool is run on all commits", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast" }, { "name": "Security-Policy", "score": 9, "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": 10, "reason": "GitHub workflow tokens follow principle of least privilege", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions" }, { "name": "Vulnerabilities", "score": 10, "reason": "0 existing vulnerabilities detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities" } ], "commit": "6e8c4a92c9a8b31c1b0f0c39296d1fa4695c7df8", "ran_at": "2026-07-26T07:56:04Z", "aggregate_score": 8.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-20T15:23:13Z", "oldest_open_prs": [ { "number": 739, "created_at": "2025-10-05T19:03:16Z", "last_comment_at": "2026-02-10T18:01:02Z", "last_comment_author": "0xClandestine" }, { "number": 751, "created_at": "2025-10-23T09:57:51Z", "last_comment_at": "2026-01-28T15:41:11Z", "last_comment_author": "zerosnacks" }, { "number": 823, "created_at": "2026-02-21T20:48:14Z", "last_comment_at": null, "last_comment_author": null }, { "number": 841, "created_at": "2026-03-29T23:06:05Z", "last_comment_at": null, "last_comment_author": null }, { "number": 863, "created_at": "2026-05-18T14:54:07Z", "last_comment_at": null, "last_comment_author": null }, { "number": 876, "created_at": "2026-06-11T16:41:14Z", "last_comment_at": null, "last_comment_author": null }, { "number": 879, "created_at": "2026-06-13T09:00:08Z", "last_comment_at": null, "last_comment_author": null }, { "number": 880, "created_at": "2026-06-24T16:23:14Z", "last_comment_at": null, "last_comment_author": null }, { "number": 888, "created_at": "2026-07-11T21:18:48Z", "last_comment_at": null, "last_comment_author": null } ], "last_merged_pr_at": "2026-07-20T15:22:00Z", "ci_last_conclusion": "FAILURE", "oldest_open_issues": [ { "number": 32, "created_at": "2022-03-25T12:44:21Z", "last_comment_at": "2026-07-11T20:11:56Z", "last_comment_author": "Yonkoo11" }, { "number": 62, "created_at": "2022-05-05T15:28:04Z", "last_comment_at": "2022-05-30T11:59:37Z", "last_comment_author": "ZeroEkkusu" }, { "number": 90, "created_at": "2022-06-15T08:44:12Z", "last_comment_at": "2026-07-11T21:10:26Z", "last_comment_author": "Yonkoo11" }, { "number": 101, "created_at": "2022-07-02T23:10:19Z", "last_comment_at": "2026-07-11T21:10:57Z", "last_comment_author": "Yonkoo11" }, { "number": 140, "created_at": "2022-07-28T16:14:05Z", "last_comment_at": "2023-08-29T13:17:32Z", "last_comment_author": "mds1" }, { "number": 166, "created_at": "2022-08-31T10:49:57Z", "last_comment_at": null, "last_comment_author": null }, { "number": 170, "created_at": "2022-09-04T04:17:18Z", "last_comment_at": "2025-02-28T15:26:38Z", "last_comment_author": "zerosnacks" }, { "number": 244, "created_at": "2022-11-28T15:28:03Z", "last_comment_at": "2022-12-01T12:50:36Z", "last_comment_author": "odyslam" }, { "number": 293, "created_at": "2023-02-06T15:46:32Z", "last_comment_at": "2023-11-25T15:46:00Z", "last_comment_author": "ChiTimesChi" }, { "number": 301, "created_at": "2023-02-14T17:08:12Z", "last_comment_at": null, "last_comment_author": null }, { "number": 303, "created_at": "2023-02-16T15:53:28Z", "last_comment_at": "2023-02-16T16:48:11Z", "last_comment_author": "PaulRBerg" }, { "number": 318, "created_at": "2023-03-02T00:45:39Z", "last_comment_at": "2024-05-21T18:58:02Z", "last_comment_author": "rpedroni" }, { "number": 332, "created_at": "2023-03-24T00:35:47Z", "last_comment_at": "2023-03-24T13:30:06Z", "last_comment_author": "mds1" }, { "number": 345, "created_at": "2023-04-11T23:03:20Z", "last_comment_at": "2023-04-11T23:38:33Z", "last_comment_author": "mds1" }, { "number": 394, "created_at": "2023-05-29T13:54:23Z", "last_comment_at": null, "last_comment_author": null }, { "number": 452, "created_at": "2023-09-06T08:36:03Z", "last_comment_at": "2025-10-20T09:37:51Z", "last_comment_author": "zerosnacks" }, { "number": 477, "created_at": "2023-11-10T01:40:22Z", "last_comment_at": "2023-11-13T22:14:47Z", "last_comment_author": "mds1" }, { "number": 592, "created_at": "2024-07-31T06:14:02Z", "last_comment_at": "2026-07-11T20:13:03Z", "last_comment_author": "Yonkoo11" }, { "number": 653, "created_at": "2025-02-04T10:42:11Z", "last_comment_at": "2026-03-25T22:11:30Z", "last_comment_author": "Ra9huvansh" }, { "number": 667, "created_at": "2025-03-03T18:45:55Z", "last_comment_at": null, "last_comment_author": null } ] } }, "config": { "disabled_metrics": [], "disabled_categories": [], "disabled_components": {} }, "source": { "url": "https://github.com/foundry-rs/forge-std", "host": "github.com", "name": "forge-std", "owner": "foundry-rs" }, "metrics": { "overall": { "key": "overall", "band": "good", "name": "Overall health", "note": null, "notes": [], "value": 81, "inputs": { "security": 88, "vitality": 92, "community": 74, "governance": 84, "engineering": 66 }, "components": [] }, "categories": [ { "key": "vitality", "band": "excellent", "name": "Vitality", "value": 92, "weight": 0.22, "metrics": [ { "key": "development_activity", "band": "excellent", "name": "Development activity", "note": null, "notes": [], "value": 92, "inputs": { "commits_last_year": 131, "human_commit_share": 0.76, "days_since_last_push": 5, "active_weeks_last_year": 41 }, "components": [ { "key": "push_recency", "name": "Push recency", "detail": "last push 5 days ago", "points": 36, "status": "met", "details": [ { "code": "push_recency", "params": { "days": 5 } } ], "max_points": 36 }, { "key": "commit_cadence", "name": "Commit cadence", "detail": "41/52 weeks with commits", "points": 28.4, "status": "partial", "details": [ { "code": "commit_cadence_weeks", "params": { "weeks": 41 } } ], "max_points": 36 }, { "key": "commit_volume", "name": "Commit volume", "detail": "131 commits in the last year", "points": 18, "status": "met", "details": [ { "code": "commits_last_year", "params": { "count": 131 } } ], "max_points": 18 }, { "key": "openssf_scorecard_maintained", "name": "OpenSSF Scorecard: Maintained", "detail": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10", "points": 10, "status": "met", "details": [], "max_points": 10 } ] }, { "key": "release_discipline", "band": "excellent", "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": 92, "inputs": { "releases_count": 43, "latest_release_tag": "v1.16.2", "releases_from_tags": false, "days_since_latest_release": 25, "mean_days_between_releases": 47.6 }, "components": [ { "key": "ships_releases", "name": "Ships releases", "detail": "43 releases published", "points": 27, "status": "met", "details": [ { "code": "releases_published", "params": { "count": 43 } } ], "max_points": 27 }, { "key": "release_recency", "name": "Release recency", "detail": "latest release 25 days ago", "points": 36, "status": "met", "details": [ { "code": "release_recency", "params": { "days": 25 } } ], "max_points": 36 }, { "key": "release_cadence", "name": "Release cadence", "detail": "a release every ~47.6 days", "points": 19.8, "status": "partial", "details": [ { "code": "release_cadence", "params": { "gap": 47.6 } } ], "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": 5, "days_since_last_human_commit_is_floor": false }, "components": [ { "key": "project_is_still_maintained", "name": "Project is still maintained", "detail": "last human commit 5 days ago", "points": 100, "status": "met", "details": [ { "code": "abandonment_maintained", "params": { "days": 5 } } ], "max_points": 100 } ] } ], "description": "Is the project alive — is code being written and are releases shipping?" }, { "key": "community", "band": "good", "name": "Community & Adoption", "value": 74, "weight": 0.18, "metrics": [ { "key": "popularity", "band": "good", "name": "Popularity & adoption", "note": null, "notes": [], "value": 78, "inputs": { "forks": 513, "stars": 1051, "watchers": 17, "growth_state": "unverified", "growth_factor_pct": 100, "growth_unverified_reason": "no_history" }, "components": [ { "key": "stars", "name": "Stars", "detail": "1,051 stars", "points": 49, "status": "partial", "details": [ { "code": "stars", "params": { "count": 1051 } } ], "max_points": 60 }, { "key": "forks", "name": "Forks", "detail": "513 forks", "points": 22.6, "status": "partial", "details": [ { "code": "forks", "params": { "count": 513 } } ], "max_points": 25 }, { "key": "watchers", "name": "Watchers", "detail": "17 watchers", "points": 6.7, "status": "partial", "details": [ { "code": "watchers", "params": { "count": 17 } } ], "max_points": 15 } ] }, { "key": "community_health", "band": "good", "name": "Community health", "note": null, "notes": [], "value": 70, "inputs": { "has_readme": true, "has_license": true, "has_contributing": true, "has_issue_template": false, "has_code_of_conduct": false, "has_pull_request_template": false }, "components": [ { "key": "readme", "name": "README", "detail": null, "points": 22.5, "status": "met", "details": [], "max_points": 22.5 }, { "key": "license", "name": "License", "detail": "recognized license (Apache-2.0)", "points": 22.5, "status": "met", "details": [ { "code": "license_standard", "params": {} }, { "code": "license_spdx", "params": { "spdx": "Apache-2.0" } } ], "max_points": 22.5 }, { "key": "contributing_guide", "name": "CONTRIBUTING guide", "detail": null, "points": 18, "status": "met", "details": [], "max_points": 18 }, { "key": "code_of_conduct", "name": "Code of conduct", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 13.5 }, { "key": "issue_template", "name": "Issue template", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 7.2 }, { "key": "pr_template", "name": "PR template", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 6.3 } ] } ], "description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?" }, { "key": "governance", "band": "good", "name": "Sustainability & Governance", "value": 84, "weight": 0.24, "metrics": [ { "key": "maintainer_resilience", "band": "excellent", "name": "Maintainer resilience (bus factor)", "note": null, "notes": [], "value": 94, "inputs": { "bus_factor": 7, "contributors_sampled": 99, "top_contributor_share": 0.127 }, "components": [ { "key": "bus_factor", "name": "Bus factor", "detail": "7 contributor(s) cover half of all commits", "points": 51.3, "status": "partial", "details": [ { "code": "bus_factor", "params": { "count": 7 } } ], "max_points": 54 }, { "key": "commit_distribution", "name": "Commit distribution", "detail": "top contributor authored 13% of commits", "points": 19.6, "status": "partial", "details": [ { "code": "top_contributor_share", "params": { "share": 13 } } ], "max_points": 22.5 }, { "key": "contributor_breadth", "name": "Contributor breadth", "detail": "99 contributors", "points": 13.5, "status": "met", "details": [ { "code": "contributors_sampled", "params": { "count": 99 } } ], "max_points": 13.5 }, { "key": "openssf_scorecard_contributors", "name": "OpenSSF Scorecard: Contributors", "detail": "project has 14 contributing companies or organizations", "points": 10, "status": "met", "details": [], "max_points": 10 } ] }, { "key": "responsiveness", "band": "good", "name": "Issue & PR responsiveness", "note": null, "notes": [], "value": 84, "inputs": { "merged_prs": 477, "open_issues": 22, "closed_issues": 221, "issue_closed_ratio": 0.909, "closed_unmerged_prs": 113 }, "components": [ { "key": "issue_resolution", "name": "Issue resolution", "detail": "91% of issues closed", "points": 42.5, "status": "partial", "details": [ { "code": "issues_closed_share", "params": { "share": 91 } } ], "max_points": 46.75 }, { "key": "pr_acceptance", "name": "PR acceptance", "detail": "477/590 decided PRs merged", "points": 30.9, "status": "partial", "details": [ { "code": "decided_prs_merged", "params": { "merged": 477, "decided": 590 } } ], "max_points": 38.25 }, { "key": "openssf_scorecard_code_review", "name": "OpenSSF Scorecard: Code-Review", "detail": "Found 15/19 approved changesets -- score normalized to 7", "points": 10.5, "status": "partial", "details": [], "max_points": 15 } ] }, { "key": "stewardship", "band": "good", "name": "Ownership & stewardship", "note": null, "notes": [], "value": 72, "inputs": { "followers": 1526, "owner_type": "Organization", "is_verified": null, "owner_login": "foundry-rs", "public_repos": 26, "account_age_days": 1619 }, "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": "1,526 followers of foundry-rs", "points": 22.9, "status": "partial", "details": [ { "code": "owner_followers", "params": { "count": 1526, "login": "foundry-rs" } } ], "max_points": 25 }, { "key": "track_record", "name": "Track record", "detail": "26 public repos, account ~4 yr old", "points": 19.3, "status": "partial", "details": [ { "code": "public_repos", "params": { "count": 26 } }, { "code": "account_age_years", "params": { "years": 4 } } ], "max_points": 25 } ] } ], "description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?" }, { "key": "engineering", "band": "moderate", "name": "Engineering Quality", "value": 66, "weight": 0.2, "metrics": [ { "key": "engineering_practices", "band": "moderate", "name": "Engineering practices", "note": null, "notes": [], "value": 66, "inputs": { "has_ci": true, "has_tests": true, "has_editorconfig": false, "has_linter_config": false, "has_precommit_config": false }, "components": [ { "key": "ci_workflows", "name": "CI workflows", "detail": "2 workflow(s)", "points": 24, "status": "met", "details": [ { "code": "ci_workflows", "params": { "count": 2 } } ], "max_points": 24 }, { "key": "tests_present", "name": "Tests present", "detail": null, "points": 24, "status": "met", "details": [], "max_points": 24 }, { "key": "linter_config", "name": "Linter config", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 16 }, { "key": "pre_commit_hooks", "name": "Pre-commit hooks", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 9.6 }, { "key": "editorconfig", "name": ".editorconfig", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 6.4 }, { "key": "openssf_scorecard_ci_tests", "name": "OpenSSF Scorecard: CI-Tests", "detail": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9", "points": 18, "status": "partial", "details": [], "max_points": 20 } ] }, { "key": "documentation", "band": "moderate", "name": "Documentation", "note": null, "notes": [], "value": 65, "inputs": { "topics": [ "cheatcodes", "ethereum", "evm", "forge", "foundry", "solc", "solidity", "std" ], "has_wiki": false, "homepage": "https://getfoundry.sh/reference/forge-std/overview/", "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": "https://getfoundry.sh/reference/forge-std/overview/", "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": "8 topics", "points": 10, "status": "met", "details": [ { "code": "topics_count", "params": { "count": 8 } } ], "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": "excellent", "name": "Security", "value": 88, "weight": 0.16, "metrics": [ { "key": "security_posture", "band": "excellent", "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": 88, "inputs": { "source": "openssf_scorecard", "checks_evaluated": 15, "scorecard_version": "v5.5.0", "checks_inconclusive": 3, "scorecard_aggregate": 8.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": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9", "points": 2.2, "status": "partial", "details": [], "max_points": 2.5 }, { "key": "cii_best_practices", "name": "CII-Best-Practices", "detail": "no effort to earn an OpenSSF best practices badge detected", "points": 0, "status": "missed", "details": [], "max_points": 2.5 }, { "key": "code_review", "name": "Code-Review", "detail": "Found 15/19 approved changesets -- score normalized to 7", "points": 5.2, "status": "partial", "details": [], "max_points": 7.5 }, { "key": "contributors", "name": "Contributors", "detail": "project has 14 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": "23 commit(s) and 0 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": "all dependencies are pinned", "points": 5, "status": "met", "details": [], "max_points": 5 }, { "key": "sast", "name": "SAST", "detail": "SAST tool is run on all commits", "points": 5, "status": "met", "details": [], "max_points": 5 }, { "key": "security_policy", "name": "Security-Policy", "detail": "security policy file detected", "points": 4.5, "status": "partial", "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": "GitHub workflow tokens follow principle of least privilege", "points": 7.5, "status": "met", "details": [], "max_points": 7.5 }, { "key": "vulnerabilities", "name": "Vulnerabilities", "detail": "0 existing vulnerabilities detected", "points": 7.5, "status": "met", "details": [], "max_points": 7.5 } ] }, { "key": "high_risk_jurisdiction_exposure", "band": "excellent", "name": "High-Risk Jurisdiction Exposure", "note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.", "notes": [ { "code": "jurisdiction_evidence_limits", "params": {} } ], "value": 100, "inputs": { "meaning": "self-published location evidence; not nationality or citizenship", "red_flag": false, "exposures": [], "policy_countries": [ "Russia", "Iran", "North Korea" ], "review_only_matches": 0, "assessed_self_published_locations": 3 }, "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": 43, "weight": 0, "metrics": [ { "key": "ai_agent_context", "band": "at_risk", "name": "Agent context & guidance", "note": null, "notes": [], "value": 40, "inputs": { "has_llms_txt": false, "legible_history_share": 1, "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": "76 of 76 human commits state their intent (structured subject or explanatory body)", "points": 40, "status": "met", "details": [ { "code": "legible_history", "params": { "legible": 76, "sampled": 76 } } ], "max_points": 40 } ] }, { "key": "ai_verify_loop", "band": "at_risk", "name": "Verify loop (build / test / typecheck)", "note": null, "notes": [], "value": 40, "inputs": { "has_nix": false, "has_tests": true, "lockfiles": [], "has_dockerfile": false, "typed_language": false, "bootstrap_files": [], "has_devcontainer": false, "has_linter_config": false, "typecheck_configs": [], "agent_commit_share": 0, "toolchain_manifests": [], "dependency_bot_commit_share": 0.24 }, "components": [ { "key": "one_command_bootstrap", "name": "One-command bootstrap", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 18 }, { "key": "automated_tests", "name": "Automated tests", "detail": null, "points": 22, "status": "met", "details": [], "max_points": 22 }, { "key": "lint_format_config", "name": "Lint / format config", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 11 }, { "key": "static_type_checking", "name": "Static type checking", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 11 }, { "key": "reproducible_environment", "name": "Reproducible environment", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 10 }, { "key": "demonstrated_agent_practice", "name": "Demonstrated agent practice", "detail": "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": "24 of the last 100 commits are automated dependency updates", "points": 8, "status": "met", "details": [ { "code": "dependency_bot_commits", "params": { "count": 24, "sampled": 100 } } ], "max_points": 8 }, { "key": "openssf_scorecard_pinned_dependencies", "name": "OpenSSF Scorecard: Pinned-Dependencies", "detail": "all dependencies are pinned", "points": 10, "status": "met", "details": [], "max_points": 10 } ] }, { "key": "ai_code_legibility", "band": "moderate", "name": "Code legibility for models", "note": null, "notes": [], "value": 55, "inputs": { "primary_language": "Solidity", "largest_source_bytes": 17400, "source_files_sampled": 1, "oversized_source_files": 0 }, "components": [ { "key": "type_checkable_code", "name": "Type-checkable code", "detail": "Solidity without a type-check config", "points": 0, "status": "missed", "details": [ { "code": "no_typecheck_config_language", "params": { "language": "Solidity" } } ], "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? 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", "npm package 'forge-std' points at a different repository (https://github.com/shunkakinoki/contracts); excluded from ecosystem scoring" ], "report_type": "repository", "generated_at": "2026-07-26T07:56:32.605063Z", "schema_version": "0.27.0", "badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/f/foundry-rs/forge-std.svg", "full_name": "foundry-rs/forge-std", "license_state": "standard", "license_spdx": "Apache-2.0" }, "repoMeta": null, "notFound": false, "related": [ { "id": 31985, "full_name": "NomicFoundation/hardhat", "url": "https://github.com/NomicFoundation/hardhat", "description": "Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software. ", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript" ], "topics": [ "ethereum", "smart-contracts", "blockchain", "dapps", "javascript", "tooling", "task-runner", "solidity", "typescript", "debugging", "hardhat", "ethers.js", "hardhat-plugin", "ledger", "hardware-wallet", "foundry", "forge", "remappings", "deployment", "keystore", "storage", "typechain" ], "license_spdx": null, "license_state": "custom", "stars": 8495, "forks": 1727, "watchers": 76, "monthly_downloads": 1841638, "latest_score": 86, "latest_band": "excellent", "latest_scanned_at": "2026-07-21T06:54:04.581446Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "organic", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 22923, "full_name": "OpenZeppelin/openzeppelin-contracts", "url": "https://github.com/OpenZeppelin/openzeppelin-contracts", "description": "OpenZeppelin Contracts is a library for secure smart contract development.", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "Solidity", "languages": [ "Solidity", "JavaScript" ], "topics": [ "ethereum", "solidity", "evm", "security", "smart-contracts", "smart", "contracts", "zeppelin" ], "license_spdx": "MIT", "license_state": "standard", "stars": 27189, "forks": 12404, "watchers": 640, "monthly_downloads": 3798454, "latest_score": 87, "latest_band": "excellent", "latest_scanned_at": "2026-07-18T22:55:51.907424Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 17848, "full_name": "smartcontractkit/chainlink", "url": "https://github.com/smartcontractkit/chainlink", "description": "node of the decentralized oracle network, bridging on and off-chain computation", "ecosystem": "go", "ecosystems": [ "go", "npm" ], "primary_language": "Go", "languages": [ "Go" ], "topics": [ "chainlink", "ethereum", "blockchain", "golang", "solidity", "oracle" ], "license_spdx": null, "license_state": "custom", "stars": 8218, "forks": 1971, "watchers": 311, "monthly_downloads": null, "latest_score": 89, "latest_band": "excellent", "latest_scanned_at": "2026-07-17T19:05:31.026359Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 39098, "full_name": "Consensys/teku", "url": "https://github.com/Consensys/teku", "description": "🚀 Open-source Ethereum consensus client written in Java", "ecosystem": "maven", "ecosystems": [ "maven", "npm" ], "primary_language": "Java", "languages": [ "Java" ], "topics": [ "java", "consensys", "ethereum", "beacon-chain", "eth2", "proof-of-stake", "teku", "eth2-clients" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 777, "forks": 381, "watchers": 33, "monthly_downloads": null, "latest_score": 87, "latest_band": "excellent", "latest_scanned_at": "2026-07-24T19:51:48.070567Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "badge_url": "" }, { "id": 24852, "full_name": "MetaMask/metamask-extension", "url": "https://github.com/MetaMask/metamask-extension", "description": ":globe_with_meridians: :electric_plug: The MetaMask browser extension enables browsing Ethereum blockchain enabled websites", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript", "JavaScript" ], "topics": [ "chrome", "extension", "ethereum", "firefox", "dapp", "dapp-developers", "opera", "brave", "edge" ], "license_spdx": null, "license_state": "custom", "stars": 13179, "forks": 5559, "watchers": 594, "monthly_downloads": null, "latest_score": 87, "latest_band": "excellent", "latest_scanned_at": "2026-07-19T08:30:31.433056Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "badge_url": "" }, { "id": 39738, "full_name": "MetaMask/snaps", "url": "https://github.com/MetaMask/snaps", "description": "Extend the functionality of MetaMask using Snaps", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript" ], "topics": [ "metamask", "monorepo", "snaps", "ethereum" ], "license_spdx": null, "license_state": "custom", "stars": 844, "forks": 656, "watchers": 74, "monthly_downloads": 1041338, "latest_score": 86, "latest_band": "excellent", "latest_scanned_at": "2026-07-25T07:14:24.190939Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "badge_url": "" } ] } }
Registro público
Informe de salud del softwareesquema 0.27.0 · métricas 1.13.0 · 2026-07-26 07:56 UTC

foundry-rs / forge-std

A collection of helpful contracts and libraries for use with Forge and Foundry

SolidityApache-2.0★ 1051 estrellas⑂ 513 forksdesde dic 2021Ver en GitHub ↗

foundry-rs/forge-std tiene un índice de salud de 81 sobre 100, lo que lo sitúa en la banda Bueno. Su puntuación más alta es Vitality (92/100) y la más baja, AI Readiness (43/100). Se actualizó por última vez hace 5 días. 7 personas concentran la mayor parte del trabajo reciente.

81
global / 100
Bueno

Índice de salud del software

Las métricas se agrupan en categorías ponderadas sobre una escala de 1 a 100. El resultado global parte de su media; cuando la evidencia pública activa la Política de Jurisdicciones de Alto Riesgo, la calificación se ajusta y recibe el límite 49 (En riesgo). Preparación para IA queda fuera.

81
Excelente85-100Ejemplar; cumple prácticamente todos los criterios evaluados
Bueno70-84Saludable; carencias menores
Moderado50-69Aceptable con carencias notables; se recomienda revisión
En riesgo30-49Debilidades significativas; su adopción exige cautela
Crítico1-29Problemas graves (proyecto abandonado, un solo mantenedor, sin higiene)
VitalidadComunidad yAdopciónSostenibilidady GobernanzaCalidad deIngenieríaSeguridadPreparaciónpara IA

Perfil de puntuación

Cada eje es una categoría. La forma importa más que la media: un proyecto sano llena toda la figura, mientras que un perfil de picos y cráteres indica que la fortaleza en una dimensión enmascara el riesgo en otra.

Titularidad

FoundryOrganización
1526 seguidores26 repositorios públicosdesde feb 2022

Este repositorio está respaldado por una organización: una custodia compartida y responsable que puede sobrevivir a cualquier mantenedor individual.

Ecosistemas de paquetes

RegistroPaqueteVersiónDescargas / mesVersionesÚltima publicación
npmforge-stdapunta a otro repositorio; no se puntúa1.1.225.4145hace 1466 días

Métricas por categoría

Vitalidad

¿Está vivo el proyecto: se escribe código y se publican versiones?

92Excelente · 22% del índice global
Cómo se puntúa
36/36Recencia de push — último push hace 5 días
28.4/36Cadencia de commits — 41/52 semanas con commits
18/18Volumen de commits — 131 commits en el último año
10/10OpenSSF Scorecard: Maintained — 23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Datos de entrada utilizados
commits_last_year131
human_commit_share0,76
days_since_last_push5
active_weeks_last_year41
Cómo se puntúa
27/27Publica versiones — 43 versiones publicadas
36/36Recencia de las versiones — última versión hace 25 días
19.8/27Cadencia de publicación — una versión cada ~47,6 días
0/10OpenSSF Scorecard: Signed-Releases — sin datos
Datos de entrada utilizados
releases_count43
latest_release_tagv1.16.2
releases_from_tagsno
days_since_latest_release25
mean_days_between_releases47,6
Excluidos de la puntuación (sin datos o no aplicable): OpenSSF Scorecard: Signed-Releases. Los pesos restantes se han renormalizado.

Comunidad y Adopción

¿Tiene el proyecto usuarios, descargas, atención y unas condiciones acogedoras para quienes contribuyen?

74Bueno · 18% del índice global
Cómo se puntúa
49/60Estrellas — 1051 estrellas
22.6/25Forks — 513 forks
6.7/15Observadores — 17 observadores
Datos de entrada utilizados
forks513
stars1051
watchers17
growth_stateunverified
growth_factor_pct100
growth_unverified_reasonno_history
Cómo se puntúa
22.5/22.5README
22.5/22.5Licencia — licencia reconocida (Apache-2.0)
18/18Guía CONTRIBUTING
0/13.5Código de conducta
0/7.2Plantilla de issues
0/6.3Plantilla de PR
Datos de entrada utilizados
has_readme
has_license
has_contributing
has_issue_templateno
has_code_of_conductno
has_pull_request_templateno

Sostenibilidad y Gobernanza

¿Sobrevivirá el proyecto a sus personas: factor bus, capacidad de respuesta, quién lo respalda y mantenimiento del paquete?

84Bueno · 24% del índice global
Cómo se puntúa
51.3/54Factor bus — la mitad de los commits recae en 7 contribuyente(s)
19.6/22.5Distribución de commits — el principal contribuyente firma el 13% de los commits
13.5/13.5Amplitud de contribuyentes — 99 contribuyentes
10/10OpenSSF Scorecard: Contributors — project has 14 contributing companies or organizations
Datos de entrada utilizados
bus_factor7
contributors_sampled99
top_contributor_share0,127
Cómo se puntúa
42.5/46.8Resolución de issues — 91% de issues cerradas
30.9/38.3Aceptación de PR — 477/590 PR decididos fusionados
10.5/15OpenSSF Scorecard: Code-Review — Found 15/19 approved changesets -- score normalized to 7
Datos de entrada utilizados
merged_prs477
open_issues22
closed_issues221
issue_closed_ratio0,909
closed_unmerged_prs113
Cómo se puntúa
30/30Respaldo de la propiedad — propiedad de una organización
0/20Dominio verificado
22.9/25Alcance del propietario — 1526 seguidores de foundry-rs
19.3/25Trayectoria — 26 repos públicos, cuenta de ~4 años
Datos de entrada utilizados
followers1526
owner_typeOrganization
is_verified
owner_loginfoundry-rs
public_repos26
account_age_days1619

Calidad de Ingeniería

¿Existen unas prácticas mínimas de ingeniería y documentación?

66Moderado · 20% del índice global
Cómo se puntúa
24/24Flujos de trabajo de CI — 2 flujo(s) de trabajo
24/24Pruebas presentes
0/16Configuración de linter
0/9.6Hooks de pre-commit
0/6.4.editorconfig
18/20OpenSSF Scorecard: CI-Tests — 28 out of 30 merged PRs checked by a CI test -- score normalized to 9
Datos de entrada utilizados
has_ci
has_tests
has_editorconfigno
has_linter_configno
has_precommit_configno

Documentación

65Moderado
Cómo se puntúa
30/30README
0/25Directorio de documentación
15/15Sitio de documentación / página del proyecto — https://getfoundry.sh/reference/forge-std/overview/
10/10Descripción del repositorio
10/10Topics — 8 topics
0/10Wiki
Datos de entrada utilizados
topicscheatcodes, ethereum, evm, forge, foundry, solc, solidity, std
has_wikino
homepagehttps://getfoundry.sh/reference/forge-std/overview/
has_readme
has_docs_dirno
has_description

Seguridad

¿Son sólidas las prácticas visibles de seguridad y de cadena de suministro, sin exposición jurisdiccional de alto riesgo sin resolver?

88Excelente · 16% del índice global
Cómo se puntúa
7.5/7.5Binary-Artifacts — no binaries found in the repo
0/7.5Branch-Protection — sin datos
2.2/2.5CI-Tests — 28 out of 30 merged PRs checked by a CI test -- score normalized to 9
0/2.5CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected
5.2/7.5Code-Review — Found 15/19 approved changesets -- score normalized to 7
2.5/2.5Contributors — project has 14 contributing companies or organizations
10/10Dangerous-Workflow — no dangerous workflow patterns detected
7.5/7.5Dependency-Update-Tool — update tool detected
0/5Fuzzing — project is not fuzzed
2.5/2.5Licencia — license file detected
7.5/7.5Maintained — 23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
0/5Packaging — sin datos
5/5Pinned-Dependencies — all dependencies are pinned
5/5SAST — SAST tool is run on all commits
4.5/5Security-Policy — security policy file detected
0/7.5Signed-Releases — sin datos
7.5/7.5Token-Permissions — GitHub workflow tokens follow principle of least privilege
7.5/7.5Vulnerabilities — 0 existing vulnerabilities detected
Datos de entrada utilizados
sourceopenssf_scorecard
checks_evaluated15
scorecard_versionv5.5.0
checks_inconclusive3
scorecard_aggregate8,8
Excluidos de la puntuación (sin datos o no aplicable): branch_protection, packaging, signed_releases. Los pesos restantes se han renormalizado.

Preparación para IA

¿Hasta qué punto está el repositorio preparado para desarrollarse y mantenerse con agentes de codificación de IA? Es una insignia independiente y experimental — peso 0,0, de modo que se presenta por separado y no afecta a la puntuación de salud global.

43En riesgo · 0% del índice global
Cómo se puntúa
0/45Instrucciones para agentes — sin CLAUDE.md / AGENTS.md / reglas de editor
0/15Documentación legible por máquinas (llms.txt)
40/40Historial de commits legible — 76 de 76 commits humanos declaran su intención (asunto estructurado o cuerpo explicativo)
Datos de entrada utilizados
has_llms_txtno
legible_history_share1
agent_instruction_files
agent_instruction_max_bytes
Cómo se puntúa
0/18Arranque con un solo comando
22/22Pruebas automatizadas
0/11Configuración de lint / formato
0/11Verificación estática de tipos
0/10Entorno reproducible
0/10Práctica demostrada con agentes — ningún commit con autoría de agente entre los últimos 100
8/8Mantenimiento automatizado — 24 de los últimos 100 commits son actualizaciones automáticas de dependencias
10/10OpenSSF Scorecard: Pinned-Dependencies — all dependencies are pinned
Datos de entrada utilizados
has_nixno
has_tests
lockfiles
has_dockerfileno
typed_languageno
bootstrap_files
has_devcontainerno
has_linter_configno
typecheck_configs
agent_commit_share0
toolchain_manifests
dependency_bot_commit_share0,24
Cómo se puntúa
0/45Código verificable por tipos — Solidity sin configuración de verificación de tipos
55/55Tamaños de archivo manejables — 0/1 archivos fuente de más de 60 KB
Datos de entrada utilizados
primary_languageSolidity
largest_source_bytes17.400
source_files_sampled1
oversized_source_files0

Datos clave

1051estrellas de GitHub
99contribuidores
131commits en los últimos 12 meses
5días desde el último push
43versiones publicadas
7factor bus
22issues abiertas
npmecosistemas de paquetes

Advertencias de recopilación de datos

  • Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token
  • npm package 'forge-std' points at a different repository (https://github.com/shunkakinoki/contracts); excluded from ecosystem scoring

Más detalle

Historial de estrellas y forks 0 ★ / 513 ⇿
0Estrellas
513Forks
43Versiones

Cuándo se añadió cada estrella y fork, recopilado de GitHub y agrupado por día. El crecimiento acumulado se sitúa justo encima de las adiciones diarias que lo componen, de modo que ambos se leen en conjunto: la acumulación orgánica sostenida no se parece en nada a un pico abrupto y efímero. Cuando esa diferencia es medible, se informa como autenticidad del crecimiento.

0100200300400500600504292022-012024-042026-07
Mayor 1Menor 17Parche 25

Cada punto abarca 5 días.

OpenSSF Scorecard 8.8 / 10
8.8agregado

Evaluación de seguridad independiente y agnóstica en cuanto a herramientas, procedente del proyecto de código abierto OpenSSF Scorecard. Cada comprobación premia una práctica de seguridad, no la herramienta de un proveedor concreto. Las comprobaciones que Scorecard no pudo determinar se marcan como n/d y se excluyen de la puntuación de seguridad (nunca se cuentan como cero).Scorecard v5.5.0 · 2026-07-26 07:56 UTC

10Binary-Artifactsno binaries found in the repo
n/dBranch-Protectioninternal 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
9CI-Tests28 out of 30 merged PRs checked by a CI test -- score normalized to 9
0CII-Best-Practicesno effort to earn an OpenSSF best practices badge detected
7Code-ReviewFound 15/19 approved changesets -- score normalized to 7
10Contributorsproject has 14 contributing companies or organizations
10Dangerous-Workflowno dangerous workflow patterns detected
10Dependency-Update-Toolupdate tool detected
0Fuzzingproject is not fuzzed
10Licenselicense file detected
10Maintained23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
n/dPackagingpackaging workflow not detected
10Pinned-Dependenciesall dependencies are pinned
10SASTSAST tool is run on all commits
9Security-Policysecurity policy file detected
n/dSigned-Releasesno releases found
10Token-PermissionsGitHub workflow tokens follow principle of least privilege
10Vulnerabilities0 existing vulnerabilities detected
Todas las dependencias 0

Conjunto completo de dependencias resueltas según el grafo de dependencias de GitHub: 0 paquetes directos y 0 indirectos (transitivos). El cierre transitivo es completo cuando el repositorio incluye un lockfile.

RegistroPaqueteVersiónRelación
Avisos de dependencias sin evaluar

El cotejo de avisos no pudo ejecutarse para este informe: No resolved dependencies to assess

Informe JSON sin procesar legible por máquina
{
  "data": {
    "repo": {
      "topics": [
        "cheatcodes",
        "ethereum",
        "evm",
        "forge",
        "foundry",
        "solc",
        "solidity",
        "std"
      ],
      "is_fork": false,
      "size_kb": 1136,
      "has_wiki": false,
      "homepage": "https://getfoundry.sh/reference/forge-std/overview/",
      "languages": {
        "Python": 17400,
        "Solidity": 932175
      },
      "pushed_at": "2026-07-20T15:22:02Z",
      "created_at": "2021-12-24T15:55:24Z",
      "owner_type": "Organization",
      "updated_at": "2026-07-25T07:08:10Z",
      "description": "A collection of helpful contracts and libraries for use with Forge and Foundry",
      "is_archived": false,
      "is_disabled": false,
      "license_spdx": "Apache-2.0",
      "default_branch": "master",
      "license_spdx_raw": "Apache-2.0",
      "primary_language": "Solidity",
      "significant_languages": [
        "Solidity"
      ]
    },
    "owner": {
      "blog": "https://getfoundry.sh",
      "name": "Foundry",
      "type": "Organization",
      "login": "foundry-rs",
      "company": null,
      "location": null,
      "followers": 1526,
      "avatar_url": "https://avatars.githubusercontent.com/u/99892494?v=4",
      "created_at": "2022-02-17T14:33:29Z",
      "is_verified": null,
      "public_repos": 26,
      "account_age_days": 1619
    },
    "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": "v1.16.2",
          "kind": "patch",
          "published_at": "2026-06-30T14:22:32Z"
        },
        {
          "tag": "v1.16.1",
          "kind": "patch",
          "published_at": "2026-04-29T15:33:27Z"
        },
        {
          "tag": "v1.16.0",
          "kind": "minor",
          "published_at": "2026-04-23T09:26:48Z"
        },
        {
          "tag": "v1.15.0",
          "kind": "minor",
          "published_at": "2026-02-17T10:01:32Z"
        },
        {
          "tag": "v1.14.0",
          "kind": "minor",
          "published_at": "2026-01-05T13:16:54Z"
        },
        {
          "tag": "v1.13.0",
          "kind": "minor",
          "published_at": "2026-01-05T10:27:31Z"
        },
        {
          "tag": "v1.12.0",
          "kind": "minor",
          "published_at": "2025-11-26T09:06:26Z"
        },
        {
          "tag": "v1.11.0",
          "kind": "minor",
          "published_at": "2025-10-08T08:14:22Z"
        },
        {
          "tag": "v1.10.0",
          "kind": "minor",
          "published_at": "2025-07-31T12:32:52Z"
        },
        {
          "tag": "v1.9.7",
          "kind": "patch",
          "published_at": "2025-04-28T08:12:33Z"
        },
        {
          "tag": "v1.9.6",
          "kind": "patch",
          "published_at": "2025-01-31T13:35:06Z"
        },
        {
          "tag": "v1.9.5",
          "kind": "patch",
          "published_at": "2024-12-19T16:21:16Z"
        },
        {
          "tag": "v1.9.4",
          "kind": "patch",
          "published_at": "2024-10-24T22:24:03Z"
        },
        {
          "tag": "v1.9.3",
          "kind": "patch",
          "published_at": "2024-09-26T15:24:49Z"
        },
        {
          "tag": "v1.9.2",
          "kind": "patch",
          "published_at": "2024-08-05T16:27:13Z"
        },
        {
          "tag": "v1.9.1",
          "kind": "patch",
          "published_at": "2024-07-02T15:21:05Z"
        },
        {
          "tag": "v1.9.0",
          "kind": "minor",
          "published_at": "2024-06-29T19:48:02Z"
        },
        {
          "tag": "v1.8.2",
          "kind": "patch",
          "published_at": "2024-05-08T16:00:28Z"
        },
        {
          "tag": "v1.8.1",
          "kind": "patch",
          "published_at": "2024-03-17T21:41:20Z"
        },
        {
          "tag": "v1.8.0",
          "kind": "minor",
          "published_at": "2024-03-11T23:50:50Z"
        },
        {
          "tag": "v1.7.6",
          "kind": "patch",
          "published_at": "2024-01-17T21:57:20Z"
        },
        {
          "tag": "v1.7.5",
          "kind": "patch",
          "published_at": "2024-01-11T19:11:16Z"
        },
        {
          "tag": "v1.7.4",
          "kind": "patch",
          "published_at": "2023-12-15T16:13:20Z"
        },
        {
          "tag": "v1.7.3",
          "kind": "patch",
          "published_at": "2023-11-20T14:44:36Z"
        },
        {
          "tag": "v1.7.2",
          "kind": "patch",
          "published_at": "2023-11-13T23:24:28Z"
        },
        {
          "tag": "v1.7.1",
          "kind": "patch",
          "published_at": "2023-10-05T20:35:29Z"
        },
        {
          "tag": "v1.7.0",
          "kind": "minor",
          "published_at": "2023-10-04T14:55:27Z"
        },
        {
          "tag": "v1.6.1",
          "kind": "patch",
          "published_at": "2023-09-05T16:08:45Z"
        },
        {
          "tag": "v1.6.0",
          "kind": "minor",
          "published_at": "2023-07-11T18:04:16Z"
        },
        {
          "tag": "v1.5.6",
          "kind": "patch",
          "published_at": "2023-05-26T15:32:42Z"
        },
        {
          "tag": "v1.5.5",
          "kind": "patch",
          "published_at": "2023-04-30T14:02:30Z"
        },
        {
          "tag": "v1.5.4",
          "kind": "patch",
          "published_at": "2023-04-27T21:09:52Z"
        },
        {
          "tag": "v1.5.3",
          "kind": "patch",
          "published_at": "2023-04-06T14:23:21Z"
        },
        {
          "tag": "v1.5.2",
          "kind": "patch",
          "published_at": "2023-03-16T16:57:55Z"
        },
        {
          "tag": "v1.5.1",
          "kind": "patch",
          "published_at": "2023-03-09T21:47:11Z"
        },
        {
          "tag": "v1.5.0",
          "kind": "minor",
          "published_at": "2023-03-01T00:34:28Z"
        },
        {
          "tag": "v1.4.0",
          "kind": "minor",
          "published_at": "2023-02-14T16:55:45Z"
        },
        {
          "tag": "v1.3.0",
          "kind": "minor",
          "published_at": "2023-01-18T15:23:23Z"
        },
        {
          "tag": "v1.2.0",
          "kind": "minor",
          "published_at": "2022-12-16T20:48:50Z"
        },
        {
          "tag": "v1.1.1",
          "kind": "patch",
          "published_at": "2022-11-22T10:46:34Z"
        },
        {
          "tag": "v1.1.0",
          "kind": "minor",
          "published_at": "2022-11-11T23:11:09Z"
        },
        {
          "tag": "v1.0.0",
          "kind": "major",
          "published_at": "2022-10-31T23:55:34Z"
        },
        {
          "tag": "v0.1.0",
          "kind": "minor",
          "published_at": "2022-04-14T15:18:14Z"
        }
      ],
      "recent_commits": [
        {
          "oid": "6e8c4a92c9a8b31c1b0f0c39296d1fa4695c7df8",
          "body": null,
          "is_bot": true,
          "headline": "chore(deps): bump the ci-weekly group with 2 updates (#891)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-07-20T15:22:00Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b96a46a954876eea1c0ffb48c63e1dfbac593781",
          "body": "## Summary\n\n- add the latest stable Foundry cheatcodes to `Vm` and `VmSafe`\n- add `getSelectors`, `parseJsonArrayLength`, and the `mockCall`\noverload with code-injection control\n- update the `Vm` and `VmSafe` interface IDs",
          "is_bot": false,
          "headline": "chore: update Vm interface cheatcodes (#890)",
          "author_name": "Mablr",
          "author_login": "mablr",
          "committed_at": "2026-07-20T08:34:21Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "5cf980eefbf8a54050628334163127ed35453558",
          "body": "Dependabot will resolve any conflicts with this PR as long as you don't\nalter it yourself. You can also trigger a rebase manually by commenting\n`@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</sum\n[…]\n of the specified dependency and ignore\nconditions\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump the ci-weekly group with 3 updates (#889)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-07-13T09:59:08Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "bf647bd6046f2f7da30d0c2bf435e5c76a780c1b",
          "body": "## Summary\n- bump package.json version from 1.16.1 to 1.16.2\n\n## Testing\n- jq -e '.version == \"1.16.2\"' package.json\\n- git diff\n--check\\n\\nPrompted by: @grandizzy",
          "is_bot": false,
          "headline": "chore: bump package version to 1.16.2 (#884)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-06-30T14:20:15Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "653ed00197d3ce1dce822c312b641c0a8ac7c7f1",
          "body": "Added:\n- `signKeychain(uint256 privateKey, address account, bytes32 digest)`\n- `signKeychainAdmin(uint256 privateKey, address account, bytes32\ndigest)`\n- `isImplicitlyApproved(address spender)`\n- `isIsolateMode()`\n- `lastFrameGas()`\n- `rpcJson(string calldata method, string calldata params)`\n- `rpcJ\n[…]\npshotGasLastFrame(string calldata name)` instead\n\n- `snapshotGasLastCall(string calldata group, string calldata name)`\n- use `snapshotGasLastFrame(string calldata group, string calldata\nname)` instead",
          "is_bot": false,
          "headline": "chore: update `Vm` interface cheatcodes (#883)",
          "author_name": "Mablr",
          "author_login": "mablr",
          "committed_at": "2026-06-29T14:35:57Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "27acee125d83c657af06b1cab680e0ed732be4b5",
          "body": "Bumps the ci-weekly group with 3 updates:\n[actions/checkout](https://github.com/actions/checkout),\n[github/codeql-action/init](https://github.com/github/codeql-action) and\n[github/codeql-action/analyze](https://github.com/github/codeql-action).\n\nUpdates `actions/checkout` from 6.0.2 to 7.0.0\n<detail\n[…]\n of the specified dependency and ignore\nconditions\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump the ci-weekly group with 3 updates (#882)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-06-29T11:35:44Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "257559546b763ec5fa7371fb77fef9102db86446",
          "body": "## Summary\n- quote Dependabot `schedule.time` so GitHub parses it as a string\n- set the fixed weekly run time to Monday at 07:00 UTC\n\n## Testing\n- checked `.github/dependabot.yml` contains quoted `time: \"07:00\"`\nentries\n\n---------\n\nCo-authored-by: Centaur AI <ai@centaur.local>",
          "is_bot": false,
          "headline": "fix: quote dependabot schedule time (#878)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-06-11T18:08:57Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "6c5487d3755ab40f1c9f28684366fefeaed90f6c",
          "body": "## Summary\n- run all Dependabot ecosystems on a weekly schedule\n- group dependency updates with a catch-all pattern\n- group GitHub Actions/CI updates as `ci-weekly`\n\n## Testing\n- validated `.github/dependabot.yml` parses as YAML and every update\nentry is weekly with a dependency group\n\nCo-authored-by: Centaur AI <ai@centaur.local>",
          "is_bot": false,
          "headline": "chore: group weekly dependabot updates (#877)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-06-11T17:59:29Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "81df7a1a97ab719d65013ab6e6369a58835b882c",
          "body": "Added cheatcodes:\n\n- `isImplicitlyApproved(address spender)`\n- `rpcJson(string calldata method, string calldata params)`\n- `rpcJson(string calldata urlOrAlias, string calldata method, string\ncalldata params)`\n- `assumeImplicitApproval(address spender)`\n- `setLogoURI(address token, string calldata ne\n[…]\ning calldata newLogoURI)`\n- `expectLogoURIUpdated(address token, address updater, string calldata\nnewLogoURI)`\n- `expectTip20LogoURIUpdated(address token, address updater, string\ncalldata newLogoURI)`",
          "is_bot": false,
          "headline": "chore: update Vm interface cheatcodes (#872)",
          "author_name": "Mablr",
          "author_login": "mablr",
          "committed_at": "2026-06-05T09:40:10Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "b3bc8b154382a75d0b0ef22d7fd4a0a5f0feee0e",
          "body": ":saluting_face:",
          "is_bot": false,
          "headline": "Update CODEOWNERS (#866)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-05-22T14:31:04Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "7e403a0723847e71b326a05e1bff9cabd4e75ccc",
          "body": "[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some\ntime.\n\nNote: if you make any changes to this PR yourself, they will take\nprecedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github/codeql-ac\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump github/codeql-action from 4.35.3 to 4.35.4 (#865)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-20T12:30:48Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "1da449b7b56a2ba3b513a25cdcd27c5c95b9c869",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.46.0 to\n1.46.1.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.46.1</h2>\n<h2>[1.46.1] - 2026-05-08</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.46.0 to 1.46.1 (#864)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-20T12:29:35Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "b090968353a209833d4a6f1383230477e96d8438",
          "body": "Bumps [github/codeql-action](https://github.com/github/codeql-action)\nfrom 4.35.2 to 4.35.3.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/github/codeql-action/releases\">github/codeql-action's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v4.35.3</h2>\n<ul>\n<li>\n[…]\nf-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump github/codeql-action from 4.35.2 to 4.35.3 (#859)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-18T10:48:39Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "4740ad1aaf22936ac401c25b33efefc9c8cde270",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.2 to\n1.46.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.46.0</h2>\n<h2>[1.46.0] - 2026-04-30</h2>\n<h\n[…]\nf-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.45.2 to 1.46.0 (#858)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-18T10:45:03Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "c90c02ffa470b46d92ffaab093baeb296300870b",
          "body": "Towards #653\n\nAddresses the second goal of #653 (\"Mark private variables and functions\nwith underscore prefix\") by aligning the remaining files with the\nconvention already used in `StdAssertions.sol`, `StdInvariant.sol`, and\n`StdConfig.sol`.\n\nNo public/internal/external function signatures or behavi\n[…]\n this PR.\n- `internal` constants in `Base.sol` and `StdConstants.sol` — out of\nscope.\n\n### Verification\n`forge build` and `forge test` both pass (202/202 tests).\n\nCo-authored-by: Amp <amp@ampcode.com>",
          "is_bot": false,
          "headline": "refactor: prefix private members with underscore (#861)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-05-13T10:03:38Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "84ab71a60fa9fd830ac9e169ec34a8967c282b38",
          "body": "Towards #653\n\nAdds `@notice` tags to all public-facing and internal functions enabling\nforge doc to autogenerate reference documentation for the Foundry Book.\nNo function signatures or behavior changed.\n\n---------\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>\nCo-authored-by: Amp <amp@ampcode.com>",
          "is_bot": false,
          "headline": "docs: add NatSpec `@notice` to public functions (#860)",
          "author_name": "Mablr",
          "author_login": "mablr",
          "committed_at": "2026-05-13T08:47:17Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "8b531a016f15f761a632f5149a828228573420fc",
          "body": "This PR adds missing NatSpec to `stdMath` and key `StdUtils` helpers\n(`bound`, `boundPrivateKey`, `bytesToUint`, `computeCreate*`,\n`hashInitCode`, and `getTokenBalances`).\n\nThis is needed because these widely used utility APIs were\nunder-documented, and `bound` semantics are easy to misread without\n\n[…]\nior changes. The annotations were written\ndirectly from the current implementation and existing revert conditions.\n\n---------\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "Add NatSpec for StdUtils (#830)",
          "author_name": "Emil Sørensen",
          "author_login": "esorense",
          "committed_at": "2026-05-05T11:19:45Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "753eaad0d35547c53f0eb64fff6d12a89f0eca18",
          "body": "The `stdJson` docs currently use a generic `<json_path>` placeholder,\nbut the API actually expects the same selector syntax as\n`vm.parseJson*`. The existing tests already show the real usage with\n`.a` for a field and `$` for the root object in `test/StdJson.t.sol`, so\nthe current comments are easy t\n[…]\nmment-only change with no ABI or runtime impact, just a documentation\nfix that makes the interface clearer and more accurate.\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "Clarify stdJson key syntax (#832)",
          "author_name": "tn0vak",
          "author_login": "tn0vak",
          "committed_at": "2026-05-05T11:10:50Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "e4cc8e2477e4b73f172bf25754fa2f9c1ddfec53",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.1 to\n1.45.2.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.45.2</h2>\n<h2>[1.45.2] - 2026-04-27</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.45.1 to 1.45.2 (#856)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-05T10:43:29Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "c3fb87018f8674e5125bff0e46c007ba97dd65c1",
          "body": "…857)\n\nBumps\n[foundry-rs/foundry-toolchain](https://github.com/foundry-rs/foundry-toolchain)\nfrom 1.7.0 to 1.8.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/foundry-rs/foundry-toolchain/releases\">foundry-rs/foundry-toolchain's\nreleases</a>.</em></p>\n<b\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump foundry-rs/foundry-toolchain from 1.7.0 to 1.8.0 (#…",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-05-05T10:41:22Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "620536fa5277db4e3fd46772d5cbc1ea0696fb43",
          "body": "To include compatibility fix:\nhttps://github.com/foundry-rs/forge-std/pull/854 so users don't get the\nwarning wall if they use 0.8.35",
          "is_bot": false,
          "headline": "chore(release): bump package.json for v1.16.1 (#855)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-04-29T15:23:14Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "cd9b6716e86117566a05030ea741ef2c0006d0b5",
          "body": "Solidity 0.8.35 was just released. Bumps `SOLC_LATEST` to 0.8.35 and\nclears `SOLC_PRERELEASE` (the matrix loop is now guarded so prerelease\nentries are skipped when empty).\n\n---------\n\nCo-authored-by: Amp <amp@ampcode.com>",
          "is_bot": false,
          "headline": "ci: bump SOLC_LATEST to 0.8.35 (#854)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-04-29T15:22:58Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ff8c25c9f7b9500a53410ec3cedb3bad6ea59581",
          "body": "Bumps [github/codeql-action](https://github.com/github/codeql-action)\nfrom 4.35.1 to 4.35.2.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/github/codeql-action/releases\">github/codeql-action's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v4.35.2</h2>\n<ul>\n<li>\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump github/codeql-action from 4.35.1 to 4.35.2 (#853)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-04-29T14:59:15Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "8987040ede9553cea20c95ad40d0455930f9c8e0",
          "body": "## Problem\n\n`scripts/vm.py` uses Python 3.10+ union type syntax (`int | str`, `X |\nNone`) which fails on macOS stock Python 3.9.6:\n\n```\nTypeError: unsupported operand type(s) for |: 'type' and 'type'\n```\n\n## Fix\n\n- Replace `int | str` with `Union[int, str]` and `Cheatcodes | None`\nwith `Optional[Cheatcodes]`\n- Import `Union` and `Optional` from `typing`\n- Regenerated `src/Vm.sol` via `vm.py`\n- Updated interface ID hashes in `test/Vm.t.sol`\n\n---------\n\nCo-authored-by: Amp <amp@ampcode.com>",
          "is_bot": false,
          "headline": "fix: make vm.py compatible with Python 3.9 (stock macOS) (#852)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-04-23T09:18:32Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "d6f8a21c92ed7934918c67a1a39631589560838d",
          "body": "Preparation for the next release of forge-std",
          "is_bot": false,
          "headline": "chore: prepare forge-std 1.16 release (#851)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-04-23T09:08:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f93c42c1c15e06db6a72a602d2a37dd3187a08d3",
          "body": "### Summary\n\nAdds [Gravity](https://gravity.xyz) L1 mainnet (chain id `127001`,\nnative token `G`) to `StdChains` so that scripts and tests can resolve\nthe chain via `getChain(\"grav\")`.\n\nGravity L1 is a new EVM-compatible L1 (reth-based execution +\nAptos-derived BFT consensus). The `grav` alias match\n[…]\nlloy-rs/chains#275\n\n### Checklist\n\n- [x] `forge build` passes locally\n- [x] Alias matches `ethereum-lists/chains` `shortName`\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat(StdChains): add Gravity mainnet (127001) (#848)",
          "author_name": "Ashin Gau",
          "author_login": "AshinGau",
          "committed_at": "2026-04-22T11:58:30Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "62f410ee3563cbe5b5d3af317efe51f1d3a299aa",
          "body": "Add Radius (723487) and Radius Testnet (72344) to `StdChains`.\n\nRadius is an EVM-compatible stablecoin platform with sub-second finality\nand stablecoin-native fees (~$0.0001/tx).\n\n## Chain details\n\n| | Mainnet | Testnet |\n|---|---|---|\n| Chain ID | 723487 | 72344 |\n| RPC | https://rpc.radiustech.xyz\n[…]\nttps://github.com/alloy-rs/chains/pull/269\nethereum-lists/chains:\nhttps://github.com/ethereum-lists/chains/pull/8168 (merged)\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat: add Radius Network chain (#842)",
          "author_name": "Tyler Frederick",
          "author_login": "TJ-Frederick",
          "committed_at": "2026-04-22T11:54:24Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "8dd18274cd93a53fb944b77a28915757eecbc17d",
          "body": "Resolves #91\n\n- Depends on https://github.com/foundry-rs/foundry/pull/14338\n\nTwo of the most common use-cases for tables are easily logging arrays\nand comparing multiple labelled values, which often leads the user to\nmanually line up the values like so:\n\n```solidity\nconsole.log(\"alice  \", 0x328809Bc\n[…]\n6fe48890a74ba84957ebf877fb591e37e0de │\n  └─────────┴────────────────────────────────────────────────────────────────────┘\n```\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat(console): add console.table (#849)",
          "author_name": "Nuno David",
          "author_login": "ndavd",
          "committed_at": "2026-04-22T11:03:11Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "624bef6975225248ec13fc697fb3208571760965",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.0 to\n1.45.1.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.45.1</h2>\n<h2>[1.45.1] - 2026-04-13</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.45.0 to 1.45.1 (#850)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-04-21T10:40:08Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "2999b6563e1f07971a09d48b82f3fac910d72a05",
          "body": "Pin all GitHub Actions in `ci.yml` and `sync.yml` to full commit SHAs\nusing `pinact`, preventing tag-based supply chain attacks.\n\n## Changes\n- `actions/checkout@v6` → `actions/checkout@de0fac2e...ce83dd # v6.0.2`\n(6 occurrences)\n- `foundry-rs/foundry-toolchain@v1` →\n`foundry-rs/foundry-toolchain@878\n[…]\n (2 occurrences)\n- `crate-ci/typos` version comment fixed from `# v1` to `# v1.45.0`\n(already SHA-pinned)\n\nPrompted by: georgen\n\nCo-authored-by: grandizzy <38490174+grandizzy@users.noreply.github.com>",
          "is_bot": false,
          "headline": "ci: pin all GitHub Actions to SHA (#847)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-04-14T12:52:44Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "546cafbff705cdc56bc2b7c928a232cbf6ccc7b9",
          "body": "Adds a 7 day cooldown to Dependabot version updates. This delays PRs for\nnewly released dependency versions until they are at least 7 days old,\nreducing noise and exposure to supply chain attacks.\n\nSecurity updates bypass the cooldown and are unaffected.\n\nPrompted by: zerosnacks\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "chore(deps): add 7 day dependency cooldown (#846)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-04-13T13:48:44Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b22916466a649dbec873fa4be538df14cc49402f",
          "body": "Resolves #676\n\n---------\n\nCo-authored-by: Derek Cofausper <256792747+decofe@users.noreply.github.com>\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat(StdCheats): add expectAndMockCall helper (#844)",
          "author_name": "Nuno David",
          "author_login": "ndavd",
          "committed_at": "2026-04-13T12:02:18Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "6466ada8c025ee5c5183bfdf8577aa47f94a133d",
          "body": "Part of #653. Two more of the files listed in the NatSpec docs\nchecklist.\n\n## StdMath.sol\n\nAdded \\`@notice\\`, \\`@param\\`, and \\`@return\\` tags to the library and\nall five internal functions:\n\n- \\`abs(int256)\\`\n- \\`delta(uint256, uint256)\\`\n- \\`delta(int256, int256)\\`\n- \\`percentDelta(uint256, uint25\n[…]\nso behavior is unchanged. CI should cover the formatting\nand test pass. If CI flags anything I will fix it in this branch.\n\nHappy to split this into two PRs (one per file) if that is easier to\nreview.",
          "is_bot": false,
          "headline": "docs: add NatSpec to StdMath and StdError (#845)",
          "author_name": "SylvarisSolutions",
          "author_login": "sylvarissolutions-max",
          "committed_at": "2026-04-13T09:23:42Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "f494b0c2c045dda3df3d761bc82209b9a015c4e7",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.44.0 to\n1.45.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.45.0</h2>\n<h2>[1.45.0] - 2026-04-01</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.44.0 to 1.45.0 (#843)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-04-06T10:09:49Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "4540e4aadda88eeb19a54d2b5ad2117c2c7632ec",
          "body": "…x (#839)\n\n- Define `SOLC_MINIMUM`, `SOLC_LATEST`, and `SOLC_PRERELEASE` versions\nat the top of CI workflow for easy maintenance\n- Generate build matrix dynamically so version changes only need a\nsingle update\n- Run prerelease solc builds on `nightly` toolchain only (svm-rs is not\nup to date on `stable`)\n- Ignore solc warning 3805 (\"pre-release compiler version\") for\nprerelease builds so `--deny warnings` does not fail on it",
          "is_bot": false,
          "headline": "chore(ci): update solc versions, add prerelease CI with dynamic matri…",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-03-27T09:43:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "50fbb2ca69a24b8991771787dfa023c0429584e5",
          "body": "…#837)\n\nAdds NatSpec documentation to all public and internal functions in\n`StdAssertions.sol` and `StdInvariant.sol` as part of #653.\n\nChanges:\n- Added `@notice` to every function describing its behavior\n- Added `@param` for all parameters\n- Added `@return` for functions with return values\n- Added \n[…]\ntract-level `@notice` for both contracts\n- Replaced existing `@dev`-only comments with `@notice` +\n`@param`/`@return` in StdInvariant.sol\n\nNo logic, interface, or code changes. Comment-only additions.",
          "is_bot": false,
          "headline": "docs(StdAssertions, StdInvariant): add NatSpec for public functions (…",
          "author_name": "Raghuvansh",
          "author_login": "Ra9huvansh",
          "committed_at": "2026-03-26T09:38:23Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "c0f966cb111f621bfb283b2a388bc7be18953bba",
          "body": "removed myself and Yash",
          "is_bot": false,
          "headline": "chore: update CODEOWNERS (#836)",
          "author_name": "Arsenii Kulikov",
          "author_login": "klkvr",
          "committed_at": "2026-03-23T19:56:28Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f5495c9b993bfc6e79dd52adfdcb7dac0a1da918",
          "body": "Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix(StdStorage): fix uint256 underflow infinite loop in find() (#833)",
          "author_name": "Derek Cofausper",
          "author_login": "decofe",
          "committed_at": "2026-03-15T19:24:34Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "3e6d5cd6dd0dbe61952e6075ea6d55ed31d26381",
          "body": "This updates the `IERC7540.requestRedeem` comments to match the actual\nowner-based flow.\nThe current wording says control is taken from `sender`, but the\nfunction signature and parameter docs are centered on `owner`, and the\napproval model also allows either ERC-20 approval over the owner's\nshares o\n[…]\nface.\nThis is a comment-only change with no ABI, logic, or behavior changes.\nIt simply makes the redeem-side docs consistent with the API semantics\nand with the already-clarified deposit-side wording.",
          "is_bot": false,
          "headline": "Clarify requestRedeem docs (#831)",
          "author_name": "tn0vak",
          "author_login": "tn0vak",
          "committed_at": "2026-03-13T10:44:27Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "04ee608913e6c334973649b2b1a2976260647c1b",
          "body": "Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.43.5 to 1.44.0 (#829)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-03-02T14:31:24Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "96abd708f045daa0d40827b27fb06fb3021b2d8c",
          "body": null,
          "is_bot": false,
          "headline": "Correct depositor terminology in IERC7575 (#827)",
          "author_name": "Irshad Kohl",
          "author_login": "IrshadKohl51",
          "committed_at": "2026-02-26T09:00:11Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "59e4cc349b75f64520fbef515ef44ca03a0a7ef6",
          "body": "Replace depositor with owner in withdrawal comments, aligning the\nsemantics with actual function parameters.",
          "is_bot": false,
          "headline": "Fix depositor terminology in IERC4626 (#825)",
          "author_name": "Irshad Kohl",
          "author_login": "IrshadKohl51",
          "committed_at": "2026-02-24T11:29:04Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "722afcc99a78706335b5a2ece83a4f0de4bc083d",
          "body": "the RedeemRequest event in IERC7540Redeem had `assets` as the last\nparam, but per EIP-7540 spec it should be `shares`. redeem operates on\nshares, deposit operates on assets - the event was copy-pasted wrong.\n\nref: https://eips.ethereum.org/EIPS/eip-7540#events\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: correct RedeemRequest event param from assets to shares (#822)",
          "author_name": "David Klank",
          "author_login": "davidjsonn",
          "committed_at": "2026-02-23T11:35:26Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "460cc79cfe0ae976129d922235a85386121effb1",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.43.4 to\n1.43.5.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.43.5</h2>\n<h2>[1.43.5] - 2026-02-16</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.43.4 to 1.43.5 (#824)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-02-23T11:25:59Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "0844d7e1fc5e60d77b68e469bff60265f236c398",
          "body": "Requested in\nhttps://github.com/foundry-rs/forge-std/pull/810#issuecomment-3913263248\nand makes sense to do for our upcoming v1.6 stable release",
          "is_bot": false,
          "headline": "chore(release): prepare for v1.15.0 relesae (#820)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-02-17T09:56:45Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e72518ef87be67df939a70b0ff1cb349e92b6dde",
          "body": "## Summary\nUpdate `Vm.sol` with all new cheatcodes from foundry.\n\n## New cheatcodes\n- `createEd25519Key(bytes32 salt)` — generate Ed25519 key pair from\ndeterministic salt\n- `publicKeyEd25519(bytes32 privateKey)` — derive Ed25519 public key\n- `signEd25519(bytes namespace, bytes message, bytes32 priva\n[…]\n--isolate` mode)\n\n## Generation\nRegenerated via `scripts/vm.py --from cheatcodes.json` using foundry's\nlatest `cheatcodes.json`.\n\nPrompted by: georgen\n\n---------\n\nCo-authored-by: Amp <amp@ampcode.com>",
          "is_bot": false,
          "headline": "feat: update Vm.sol with new cheatcodes (#819)",
          "author_name": "Georgios Konstantopoulos",
          "author_login": "gakonst",
          "committed_at": "2026-02-16T18:51:25Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "52c1e835e9ffcfe00bd9f8f51de204b93bc7028a",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.43.3 to\n1.43.4.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.43.4</h2>\n<h2>[1.43.4] - 2026-02-09</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.43.3 to 1.43.4 (#818)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-02-16T10:35:17Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "87f3448138b6ee16e33055116b150d37a8cf912f",
          "body": null,
          "is_bot": false,
          "headline": "docs: add StdConfig documentation to README (#817)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-02-12T12:34:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "aeb45e9f32ef8ca78f0aeda17596e9c46374da41",
          "body": "Similar to #811.",
          "is_bot": false,
          "headline": "docs: fix IERC7575 previewWithdraw comment (#816)",
          "author_name": "Degen Dev",
          "author_login": "NftCryptoHunter007",
          "committed_at": "2026-02-09T12:24:49Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "07f2c2dc9f48bcab842593eb29dd4b8a14b66b96",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.3 to\n1.43.3.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.43.3</h2>\n<h2>[1.43.3] - 2026-02-06</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.42.3 to 1.43.3 (#815)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-02-09T11:14:27Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "5ae14434aaea2211adefd069e06e059a02c39f7c",
          "body": "### Summary\nAdd one-line `@dev` NatSpec explainers to all `StdInvariant`\ntarget/exclude helpers and Forge hook getters.\n\n- Resolves foundry-rs/forge-std#283\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "docs(StdInvariant): add one-line explainers for each function (#813)",
          "author_name": "giannistbs",
          "author_login": "giannistbs",
          "committed_at": "2026-02-09T10:14:52Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a9c62e3e3be34095de68c22bfdde5a1fd6a7dc3b",
          "body": null,
          "is_bot": false,
          "headline": "docs: fix outdated Std Assertions description in README (#814)",
          "author_name": "Elena343-ai",
          "author_login": "Elena343-ai",
          "committed_at": "2026-02-09T08:30:56Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "121b89cd2ccd2fe8c6841935ddb684135f08392a",
          "body": null,
          "is_bot": false,
          "headline": "docs: fix IERC4626 previewWithdraw comment (#811)",
          "author_name": "Degen Dev",
          "author_login": "NftCryptoHunter007",
          "committed_at": "2026-02-06T11:17:56Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "1bf6e02e2b5637056b4a602c119ae42d5fd0f507",
          "body": "Replaces the incorrect \"only functions related to prank\" statement with\nan accurate list of stdCheats capabilities, including pranking, balance\nmanagement, contract deployment, address creation, time manipulation,\nand fuzzing helpers.",
          "is_bot": false,
          "headline": "docs: fix outdated stdCheats description in README (#812)",
          "author_name": "Elena343-ai",
          "author_login": "Elena343-ai",
          "committed_at": "2026-02-06T11:15:20Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "8e7bbe65b08aa71a0c93b50dc707da716a2ac1ff",
          "body": null,
          "is_bot": false,
          "headline": "docs: fix incorrect stdStorage packed slots documentation (#804)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-02-04T18:48:36Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "9aaeaf43602210beecf85137271a2f7c5c1f0975",
          "body": "For future reference, to update run `./scripts/vm.py` + update interface\nid\n\nSupersedes: https://github.com/foundry-rs/forge-std/pull/809",
          "is_bot": false,
          "headline": "chore: update `Vm.sol` (#810)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-02-03T11:16:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "3db6467879cba79685bf05e3b46fed02699303ec",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.1 to\n1.42.3.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.42.3</h2>\n<h2>[1.42.3] - 2026-01-27</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.42.1 to 1.42.3 (#807)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-02-02T11:18:31Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "4f227ab1b9a9a62f587580145951c7ace5e42569",
          "body": "## Summary\n\nUpdates RPC endpoint URLs from `ithaca.xyz` to `reth.rs`.\n\n## Changes\n\n- `reth-ethereum.ithaca.xyz/rpc` -> `ethereum.reth.rs/rpc`\n\n## Testing\n\nAll 195 tests pass.\n\n---\n\nRelated: https://github.com/paradigmxyz/reth/pull/21574\n\nCo-authored-by: georgios <georgios@tempo.xyz>",
          "is_bot": false,
          "headline": "chore: update RPC URLs from ithaca.xyz to reth.rs (#805)",
          "author_name": "Georgios Konstantopoulos",
          "author_login": "gakonst",
          "committed_at": "2026-01-29T17:27:40Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0e44f85a13976ba7491c6a9ee994b1a7efc3c281",
          "body": "Error messages in `checked_write` incorrectly referenced\n`find(StdStorage)` instead of the actual function name\n`checked_write(StdStorage)`.\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: correct error messages in stdStorage checked_write function (#802)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-27T11:29:31Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "03b5d168fd439d21f720d34039eb66d1a55a01e3",
          "body": "The error message in `dealERC1155` incorrectly referenced\n`deal(address,address,uint,uint,bool)` instead of the actual function\nname and signature.",
          "is_bot": false,
          "headline": "fix: correct error message in dealERC1155 function (#801)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-27T11:24:40Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0e4c6fd3693b20d88227de36bdd757ba3c1126e5",
          "body": "The error message in `dealERC721` incorrectly referenced\n`deal(address,address,uint,bool)` instead of the actual function\nsignature. This was likely a copy-paste error from the `deal` function.",
          "is_bot": false,
          "headline": "fix: correct error message in dealERC721 function (#800)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-27T11:23:58Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "bee11e72a6764a40ec9272635d5bb46744be352d",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.42.0 to\n1.42.1.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.42.1</h2>\n<h2>[1.42.1] - 2026-01-19</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.42.0 to 1.42.1 (#799)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-01-26T11:35:23Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "dd45fcd9092a49a7e16beed5715e7f277c7c3820",
          "body": "The constructor docstring listed supported types but forgot to include\n`int`, even though it's mentioned in other comments in the same file and\nis fully supported in the implementation. Just a copy-paste oversight.\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "docs: fix missing `int` type in StdConfig comment (#797)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-26T09:01:48Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0724906ca9ad2c2e4e1b4396f0380bf37c76b09d",
          "body": null,
          "is_bot": false,
          "headline": "docs: fix copy-paste error in IERC7540Redeem comment (#798)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-26T08:31:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "73d683471b1e8d0549449d47c2bbe5eea6159aa1",
          "body": "incorrectly showed `bytes4(\"balanceOf(address)\")` as the way to compute\nthe selector 0x70a08231. This syntax doesn't compute a function selector\n- it would just take ASCII bytes of the string literal. Fixed to show\nthe actual method: `bytes4(keccak256(\"balanceOf(address)\"))`.",
          "is_bot": false,
          "headline": "fix: correct function selector computation (#796)",
          "author_name": "emmmm",
          "author_login": "eeemmmmmm",
          "committed_at": "2026-01-25T18:36:42Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "f61e4dd133379a4536a54ee57a808c9c00019b60",
          "body": "Add [Tempo](https://tempo.xyz/) chains:\n\n- **tempo** (Chain ID: 4217) - RPC: https://rpc.mainnet.tempo.xyz\n- **tempo_moderato** (Chain ID: 42431) - RPC:\nhttps://rpc.moderato.tempo.xyz\n- **tempo_andantino** (Chain ID: 42429) - RPC:\nhttps://rpc.testnet.tempo.xyz",
          "is_bot": false,
          "headline": "feat: add Tempo mainnet candidate and testnet chain RPC urls (#794)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-01-16T11:18:45Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "887e87251562513a7b5ab1ea517c039fe6ee0984",
          "body": null,
          "is_bot": false,
          "headline": "Fix: spelling and grammar (#791)",
          "author_name": "sashaodessa",
          "author_login": "sashaodessa",
          "committed_at": "2026-01-13T14:03:33Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "17d2404f29436e3d85ef81da9ce31498ae7d2455",
          "body": "- **StdCheats.sol**: Fix subject–verb agreement in comments describing\nRaw structs parsing from JSON.\n- **StdChains.sol**: Correct verb form in UX-related comment about\n`foundry.toml` alias.\n- **StdConfig.sol**: Fix wording of RPC endpoint caching comment for\nclarity.\n\n---------\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix minor documentation typos and grammar (#789)",
          "author_name": "kilavvy",
          "author_login": "kilavvy",
          "committed_at": "2026-01-12T16:29:38Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "1a494e4a73715f43602ab0653ea0fd33f3b5bab0",
          "body": null,
          "is_bot": false,
          "headline": "fix: grammar in StdChains.sol and StdConfig.sol (#784)",
          "author_name": "kilavvy",
          "author_login": "kilavvy",
          "committed_at": "2026-01-12T16:25:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "bb8647a62b45ede74e0561887a495810776a752f",
          "body": "Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.41.0 to 1.42.0 (#790)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-01-12T12:15:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "7ebe43865789603ff914470689c40f8dc1527ddd",
          "body": null,
          "is_bot": false,
          "headline": "fix: correct typos in comments (#788)",
          "author_name": "leopardracer",
          "author_login": "leopardracer",
          "committed_at": "2026-01-11T18:25:46Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "0c9da5736d06b0f01fac287c23d30a00d444e872",
          "body": null,
          "is_bot": false,
          "headline": "fix(StdToml): fix typos in code examples and comments (#786)",
          "author_name": "fuder.eth",
          "author_login": "vtjl10",
          "committed_at": "2026-01-09T12:50:37Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "2f05b3001ed9d74b171d17eac80b3765ce186a76",
          "body": null,
          "is_bot": false,
          "headline": "docs: polish wording and fix minor grammar (#785)",
          "author_name": "sashaodessa",
          "author_login": "sashaodessa",
          "committed_at": "2026-01-08T09:07:00Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "480d8768e4bc09eb841dbe38aa0f0370de8f8dd8",
          "body": null,
          "is_bot": false,
          "headline": "fix: grammatical errors in Vm.sol and IERC7540.sol comments (#783)",
          "author_name": "FT",
          "author_login": "zeevick10",
          "committed_at": "2026-01-07T19:27:23Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "52965365cb81caa384c44ba2129e36a2e82bde85",
          "body": null,
          "is_bot": false,
          "headline": "fix(IERC7575): fix grammatical errors and typos in comments (#782)",
          "author_name": "Maxim Evtush",
          "author_login": "maximevtush",
          "committed_at": "2026-01-07T12:53:37Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e3386f2f9cc5ebf16ec5370869d5a49cdb85a0cb",
          "body": null,
          "is_bot": false,
          "headline": "fix(IERC4626): fix grammatical errors and typos in comments (#781)",
          "author_name": "anim001k",
          "author_login": "anim001k",
          "committed_at": "2026-01-06T17:24:54Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "1801b0541f4fda118a10798fd3486bb7051c5dd6",
          "body": "Includes: https://github.com/foundry-rs/forge-std/issues/764 which\nlimits compatibility of `forge-std` to `^0.8.13`\n\nFor readers, if you do require compatibility `< 0.8.13` please refer to\nthe https://github.com/foundry-rs/forge-std/releases/tag/v1.13.0\nrelease.",
          "is_bot": false,
          "headline": "chore(release): bump to v1.14.0 (#780)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-01-05T11:36:56Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "7b9119b60052787f5b340b92eed2459bd9c8c7a3",
          "body": "Bumps minimum compatibility to ^0.8.13\n\nResolves: https://github.com/foundry-rs/forge-std/issues/766\nResolves: https://github.com/foundry-rs/forge-std/issues/764\nResolves: https://github.com/foundry-rs/book/pull/1722\n\n---------\n\nCo-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: limit to ^0.8.13 compatibility (#767)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-01-05T11:23:03Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "271af53796e53e4aac9647b0a6372b843b30c41a",
          "body": "Extended test_Coercion in LibVariable.t.sol to actually use the existing\nbytes32ArrayVar, intArrayVar, and bytesArrayVar fixtures. The new\nassertions decode these variables via LibVariableHelper and verify the\ncontents of the resulting arrays, turning previously unused setup data\ninto meaningful coverage for toBytes32Array, toInt256Array, and\ntoBytesArray.\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat: cover with tests LibVariable array coercions (#774)",
          "author_name": "phrwlk",
          "author_login": "phrwlk",
          "committed_at": "2026-01-05T10:56:48Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "cdecc25c143c024dd2d9fa2830ad8d16569dc089",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.40.0 to\n1.41.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.41.0</h2>\n<h2>[1.41.0] - 2025-12-31</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.40.0 to 1.41.0 (#778)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2026-01-05T10:43:34Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "c29afdd40a82db50a3d3709d324416be50050e5e",
          "body": "v1.13.0 is the final release compatible with versions `< 0.8.13`\n(support previously aimed to cover `>= 0.6.2`).\nAll subsequent releases require `>= 0.8.13`. See:\nhttps://github.com/foundry-rs/forge-std/issues/764 for additional\ncontext.\n\nThis will be followed up with another release which includes\nhttps://github.com/foundry-rs/forge-std/pull/767, exact version number\nto be discussed.",
          "is_bot": false,
          "headline": "chore(release): bump v1.13.0 (#779)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2026-01-05T10:25:25Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "26048ab55c64519ce21e032fdb49df1d5a2a7eb4",
          "body": "Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "Populate Tx1559.contractAddress during conversion (#733)",
          "author_name": "Galoretka",
          "author_login": "Galoretka",
          "committed_at": "2025-12-22T07:42:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "925dd4aee38b61919bdf3164041e2457c0808d8f",
          "body": "…Utils (#706)\n\nCo-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "refactor: deduplicate Multicall3 and CREATE2_FACTORY constants in Std…",
          "author_name": "bigbear",
          "author_login": "aso20455",
          "committed_at": "2025-12-22T07:34:30Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e3ffae744ab56f6c3f9ea77fc741e6130f770191",
          "body": "Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: prevent out-of-bounds access in `bytesToBytes32` (#742)",
          "author_name": "maradini77",
          "author_login": "maradini77",
          "committed_at": "2025-12-22T07:26:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "a906201617a2df79eb9417dfa594cfcbbd54e083",
          "body": "Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: correct type mismatch in LibVariable documentation example (#725)",
          "author_name": "GarmashAlex",
          "author_login": "GarmashAlex",
          "committed_at": "2025-12-22T07:18:28Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "74800448d09f38390df080ec009f5abfa26a3206",
          "body": "Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
          "is_bot": false,
          "headline": "feat: add StdConfig::exists method to check if key exists (#771)",
          "author_name": "Nikola Malic",
          "author_login": "nikollamalic",
          "committed_at": "2025-12-22T07:15:29Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "27ba11c86ac93d8d4a50437ae26621468fe63c20",
          "body": "- Correct “Let’s” phrasing in README examples.\n- Fix double period in CONTRIBUTING guidelines.",
          "is_bot": false,
          "headline": "fix: minor typos in docs (#769)",
          "author_name": "maradini77",
          "author_login": "maradini77",
          "committed_at": "2025-12-11T16:40:48Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e97cf30e3d65d4edec69e8a453b0878ec0acf51c",
          "body": "…es (#768)\n\nMany files were only marked as `// SPDX-License-Identifier: MIT` whilst\nwe distribute as dual MIT / Apache 2.0\n\nOther small changes are formatter related",
          "is_bot": false,
          "headline": "fix: correctly state dual license `MIT or Apache-2.0` in Solidity fil…",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2025-12-11T15:12:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "ebc60f500bc6870baaf321a0196fddc24d6edb03",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.39.2 to\n1.40.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.40.0</h2>\n<h2>[1.40.0] - 2025-11-26</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.39.2 to 1.40.0 (#765)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2025-12-08T09:43:19Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "799589bfa97698c2bdf0ba8df4d461b607e36c57",
          "body": "…ns (#723)\n\nCo-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "fix: correct error messages in StdStorage parent() and root() functio…",
          "author_name": "Avory",
          "author_login": "avorylli",
          "committed_at": "2025-12-01T10:48:05Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "e6dc35ffec261e54225d47a779e25197cc3aa469",
          "body": "Co-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com>",
          "is_bot": false,
          "headline": "Update README.md (#718)",
          "author_name": "MONK",
          "author_login": "MonkeyKing44",
          "committed_at": "2025-12-01T10:45:02Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "66b07bd8c2d981949b0e03fdade760f7dee278e4",
          "body": null,
          "is_bot": false,
          "headline": "feat(stdchains): add ink and ink sepolia default rpc endpoints (#762)",
          "author_name": "Cruz Molina",
          "author_login": "CruzMolina",
          "committed_at": "2025-12-01T10:32:22Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "b69e66b0ff79924d487d49bf7fb47c9ec326acba",
          "body": "- use reth node in config tests instead eth.llamarpc\n- remove log from bound fn to address\nhttps://github.com/foundry-rs/foundry/pull/12478#issuecomment-3592285728\nProjects should `console.log` bounded value in tests themselves if\nneeded",
          "is_bot": false,
          "headline": "fix: config test to use reth, remove log from bound (#763)",
          "author_name": "grandizzy",
          "author_login": "grandizzy",
          "committed_at": "2025-11-30T09:47:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "755e679abefaf6ca9a08b5b9b90a52fb9b4ee188",
          "body": "…d-case-function rule (#761)\n\nPart of: https://github.com/foundry-rs/foundry/issues/12670\n\nNo user facing changes or breaking changes",
          "is_bot": false,
          "headline": "chore: update `exposed_ <function_name>` be consistent with lint mixe…",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2025-11-28T11:03:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "7117c90c8cf6c68e5acce4f09a6b24715cea4de6",
          "body": null,
          "is_bot": false,
          "headline": "chore: bump to 1.12.0 for next release (#760)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2025-11-26T09:03:12Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "24d76395806bf34aaab7ce0291094174631487f6",
          "body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to\n6.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/actions/checkout/releases\">actions/checkout's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v6.0.0</h2>\n<h2>What's Changed</h2>\n<ul>\n<li>Upd\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump actions/checkout from 5 to 6 (#759)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2025-11-24T10:21:32Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "3f999523613ab5454a5c4ae4abeaa8ea2ba7bcae",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.39.0 to\n1.39.2.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.39.2</h2>\n<h2>[1.39.2] - 2025-11-13</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.39.0 to 1.39.2 (#758)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2025-11-17T10:50:37Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "27ab851c7cde58b22cc4de426d59e23a31c5cb9c",
          "body": "Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.38.1 to\n1.39.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/crate-ci/typos/releases\">crate-ci/typos's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v1.39.0</h2>\n<h2>[1.39.0] - 2025-10-31</h2>\n<h\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
          "is_bot": true,
          "headline": "chore(deps): bump crate-ci/typos from 1.38.1 to 1.39.0 (#755)",
          "author_name": "dependabot[bot]",
          "author_login": "dependabot[bot]",
          "committed_at": "2025-11-10T16:01:58Z",
          "body_truncated": true,
          "is_coding_agent": false
        },
        {
          "oid": "da6e5e7086fc658faad4415f78f905407f7dced0",
          "body": "Ref: https://github.com/foundry-rs/forge-std/actions/runs/19230711588",
          "is_bot": false,
          "headline": "chore: fix fmt & bump Vm.sol (#756)",
          "author_name": "zerosnacks",
          "author_login": "zerosnacks",
          "committed_at": "2025-11-10T14:08:08Z",
          "body_truncated": false,
          "is_coding_agent": false
        },
        {
          "oid": "100b0d756adda67bc70aab816fa5a1a95dcf78b6",
          "body": "…n (#752)\n\n`function changePrank(address msgSender)` has `deprecated` log, but\n`function changePrank(address msgSender, address txOrigin)` is missing\nit.",
          "is_bot": false,
          "headline": "chore: add missing deprecated log to second changePrank implementatio…",
          "author_name": "Estarossa",
          "author_login": "estarossa0",
          "committed_at": "2025-10-27T02:07:09Z",
          "body_truncated": false,
          "is_coding_agent": false
        }
      ],
      "releases_count": 43,
      "commits_last_year": 131,
      "latest_release_at": "2026-06-30T14:22:32Z",
      "latest_release_tag": "v1.16.2",
      "releases_from_tags": false,
      "days_since_last_push": 5,
      "active_weeks_last_year": 41,
      "days_since_latest_release": 25,
      "mean_days_between_releases": 47.6
    },
    "community": {
      "has_readme": true,
      "has_license": true,
      "has_description": true,
      "has_contributing": true,
      "health_percentage": 62,
      "has_issue_template": false,
      "has_code_of_conduct": false,
      "has_pull_request_template": false
    },
    "ecosystem": {
      "packages": [
        {
          "name": "forge-std",
          "exists": true,
          "license": "Apache-2.0",
          "keywords": [],
          "ecosystem": "npm",
          "matches_repo": false,
          "registry_url": "https://www.npmjs.com/package/forge-std",
          "is_deprecated": false,
          "latest_version": "1.1.2",
          "repository_url": "https://github.com/shunkakinoki/contracts",
          "versions_count": 5,
          "total_downloads": null,
          "dependents_count": null,
          "deprecation_note": null,
          "maintainers_count": 1,
          "monthly_downloads": 25414,
          "first_published_at": "2022-05-12T04:47:51.876000Z",
          "latest_published_at": "2022-07-20T20:27:36.008000Z",
          "latest_version_yanked": null,
          "days_since_latest_publish": 1466
        }
      ]
    },
    "popularity": {
      "forks": 513,
      "stars": 1051,
      "watchers": 17,
      "fork_history": {
        "days": [
          {
            "date": "2022-01-06",
            "count": 1
          },
          {
            "date": "2022-01-15",
            "count": 1
          },
          {
            "date": "2022-01-22",
            "count": 1
          },
          {
            "date": "2022-01-30",
            "count": 1
          },
          {
            "date": "2022-02-01",
            "count": 1
          },
          {
            "date": "2022-02-11",
            "count": 1
          },
          {
            "date": "2022-02-20",
            "count": 1
          },
          {
            "date": "2022-02-23",
            "count": 1
          },
          {
            "date": "2022-03-01",
            "count": 1
          },
          {
            "date": "2022-03-03",
            "count": 1
          },
          {
            "date": "2022-03-07",
            "count": 1
          },
          {
            "date": "2022-03-16",
            "count": 1
          },
          {
            "date": "2022-03-30",
            "count": 2
          },
          {
            "date": "2022-03-31",
            "count": 2
          },
          {
            "date": "2022-04-13",
            "count": 1
          },
          {
            "date": "2022-04-14",
            "count": 1
          },
          {
            "date": "2022-04-17",
            "count": 1
          },
          {
            "date": "2022-04-18",
            "count": 1
          },
          {
            "date": "2022-04-21",
            "count": 1
          },
          {
            "date": "2022-04-22",
            "count": 1
          },
          {
            "date": "2022-04-23",
            "count": 1
          },
          {
            "date": "2022-04-28",
            "count": 1
          },
          {
            "date": "2022-04-29",
            "count": 2
          },
          {
            "date": "2022-05-03",
            "count": 1
          },
          {
            "date": "2022-05-04",
            "count": 1
          },
          {
            "date": "2022-05-09",
            "count": 2
          },
          {
            "date": "2022-05-13",
            "count": 1
          },
          {
            "date": "2022-05-14",
            "count": 1
          },
          {
            "date": "2022-05-17",
            "count": 1
          },
          {
            "date": "2022-05-20",
            "count": 1
          },
          {
            "date": "2022-05-23",
            "count": 1
          },
          {
            "date": "2022-05-25",
            "count": 1
          },
          {
            "date": "2022-06-08",
            "count": 1
          },
          {
            "date": "2022-06-10",
            "count": 1
          },
          {
            "date": "2022-06-12",
            "count": 2
          },
          {
            "date": "2022-06-15",
            "count": 1
          },
          {
            "date": "2022-06-22",
            "count": 1
          },
          {
            "date": "2022-06-23",
            "count": 3
          },
          {
            "date": "2022-06-27",
            "count": 1
          },
          {
            "date": "2022-07-08",
            "count": 1
          },
          {
            "date": "2022-07-10",
            "count": 1
          },
          {
            "date": "2022-07-15",
            "count": 2
          },
          {
            "date": "2022-07-18",
            "count": 1
          },
          {
            "date": "2022-07-19",
            "count": 2
          },
          {
            "date": "2022-07-22",
            "count": 1
          },
          {
            "date": "2022-08-02",
            "count": 1
          },
          {
            "date": "2022-08-03",
            "count": 1
          },
          {
            "date": "2022-08-04",
            "count": 2
          },
          {
            "date": "2022-08-06",
            "count": 1
          },
          {
            "date": "2022-08-07",
            "count": 1
          },
          {
            "date": "2022-08-11",
            "count": 1
          },
          {
            "date": "2022-08-13",
            "count": 1
          },
          {
            "date": "2022-08-14",
            "count": 1
          },
          {
            "date": "2022-08-18",
            "count": 1
          },
          {
            "date": "2022-08-23",
            "count": 1
          },
          {
            "date": "2022-08-30",
            "count": 1
          },
          {
            "date": "2022-09-12",
            "count": 1
          },
          {
            "date": "2022-09-14",
            "count": 1
          },
          {
            "date": "2022-09-28",
            "count": 1
          },
          {
            "date": "2022-10-07",
            "count": 1
          },
          {
            "date": "2022-10-11",
            "count": 1
          },
          {
            "date": "2022-10-25",
            "count": 2
          },
          {
            "date": "2022-10-26",
            "count": 1
          },
          {
            "date": "2022-10-29",
            "count": 1
          },
          {
            "date": "2022-10-31",
            "count": 1
          },
          {
            "date": "2022-11-02",
            "count": 1
          },
          {
            "date": "2022-11-03",
            "count": 3
          },
          {
            "date": "2022-11-08",
            "count": 1
          },
          {
            "date": "2022-11-10",
            "count": 1
          },
          {
            "date": "2022-11-16",
            "count": 1
          },
          {
            "date": "2022-11-18",
            "count": 1
          },
          {
            "date": "2022-11-22",
            "count": 1
          },
          {
            "date": "2022-11-24",
            "count": 1
          },
          {
            "date": "2022-11-27",
            "count": 1
          },
          {
            "date": "2022-11-29",
            "count": 1
          },
          {
            "date": "2022-12-09",
            "count": 1
          },
          {
            "date": "2022-12-14",
            "count": 1
          },
          {
            "date": "2022-12-19",
            "count": 2
          },
          {
            "date": "2023-01-01",
            "count": 1
          },
          {
            "date": "2023-01-05",
            "count": 1
          },
          {
            "date": "2023-01-07",
            "count": 1
          },
          {
            "date": "2023-01-09",
            "count": 1
          },
          {
            "date": "2023-02-04",
            "count": 1
          },
          {
            "date": "2023-02-05",
            "count": 2
          },
          {
            "date": "2023-02-06",
            "count": 1
          },
          {
            "date": "2023-02-14",
            "count": 2
          },
          {
            "date": "2023-02-15",
            "count": 1
          },
          {
            "date": "2023-02-17",
            "count": 1
          },
          {
            "date": "2023-02-20",
            "count": 1
          },
          {
            "date": "2023-02-23",
            "count": 1
          },
          {
            "date": "2023-02-24",
            "count": 1
          },
          {
            "date": "2023-03-06",
            "count": 1
          },
          {
            "date": "2023-03-07",
            "count": 1
          },
          {
            "date": "2023-03-08",
            "count": 2
          },
          {
            "date": "2023-03-15",
            "count": 1
          },
          {
            "date": "2023-03-17",
            "count": 2
          },
          {
            "date": "2023-03-21",
            "count": 1
          },
          {
            "date": "2023-03-24",
            "count": 1
          },
          {
            "date": "2023-03-25",
            "count": 1
          },
          {
            "date": "2023-03-26",
            "count": 1
          },
          {
            "date": "2023-03-27",
            "count": 1
          },
          {
            "date": "2023-03-29",
            "count": 2
          },
          {
            "date": "2023-03-31",
            "count": 1
          },
          {
            "date": "2023-04-01",
            "count": 1
          },
          {
            "date": "2023-04-07",
            "count": 2
          },
          {
            "date": "2023-04-12",
            "count": 2
          },
          {
            "date": "2023-04-18",
            "count": 1
          },
          {
            "date": "2023-04-28",
            "count": 1
          },
          {
            "date": "2023-04-29",
            "count": 1
          },
          {
            "date": "2023-05-01",
            "count": 1
          },
          {
            "date": "2023-05-03",
            "count": 1
          },
          {
            "date": "2023-05-04",
            "count": 1
          },
          {
            "date": "2023-05-05",
            "count": 1
          },
          {
            "date": "2023-05-07",
            "count": 1
          },
          {
            "date": "2023-05-10",
            "count": 1
          },
          {
            "date": "2023-05-15",
            "count": 1
          },
          {
            "date": "2023-05-22",
            "count": 1
          },
          {
            "date": "2023-05-24",
            "count": 2
          },
          {
            "date": "2023-05-26",
            "count": 1
          },
          {
            "date": "2023-06-01",
            "count": 1
          },
          {
            "date": "2023-06-06",
            "count": 1
          },
          {
            "date": "2023-06-07",
            "count": 1
          },
          {
            "date": "2023-06-08",
            "count": 1
          },
          {
            "date": "2023-06-13",
            "count": 1
          },
          {
            "date": "2023-06-14",
            "count": 1
          },
          {
            "date": "2023-06-23",
            "count": 1
          },
          {
            "date": "2023-06-26",
            "count": 1
          },
          {
            "date": "2023-06-29",
            "count": 2
          },
          {
            "date": "2023-07-04",
            "count": 1
          },
          {
            "date": "2023-07-07",
            "count": 1
          },
          {
            "date": "2023-07-14",
            "count": 1
          },
          {
            "date": "2023-07-16",
            "count": 1
          },
          {
            "date": "2023-07-17",
            "count": 1
          },
          {
            "date": "2023-07-31",
            "count": 2
          },
          {
            "date": "2023-08-03",
            "count": 1
          },
          {
            "date": "2023-08-11",
            "count": 1
          },
          {
            "date": "2023-08-15",
            "count": 1
          },
          {
            "date": "2023-08-21",
            "count": 1
          },
          {
            "date": "2023-08-22",
            "count": 1
          },
          {
            "date": "2023-08-23",
            "count": 1
          },
          {
            "date": "2023-08-25",
            "count": 1
          },
          {
            "date": "2023-08-29",
            "count": 3
          },
          {
            "date": "2023-08-31",
            "count": 1
          },
          {
            "date": "2023-09-01",
            "count": 1
          },
          {
            "date": "2023-09-07",
            "count": 1
          },
          {
            "date": "2023-09-11",
            "count": 1
          },
          {
            "date": "2023-09-12",
            "count": 1
          },
          {
            "date": "2023-09-14",
            "count": 2
          },
          {
            "date": "2023-09-27",
            "count": 1
          },
          {
            "date": "2023-10-10",
            "count": 1
          },
          {
            "date": "2023-10-17",
            "count": 1
          },
          {
            "date": "2023-10-23",
            "count": 1
          },
          {
            "date": "2023-10-25",
            "count": 1
          },
          {
            "date": "2023-11-03",
            "count": 1
          },
          {
            "date": "2023-11-05",
            "count": 14
          },
          {
            "date": "2023-11-06",
            "count": 14
          },
          {
            "date": "2023-11-07",
            "count": 21
          },
          {
            "date": "2023-11-15",
            "count": 2
          },
          {
            "date": "2023-11-17",
            "count": 1
          },
          {
            "date": "2023-11-22",
            "count": 1
          },
          {
            "date": "2023-11-23",
            "count": 1
          },
          {
            "date": "2023-11-24",
            "count": 1
          },
          {
            "date": "2023-11-29",
            "count": 1
          },
          {
            "date": "2023-12-15",
            "count": 1
          },
          {
            "date": "2023-12-18",
            "count": 1
          },
          {
            "date": "2023-12-25",
            "count": 2
          },
          {
            "date": "2023-12-30",
            "count": 1
          },
          {
            "date": "2024-01-08",
            "count": 1
          },
          {
            "date": "2024-01-10",
            "count": 2
          },
          {
            "date": "2024-01-16",
            "count": 1
          },
          {
            "date": "2024-01-27",
            "count": 1
          },
          {
            "date": "2024-01-31",
            "count": 1
          },
          {
            "date": "2024-02-08",
            "count": 1
          },
          {
            "date": "2024-02-09",
            "count": 1
          },
          {
            "date": "2024-02-15",
            "count": 1
          },
          {
            "date": "2024-02-26",
            "count": 1
          },
          {
            "date": "2024-02-27",
            "count": 2
          },
          {
            "date": "2024-03-09",
            "count": 1
          },
          {
            "date": "2024-03-14",
            "count": 1
          },
          {
            "date": "2024-03-24",
            "count": 1
          },
          {
            "date": "2024-04-09",
            "count": 1
          },
          {
            "date": "2024-04-10",
            "count": 1
          },
          {
            "date": "2024-04-15",
            "count": 1
          },
          {
            "date": "2024-04-21",
            "count": 1
          },
          {
            "date": "2024-04-22",
            "count": 1
          },
          {
            "date": "2024-04-25",
            "count": 1
          },
          {
            "date": "2024-05-07",
            "count": 1
          },
          {
            "date": "2024-05-08",
            "count": 2
          },
          {
            "date": "2024-05-09",
            "count": 2
          },
          {
            "date": "2024-05-11",
            "count": 2
          },
          {
            "date": "2024-05-13",
            "count": 1
          },
          {
            "date": "2024-05-14",
            "count": 1
          },
          {
            "date": "2024-05-16",
            "count": 2
          },
          {
            "date": "2024-05-29",
            "count": 1
          },
          {
            "date": "2024-05-30",
            "count": 1
          },
          {
            "date": "2024-06-05",
            "count": 2
          },
          {
            "date": "2024-06-06",
            "count": 1
          },
          {
            "date": "2024-06-07",
            "count": 1
          },
          {
            "date": "2024-06-10",
            "count": 1
          },
          {
            "date": "2024-06-11",
            "count": 1
          },
          {
            "date": "2024-06-12",
            "count": 1
          },
          {
            "date": "2024-06-13",
            "count": 1
          },
          {
            "date": "2024-06-18",
            "count": 1
          },
          {
            "date": "2024-06-26",
            "count": 1
          },
          {
            "date": "2024-07-02",
            "count": 1
          },
          {
            "date": "2024-07-03",
            "count": 1
          },
          {
            "date": "2024-07-15",
            "count": 1
          },
          {
            "date": "2024-07-16",
            "count": 1
          },
          {
            "date": "2024-07-17",
            "count": 1
          },
          {
            "date": "2024-07-18",
            "count": 2
          },
          {
            "date": "2024-07-22",
            "count": 1
          },
          {
            "date": "2024-07-26",
            "count": 1
          },
          {
            "date": "2024-08-05",
            "count": 1
          },
          {
            "date": "2024-08-13",
            "count": 1
          },
          {
            "date": "2024-08-20",
            "count": 1
          },
          {
            "date": "2024-09-03",
            "count": 1
          },
          {
            "date": "2024-09-24",
            "count": 1
          },
          {
            "date": "2024-09-26",
            "count": 1
          },
          {
            "date": "2024-09-29",
            "count": 2
          },
          {
            "date": "2024-10-05",
            "count": 1
          },
          {
            "date": "2024-10-09",
            "count": 1
          },
          {
            "date": "2024-10-19",
            "count": 1
          },
          {
            "date": "2024-10-20",
            "count": 1
          },
          {
            "date": "2024-10-21",
            "count": 1
          },
          {
            "date": "2024-10-22",
            "count": 1
          },
          {
            "date": "2024-10-24",
            "count": 1
          },
          {
            "date": "2024-10-28",
            "count": 1
          },
          {
            "date": "2024-11-08",
            "count": 1
          },
          {
            "date": "2024-11-18",
            "count": 1
          },
          {
            "date": "2024-11-20",
            "count": 1
          },
          {
            "date": "2024-11-28",
            "count": 1
          },
          {
            "date": "2024-11-29",
            "count": 1
          },
          {
            "date": "2024-12-03",
            "count": 1
          },
          {
            "date": "2024-12-16",
            "count": 1
          },
          {
            "date": "2024-12-17",
            "count": 1
          },
          {
            "date": "2024-12-18",
            "count": 1
          },
          {
            "date": "2024-12-25",
            "count": 1
          },
          {
            "date": "2024-12-28",
            "count": 1
          },
          {
            "date": "2024-12-29",
            "count": 1
          },
          {
            "date": "2024-12-31",
            "count": 1
          },
          {
            "date": "2025-01-11",
            "count": 1
          },
          {
            "date": "2025-01-16",
            "count": 1
          },
          {
            "date": "2025-01-20",
            "count": 1
          },
          {
            "date": "2025-01-21",
            "count": 1
          },
          {
            "date": "2025-01-24",
            "count": 1
          },
          {
            "date": "2025-01-28",
            "count": 1
          },
          {
            "date": "2025-01-29",
            "count": 1
          },
          {
            "date": "2025-01-31",
            "count": 1
          },
          {
            "date": "2025-02-01",
            "count": 1
          },
          {
            "date": "2025-02-07",
            "count": 1
          },
          {
            "date": "2025-02-09",
            "count": 1
          },
          {
            "date": "2025-02-20",
            "count": 1
          },
          {
            "date": "2025-02-22",
            "count": 1
          },
          {
            "date": "2025-02-26",
            "count": 2
          },
          {
            "date": "2025-02-28",
            "count": 1
          },
          {
            "date": "2025-03-03",
            "count": 2
          },
          {
            "date": "2025-03-11",
            "count": 1
          },
          {
            "date": "2025-03-14",
            "count": 1
          },
          {
            "date": "2025-03-17",
            "count": 1
          },
          {
            "date": "2025-03-18",
            "count": 1
          },
          {
            "date": "2025-03-19",
            "count": 1
          },
          {
            "date": "2025-03-22",
            "count": 1
          },
          {
            "date": "2025-03-23",
            "count": 1
          },
          {
            "date": "2025-03-26",
            "count": 2
          },
          {
            "date": "2025-03-27",
            "count": 1
          },
          {
            "date": "2025-04-05",
            "count": 1
          },
          {
            "date": "2025-04-23",
            "count": 1
          },
          {
            "date": "2025-04-25",
            "count": 1
          },
          {
            "date": "2025-04-29",
            "count": 2
          },
          {
            "date": "2025-04-30",
            "count": 1
          },
          {
            "date": "2025-05-02",
            "count": 1
          },
          {
            "date": "2025-05-10",
            "count": 1
          },
          {
            "date": "2025-05-11",
            "count": 2
          },
          {
            "date": "2025-05-20",
            "count": 2
          },
          {
            "date": "2025-05-21",
            "count": 1
          },
          {
            "date": "2025-05-22",
            "count": 1
          },
          {
            "date": "2025-06-04",
            "count": 1
          },
          {
            "date": "2025-06-13",
            "count": 1
          },
          {
            "date": "2025-06-17",
            "count": 1
          },
          {
            "date": "2025-06-18",
            "count": 1
          },
          {
            "date": "2025-07-03",
            "count": 1
          },
          {
            "date": "2025-07-05",
            "count": 1
          },
          {
            "date": "2025-07-14",
            "count": 1
          },
          {
            "date": "2025-07-19",
            "count": 1
          },
          {
            "date": "2025-07-20",
            "count": 1
          },
          {
            "date": "2025-07-28",
            "count": 1
          },
          {
            "date": "2025-07-31",
            "count": 2
          },
          {
            "date": "2025-08-01",
            "count": 1
          },
          {
            "date": "2025-08-04",
            "count": 2
          },
          {
            "date": "2025-08-05",
            "count": 1
          },
          {
            "date": "2025-08-08",
            "count": 2
          },
          {
            "date": "2025-08-09",
            "count": 1
          },
          {
            "date": "2025-08-11",
            "count": 1
          },
          {
            "date": "2025-08-13",
            "count": 1
          },
          {
            "date": "2025-08-26",
            "count": 2
          },
          {
            "date": "2025-08-28",
            "count": 1
          },
          {
            "date": "2025-09-08",
            "count": 2
          },
          {
            "date": "2025-09-09",
            "count": 4
          },
          {
            "date": "2025-09-10",
            "count": 1
          },
          {
            "date": "2025-09-12",
            "count": 2
          },
          {
            "date": "2025-09-23",
            "count": 1
          },
          {
            "date": "2025-09-27",
            "count": 1
          },
          {
            "date": "2025-10-02",
            "count": 1
          },
          {
            "date": "2025-10-05",
            "count": 1
          },
          {
            "date": "2025-10-07",
            "count": 1
          },
          {
            "date": "2025-10-10",
            "count": 1
          },
          {
            "date": "2025-10-13",
            "count": 1
          },
          {
            "date": "2025-10-14",
            "count": 1
          },
          {
            "date": "2025-10-25",
            "count": 2
          },
          {
            "date": "2025-11-08",
            "count": 2
          },
          {
            "date": "2025-11-09",
            "count": 1
          },
          {
            "date": "2025-11-12",
            "count": 2
          },
          {
            "date": "2025-11-21",
            "count": 1
          },
          {
            "date": "2025-11-23",
            "count": 2
          },
          {
            "date": "2025-11-25",
            "count": 1
          },
          {
            "date": "2025-12-02",
            "count": 1
          },
          {
            "date": "2025-12-16",
            "count": 1
          },
          {
            "date": "2025-12-17",
            "count": 4
          },
          {
            "date": "2025-12-18",
            "count": 1
          },
          {
            "date": "2025-12-26",
            "count": 1
          },
          {
            "date": "2025-12-30",
            "count": 1
          },
          {
            "date": "2026-01-01",
            "count": 2
          },
          {
            "date": "2026-01-04",
            "count": 1
          },
          {
            "date": "2026-01-05",
            "count": 1
          },
          {
            "date": "2026-01-06",
            "count": 1
          },
          {
            "date": "2026-01-07",
            "count": 3
          },
          {
            "date": "2026-01-08",
            "count": 1
          },
          {
            "date": "2026-01-11",
            "count": 1
          },
          {
            "date": "2026-01-14",
            "count": 1
          },
          {
            "date": "2026-01-25",
            "count": 1
          },
          {
            "date": "2026-01-31",
            "count": 2
          },
          {
            "date": "2026-02-02",
            "count": 1
          },
          {
            "date": "2026-02-03",
            "count": 1
          },
          {
            "date": "2026-02-04",
            "count": 2
          },
          {
            "date": "2026-02-06",
            "count": 1
          },
          {
            "date": "2026-02-07",
            "count": 1
          },
          {
            "date": "2026-02-08",
            "count": 1
          },
          {
            "date": "2026-02-12",
            "count": 1
          },
          {
            "date": "2026-02-13",
            "count": 1
          },
          {
            "date": "2026-02-14",
            "count": 1
          },
          {
            "date": "2026-02-20",
            "count": 1
          },
          {
            "date": "2026-02-21",
            "count": 1
          },
          {
            "date": "2026-02-24",
            "count": 1
          },
          {
            "date": "2026-02-26",
            "count": 1
          },
          {
            "date": "2026-02-27",
            "count": 1
          },
          {
            "date": "2026-03-03",
            "count": 2
          },
          {
            "date": "2026-03-09",
            "count": 1
          },
          {
            "date": "2026-03-11",
            "count": 1
          },
          {
            "date": "2026-03-13",
            "count": 1
          },
          {
            "date": "2026-03-14",
            "count": 3
          },
          {
            "date": "2026-03-15",
            "count": 1
          },
          {
            "date": "2026-03-16",
            "count": 1
          },
          {
            "date": "2026-03-19",
            "count": 1
          },
          {
            "date": "2026-03-23",
            "count": 1
          },
          {
            "date": "2026-03-25",
            "count": 1
          },
          {
            "date": "2026-03-29",
            "count": 1
          },
          {
            "date": "2026-03-31",
            "count": 2
          },
          {
            "date": "2026-04-01",
            "count": 1
          },
          {
            "date": "2026-04-11",
            "count": 1
          },
          {
            "date": "2026-04-13",
            "count": 1
          },
          {
            "date": "2026-04-15",
            "count": 2
          },
          {
            "date": "2026-04-26",
            "count": 1
          },
          {
            "date": "2026-04-27",
            "count": 2
          },
          {
            "date": "2026-04-29",
            "count": 1
          },
          {
            "date": "2026-04-30",
            "count": 2
          },
          {
            "date": "2026-05-07",
            "count": 1
          },
          {
            "date": "2026-05-10",
            "count": 1
          },
          {
            "date": "2026-05-12",
            "count": 1
          },
          {
            "date": "2026-05-13",
            "count": 1
          },
          {
            "date": "2026-05-18",
            "count": 1
          },
          {
            "date": "2026-05-20",
            "count": 1
          },
          {
            "date": "2026-05-31",
            "count": 1
          },
          {
            "date": "2026-06-04",
            "count": 2
          },
          {
            "date": "2026-06-13",
            "count": 1
          },
          {
            "date": "2026-06-24",
            "count": 1
          },
          {
            "date": "2026-06-26",
            "count": 1
          },
          {
            "date": "2026-06-30",
            "count": 1
          },
          {
            "date": "2026-07-07",
            "count": 5
          },
          {
            "date": "2026-07-11",
            "count": 1
          },
          {
            "date": "2026-07-16",
            "count": 1
          },
          {
            "date": "2026-07-17",
            "count": 1
          }
        ],
        "complete": true,
        "collected": 504,
        "total_forks": 513
      },
      "star_history": null,
      "open_issues_and_prs": 31
    },
    "ai_readiness": {
      "has_nix": false,
      "example_dirs": [],
      "has_llms_txt": false,
      "has_dockerfile": false,
      "has_mcp_signal": false,
      "bootstrap_files": [],
      "api_schema_files": [],
      "has_devcontainer": false,
      "typecheck_configs": [],
      "toolchain_manifests": [],
      "largest_source_bytes": 17400,
      "source_files_sampled": 1,
      "oversized_source_files": 0,
      "agent_instruction_files": [],
      "agent_instruction_max_bytes": null
    },
    "dependencies": {
      "manifests": [
        "package.json"
      ],
      "advisories": {
        "error": "No resolved dependencies to assess",
        "scope": "repository_graph",
        "source": null,
        "findings": [],
        "collected": false,
        "malicious": [],
        "truncated": false,
        "by_severity": {},
        "advisory_count": 0,
        "affected_count": 0,
        "assessed_count": 0,
        "malicious_count": 0,
        "assessed_package": null,
        "unassessed_count": 0,
        "direct_affected_count": 0
      },
      "ecosystems": [
        "npm"
      ],
      "dependencies": [],
      "all_dependencies": {
        "error": null,
        "source": "github-sbom",
        "packages": [],
        "collected": true,
        "truncated": false,
        "total_count": 0,
        "direct_count": 0,
        "indirect_count": 0
      }
    },
    "maintainership": {
      "issues": {
        "open_prs": 9,
        "merged_prs": 477,
        "open_issues": 22,
        "closed_ratio": 0.909,
        "closed_issues": 221,
        "closed_unmerged_prs": 113
      },
      "bus_factor": 7,
      "bot_contributors": 1,
      "top_contributors": [
        {
          "type": "User",
          "login": "mds1",
          "commits": 61,
          "avatar_url": "https://avatars.githubusercontent.com/u/17163988?v=4"
        },
        {
          "type": "User",
          "login": "zerosnacks",
          "commits": 50,
          "avatar_url": "https://avatars.githubusercontent.com/u/95942363?v=4"
        },
        {
          "type": "User",
          "login": "brockelmore",
          "commits": 43,
          "avatar_url": "https://avatars.githubusercontent.com/u/31553173?v=4"
        },
        {
          "type": "User",
          "login": "ZeroEkkusu",
          "commits": 32,
          "avatar_url": "https://avatars.githubusercontent.com/u/94782988?v=4"
        },
        {
          "type": "User",
          "login": "PaulRBerg",
          "commits": 26,
          "avatar_url": "https://avatars.githubusercontent.com/u/8782666?v=4"
        },
        {
          "type": "User",
          "login": "DaniPopes",
          "commits": 23,
          "avatar_url": "https://avatars.githubusercontent.com/u/57450786?v=4"
        },
        {
          "type": "User",
          "login": "mattsse",
          "commits": 16,
          "avatar_url": "https://avatars.githubusercontent.com/u/19890894?v=4"
        },
        {
          "type": "User",
          "login": "gakonst",
          "commits": 14,
          "avatar_url": "https://avatars.githubusercontent.com/u/17802178?v=4"
        },
        {
          "type": "User",
          "login": "grandizzy",
          "commits": 13,
          "avatar_url": "https://avatars.githubusercontent.com/u/38490174?v=4"
        },
        {
          "type": "User",
          "login": "klkvr",
          "commits": 10,
          "avatar_url": "https://avatars.githubusercontent.com/u/62447812?v=4"
        }
      ],
      "contributors_sampled": 99,
      "top_contributor_share": 0.127
    },
    "quality_signals": {
      "has_ci": true,
      "has_tests": true,
      "ci_workflows": [
        "ci.yml",
        "sync.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": 9,
            "reason": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
          },
          {
            "name": "CII-Best-Practices",
            "score": 0,
            "reason": "no effort to earn an OpenSSF best practices badge detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
          },
          {
            "name": "Code-Review",
            "score": 7,
            "reason": "Found 15/19 approved changesets -- score normalized to 7",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
          },
          {
            "name": "Contributors",
            "score": 10,
            "reason": "project has 14 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": 10,
            "reason": "23 commit(s) and 0 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": 10,
            "reason": "all dependencies are pinned",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
          },
          {
            "name": "SAST",
            "score": 10,
            "reason": "SAST tool is run on all commits",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
          },
          {
            "name": "Security-Policy",
            "score": 9,
            "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": 10,
            "reason": "GitHub workflow tokens follow principle of least privilege",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
          },
          {
            "name": "Vulnerabilities",
            "score": 10,
            "reason": "0 existing vulnerabilities detected",
            "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
          }
        ],
        "commit": "6e8c4a92c9a8b31c1b0f0c39296d1fa4695c7df8",
        "ran_at": "2026-07-26T07:56:04Z",
        "aggregate_score": 8.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-20T15:23:13Z",
      "oldest_open_prs": [
        {
          "number": 739,
          "created_at": "2025-10-05T19:03:16Z",
          "last_comment_at": "2026-02-10T18:01:02Z",
          "last_comment_author": "0xClandestine"
        },
        {
          "number": 751,
          "created_at": "2025-10-23T09:57:51Z",
          "last_comment_at": "2026-01-28T15:41:11Z",
          "last_comment_author": "zerosnacks"
        },
        {
          "number": 823,
          "created_at": "2026-02-21T20:48:14Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 841,
          "created_at": "2026-03-29T23:06:05Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 863,
          "created_at": "2026-05-18T14:54:07Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 876,
          "created_at": "2026-06-11T16:41:14Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 879,
          "created_at": "2026-06-13T09:00:08Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 880,
          "created_at": "2026-06-24T16:23:14Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 888,
          "created_at": "2026-07-11T21:18:48Z",
          "last_comment_at": null,
          "last_comment_author": null
        }
      ],
      "last_merged_pr_at": "2026-07-20T15:22:00Z",
      "ci_last_conclusion": "FAILURE",
      "oldest_open_issues": [
        {
          "number": 32,
          "created_at": "2022-03-25T12:44:21Z",
          "last_comment_at": "2026-07-11T20:11:56Z",
          "last_comment_author": "Yonkoo11"
        },
        {
          "number": 62,
          "created_at": "2022-05-05T15:28:04Z",
          "last_comment_at": "2022-05-30T11:59:37Z",
          "last_comment_author": "ZeroEkkusu"
        },
        {
          "number": 90,
          "created_at": "2022-06-15T08:44:12Z",
          "last_comment_at": "2026-07-11T21:10:26Z",
          "last_comment_author": "Yonkoo11"
        },
        {
          "number": 101,
          "created_at": "2022-07-02T23:10:19Z",
          "last_comment_at": "2026-07-11T21:10:57Z",
          "last_comment_author": "Yonkoo11"
        },
        {
          "number": 140,
          "created_at": "2022-07-28T16:14:05Z",
          "last_comment_at": "2023-08-29T13:17:32Z",
          "last_comment_author": "mds1"
        },
        {
          "number": 166,
          "created_at": "2022-08-31T10:49:57Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 170,
          "created_at": "2022-09-04T04:17:18Z",
          "last_comment_at": "2025-02-28T15:26:38Z",
          "last_comment_author": "zerosnacks"
        },
        {
          "number": 244,
          "created_at": "2022-11-28T15:28:03Z",
          "last_comment_at": "2022-12-01T12:50:36Z",
          "last_comment_author": "odyslam"
        },
        {
          "number": 293,
          "created_at": "2023-02-06T15:46:32Z",
          "last_comment_at": "2023-11-25T15:46:00Z",
          "last_comment_author": "ChiTimesChi"
        },
        {
          "number": 301,
          "created_at": "2023-02-14T17:08:12Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 303,
          "created_at": "2023-02-16T15:53:28Z",
          "last_comment_at": "2023-02-16T16:48:11Z",
          "last_comment_author": "PaulRBerg"
        },
        {
          "number": 318,
          "created_at": "2023-03-02T00:45:39Z",
          "last_comment_at": "2024-05-21T18:58:02Z",
          "last_comment_author": "rpedroni"
        },
        {
          "number": 332,
          "created_at": "2023-03-24T00:35:47Z",
          "last_comment_at": "2023-03-24T13:30:06Z",
          "last_comment_author": "mds1"
        },
        {
          "number": 345,
          "created_at": "2023-04-11T23:03:20Z",
          "last_comment_at": "2023-04-11T23:38:33Z",
          "last_comment_author": "mds1"
        },
        {
          "number": 394,
          "created_at": "2023-05-29T13:54:23Z",
          "last_comment_at": null,
          "last_comment_author": null
        },
        {
          "number": 452,
          "created_at": "2023-09-06T08:36:03Z",
          "last_comment_at": "2025-10-20T09:37:51Z",
          "last_comment_author": "zerosnacks"
        },
        {
          "number": 477,
          "created_at": "2023-11-10T01:40:22Z",
          "last_comment_at": "2023-11-13T22:14:47Z",
          "last_comment_author": "mds1"
        },
        {
          "number": 592,
          "created_at": "2024-07-31T06:14:02Z",
          "last_comment_at": "2026-07-11T20:13:03Z",
          "last_comment_author": "Yonkoo11"
        },
        {
          "number": 653,
          "created_at": "2025-02-04T10:42:11Z",
          "last_comment_at": "2026-03-25T22:11:30Z",
          "last_comment_author": "Ra9huvansh"
        },
        {
          "number": 667,
          "created_at": "2025-03-03T18:45:55Z",
          "last_comment_at": null,
          "last_comment_author": null
        }
      ]
    }
  },
  "config": {
    "disabled_metrics": [],
    "disabled_categories": [],
    "disabled_components": {}
  },
  "source": {
    "url": "https://github.com/foundry-rs/forge-std",
    "host": "github.com",
    "name": "forge-std",
    "owner": "foundry-rs"
  },
  "metrics": {
    "overall": {
      "key": "overall",
      "band": "good",
      "name": "Overall health",
      "note": null,
      "notes": [],
      "value": 81,
      "inputs": {
        "security": 88,
        "vitality": 92,
        "community": 74,
        "governance": 84,
        "engineering": 66
      },
      "components": []
    },
    "categories": [
      {
        "key": "vitality",
        "band": "excellent",
        "name": "Vitality",
        "value": 92,
        "weight": 0.22,
        "metrics": [
          {
            "key": "development_activity",
            "band": "excellent",
            "name": "Development activity",
            "note": null,
            "notes": [],
            "value": 92,
            "inputs": {
              "commits_last_year": 131,
              "human_commit_share": 0.76,
              "days_since_last_push": 5,
              "active_weeks_last_year": 41
            },
            "components": [
              {
                "key": "push_recency",
                "name": "Push recency",
                "detail": "last push 5 days ago",
                "points": 36,
                "status": "met",
                "details": [
                  {
                    "code": "push_recency",
                    "params": {
                      "days": 5
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "commit_cadence",
                "name": "Commit cadence",
                "detail": "41/52 weeks with commits",
                "points": 28.4,
                "status": "partial",
                "details": [
                  {
                    "code": "commit_cadence_weeks",
                    "params": {
                      "weeks": 41
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "commit_volume",
                "name": "Commit volume",
                "detail": "131 commits in the last year",
                "points": 18,
                "status": "met",
                "details": [
                  {
                    "code": "commits_last_year",
                    "params": {
                      "count": 131
                    }
                  }
                ],
                "max_points": 18
              },
              {
                "key": "openssf_scorecard_maintained",
                "name": "OpenSSF Scorecard: Maintained",
                "detail": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "release_discipline",
            "band": "excellent",
            "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": 92,
            "inputs": {
              "releases_count": 43,
              "latest_release_tag": "v1.16.2",
              "releases_from_tags": false,
              "days_since_latest_release": 25,
              "mean_days_between_releases": 47.6
            },
            "components": [
              {
                "key": "ships_releases",
                "name": "Ships releases",
                "detail": "43 releases published",
                "points": 27,
                "status": "met",
                "details": [
                  {
                    "code": "releases_published",
                    "params": {
                      "count": 43
                    }
                  }
                ],
                "max_points": 27
              },
              {
                "key": "release_recency",
                "name": "Release recency",
                "detail": "latest release 25 days ago",
                "points": 36,
                "status": "met",
                "details": [
                  {
                    "code": "release_recency",
                    "params": {
                      "days": 25
                    }
                  }
                ],
                "max_points": 36
              },
              {
                "key": "release_cadence",
                "name": "Release cadence",
                "detail": "a release every ~47.6 days",
                "points": 19.8,
                "status": "partial",
                "details": [
                  {
                    "code": "release_cadence",
                    "params": {
                      "gap": 47.6
                    }
                  }
                ],
                "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": 5,
              "days_since_last_human_commit_is_floor": false
            },
            "components": [
              {
                "key": "project_is_still_maintained",
                "name": "Project is still maintained",
                "detail": "last human commit 5 days ago",
                "points": 100,
                "status": "met",
                "details": [
                  {
                    "code": "abandonment_maintained",
                    "params": {
                      "days": 5
                    }
                  }
                ],
                "max_points": 100
              }
            ]
          }
        ],
        "description": "Is the project alive — is code being written and are releases shipping?"
      },
      {
        "key": "community",
        "band": "good",
        "name": "Community & Adoption",
        "value": 74,
        "weight": 0.18,
        "metrics": [
          {
            "key": "popularity",
            "band": "good",
            "name": "Popularity & adoption",
            "note": null,
            "notes": [],
            "value": 78,
            "inputs": {
              "forks": 513,
              "stars": 1051,
              "watchers": 17,
              "growth_state": "unverified",
              "growth_factor_pct": 100,
              "growth_unverified_reason": "no_history"
            },
            "components": [
              {
                "key": "stars",
                "name": "Stars",
                "detail": "1,051 stars",
                "points": 49,
                "status": "partial",
                "details": [
                  {
                    "code": "stars",
                    "params": {
                      "count": 1051
                    }
                  }
                ],
                "max_points": 60
              },
              {
                "key": "forks",
                "name": "Forks",
                "detail": "513 forks",
                "points": 22.6,
                "status": "partial",
                "details": [
                  {
                    "code": "forks",
                    "params": {
                      "count": 513
                    }
                  }
                ],
                "max_points": 25
              },
              {
                "key": "watchers",
                "name": "Watchers",
                "detail": "17 watchers",
                "points": 6.7,
                "status": "partial",
                "details": [
                  {
                    "code": "watchers",
                    "params": {
                      "count": 17
                    }
                  }
                ],
                "max_points": 15
              }
            ]
          },
          {
            "key": "community_health",
            "band": "good",
            "name": "Community health",
            "note": null,
            "notes": [],
            "value": 70,
            "inputs": {
              "has_readme": true,
              "has_license": true,
              "has_contributing": true,
              "has_issue_template": false,
              "has_code_of_conduct": false,
              "has_pull_request_template": false
            },
            "components": [
              {
                "key": "readme",
                "name": "README",
                "detail": null,
                "points": 22.5,
                "status": "met",
                "details": [],
                "max_points": 22.5
              },
              {
                "key": "license",
                "name": "License",
                "detail": "recognized license (Apache-2.0)",
                "points": 22.5,
                "status": "met",
                "details": [
                  {
                    "code": "license_standard",
                    "params": {}
                  },
                  {
                    "code": "license_spdx",
                    "params": {
                      "spdx": "Apache-2.0"
                    }
                  }
                ],
                "max_points": 22.5
              },
              {
                "key": "contributing_guide",
                "name": "CONTRIBUTING guide",
                "detail": null,
                "points": 18,
                "status": "met",
                "details": [],
                "max_points": 18
              },
              {
                "key": "code_of_conduct",
                "name": "Code of conduct",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 13.5
              },
              {
                "key": "issue_template",
                "name": "Issue template",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 7.2
              },
              {
                "key": "pr_template",
                "name": "PR template",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 6.3
              }
            ]
          }
        ],
        "description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
      },
      {
        "key": "governance",
        "band": "good",
        "name": "Sustainability & Governance",
        "value": 84,
        "weight": 0.24,
        "metrics": [
          {
            "key": "maintainer_resilience",
            "band": "excellent",
            "name": "Maintainer resilience (bus factor)",
            "note": null,
            "notes": [],
            "value": 94,
            "inputs": {
              "bus_factor": 7,
              "contributors_sampled": 99,
              "top_contributor_share": 0.127
            },
            "components": [
              {
                "key": "bus_factor",
                "name": "Bus factor",
                "detail": "7 contributor(s) cover half of all commits",
                "points": 51.3,
                "status": "partial",
                "details": [
                  {
                    "code": "bus_factor",
                    "params": {
                      "count": 7
                    }
                  }
                ],
                "max_points": 54
              },
              {
                "key": "commit_distribution",
                "name": "Commit distribution",
                "detail": "top contributor authored 13% of commits",
                "points": 19.6,
                "status": "partial",
                "details": [
                  {
                    "code": "top_contributor_share",
                    "params": {
                      "share": 13
                    }
                  }
                ],
                "max_points": 22.5
              },
              {
                "key": "contributor_breadth",
                "name": "Contributor breadth",
                "detail": "99 contributors",
                "points": 13.5,
                "status": "met",
                "details": [
                  {
                    "code": "contributors_sampled",
                    "params": {
                      "count": 99
                    }
                  }
                ],
                "max_points": 13.5
              },
              {
                "key": "openssf_scorecard_contributors",
                "name": "OpenSSF Scorecard: Contributors",
                "detail": "project has 14 contributing companies or organizations",
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "responsiveness",
            "band": "good",
            "name": "Issue & PR responsiveness",
            "note": null,
            "notes": [],
            "value": 84,
            "inputs": {
              "merged_prs": 477,
              "open_issues": 22,
              "closed_issues": 221,
              "issue_closed_ratio": 0.909,
              "closed_unmerged_prs": 113
            },
            "components": [
              {
                "key": "issue_resolution",
                "name": "Issue resolution",
                "detail": "91% of issues closed",
                "points": 42.5,
                "status": "partial",
                "details": [
                  {
                    "code": "issues_closed_share",
                    "params": {
                      "share": 91
                    }
                  }
                ],
                "max_points": 46.75
              },
              {
                "key": "pr_acceptance",
                "name": "PR acceptance",
                "detail": "477/590 decided PRs merged",
                "points": 30.9,
                "status": "partial",
                "details": [
                  {
                    "code": "decided_prs_merged",
                    "params": {
                      "merged": 477,
                      "decided": 590
                    }
                  }
                ],
                "max_points": 38.25
              },
              {
                "key": "openssf_scorecard_code_review",
                "name": "OpenSSF Scorecard: Code-Review",
                "detail": "Found 15/19 approved changesets -- score normalized to 7",
                "points": 10.5,
                "status": "partial",
                "details": [],
                "max_points": 15
              }
            ]
          },
          {
            "key": "stewardship",
            "band": "good",
            "name": "Ownership & stewardship",
            "note": null,
            "notes": [],
            "value": 72,
            "inputs": {
              "followers": 1526,
              "owner_type": "Organization",
              "is_verified": null,
              "owner_login": "foundry-rs",
              "public_repos": 26,
              "account_age_days": 1619
            },
            "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": "1,526 followers of foundry-rs",
                "points": 22.9,
                "status": "partial",
                "details": [
                  {
                    "code": "owner_followers",
                    "params": {
                      "count": 1526,
                      "login": "foundry-rs"
                    }
                  }
                ],
                "max_points": 25
              },
              {
                "key": "track_record",
                "name": "Track record",
                "detail": "26 public repos, account ~4 yr old",
                "points": 19.3,
                "status": "partial",
                "details": [
                  {
                    "code": "public_repos",
                    "params": {
                      "count": 26
                    }
                  },
                  {
                    "code": "account_age_years",
                    "params": {
                      "years": 4
                    }
                  }
                ],
                "max_points": 25
              }
            ]
          }
        ],
        "description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
      },
      {
        "key": "engineering",
        "band": "moderate",
        "name": "Engineering Quality",
        "value": 66,
        "weight": 0.2,
        "metrics": [
          {
            "key": "engineering_practices",
            "band": "moderate",
            "name": "Engineering practices",
            "note": null,
            "notes": [],
            "value": 66,
            "inputs": {
              "has_ci": true,
              "has_tests": true,
              "has_editorconfig": false,
              "has_linter_config": false,
              "has_precommit_config": false
            },
            "components": [
              {
                "key": "ci_workflows",
                "name": "CI workflows",
                "detail": "2 workflow(s)",
                "points": 24,
                "status": "met",
                "details": [
                  {
                    "code": "ci_workflows",
                    "params": {
                      "count": 2
                    }
                  }
                ],
                "max_points": 24
              },
              {
                "key": "tests_present",
                "name": "Tests present",
                "detail": null,
                "points": 24,
                "status": "met",
                "details": [],
                "max_points": 24
              },
              {
                "key": "linter_config",
                "name": "Linter config",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 16
              },
              {
                "key": "pre_commit_hooks",
                "name": "Pre-commit hooks",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 9.6
              },
              {
                "key": "editorconfig",
                "name": ".editorconfig",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 6.4
              },
              {
                "key": "openssf_scorecard_ci_tests",
                "name": "OpenSSF Scorecard: CI-Tests",
                "detail": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9",
                "points": 18,
                "status": "partial",
                "details": [],
                "max_points": 20
              }
            ]
          },
          {
            "key": "documentation",
            "band": "moderate",
            "name": "Documentation",
            "note": null,
            "notes": [],
            "value": 65,
            "inputs": {
              "topics": [
                "cheatcodes",
                "ethereum",
                "evm",
                "forge",
                "foundry",
                "solc",
                "solidity",
                "std"
              ],
              "has_wiki": false,
              "homepage": "https://getfoundry.sh/reference/forge-std/overview/",
              "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": "https://getfoundry.sh/reference/forge-std/overview/",
                "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": "8 topics",
                "points": 10,
                "status": "met",
                "details": [
                  {
                    "code": "topics_count",
                    "params": {
                      "count": 8
                    }
                  }
                ],
                "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": "excellent",
        "name": "Security",
        "value": 88,
        "weight": 0.16,
        "metrics": [
          {
            "key": "security_posture",
            "band": "excellent",
            "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": 88,
            "inputs": {
              "source": "openssf_scorecard",
              "checks_evaluated": 15,
              "scorecard_version": "v5.5.0",
              "checks_inconclusive": 3,
              "scorecard_aggregate": 8.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": "28 out of 30 merged PRs checked by a CI test -- score normalized to 9",
                "points": 2.2,
                "status": "partial",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "cii_best_practices",
                "name": "CII-Best-Practices",
                "detail": "no effort to earn an OpenSSF best practices badge detected",
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 2.5
              },
              {
                "key": "code_review",
                "name": "Code-Review",
                "detail": "Found 15/19 approved changesets -- score normalized to 7",
                "points": 5.2,
                "status": "partial",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "contributors",
                "name": "Contributors",
                "detail": "project has 14 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": "23 commit(s) and 0 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": "all dependencies are pinned",
                "points": 5,
                "status": "met",
                "details": [],
                "max_points": 5
              },
              {
                "key": "sast",
                "name": "SAST",
                "detail": "SAST tool is run on all commits",
                "points": 5,
                "status": "met",
                "details": [],
                "max_points": 5
              },
              {
                "key": "security_policy",
                "name": "Security-Policy",
                "detail": "security policy file detected",
                "points": 4.5,
                "status": "partial",
                "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": "GitHub workflow tokens follow principle of least privilege",
                "points": 7.5,
                "status": "met",
                "details": [],
                "max_points": 7.5
              },
              {
                "key": "vulnerabilities",
                "name": "Vulnerabilities",
                "detail": "0 existing vulnerabilities detected",
                "points": 7.5,
                "status": "met",
                "details": [],
                "max_points": 7.5
              }
            ]
          },
          {
            "key": "high_risk_jurisdiction_exposure",
            "band": "excellent",
            "name": "High-Risk Jurisdiction Exposure",
            "note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
            "notes": [
              {
                "code": "jurisdiction_evidence_limits",
                "params": {}
              }
            ],
            "value": 100,
            "inputs": {
              "meaning": "self-published location evidence; not nationality or citizenship",
              "red_flag": false,
              "exposures": [],
              "policy_countries": [
                "Russia",
                "Iran",
                "North Korea"
              ],
              "review_only_matches": 0,
              "assessed_self_published_locations": 3
            },
            "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": 43,
        "weight": 0,
        "metrics": [
          {
            "key": "ai_agent_context",
            "band": "at_risk",
            "name": "Agent context & guidance",
            "note": null,
            "notes": [],
            "value": 40,
            "inputs": {
              "has_llms_txt": false,
              "legible_history_share": 1,
              "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": "76 of 76 human commits state their intent (structured subject or explanatory body)",
                "points": 40,
                "status": "met",
                "details": [
                  {
                    "code": "legible_history",
                    "params": {
                      "legible": 76,
                      "sampled": 76
                    }
                  }
                ],
                "max_points": 40
              }
            ]
          },
          {
            "key": "ai_verify_loop",
            "band": "at_risk",
            "name": "Verify loop (build / test / typecheck)",
            "note": null,
            "notes": [],
            "value": 40,
            "inputs": {
              "has_nix": false,
              "has_tests": true,
              "lockfiles": [],
              "has_dockerfile": false,
              "typed_language": false,
              "bootstrap_files": [],
              "has_devcontainer": false,
              "has_linter_config": false,
              "typecheck_configs": [],
              "agent_commit_share": 0,
              "toolchain_manifests": [],
              "dependency_bot_commit_share": 0.24
            },
            "components": [
              {
                "key": "one_command_bootstrap",
                "name": "One-command bootstrap",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 18
              },
              {
                "key": "automated_tests",
                "name": "Automated tests",
                "detail": null,
                "points": 22,
                "status": "met",
                "details": [],
                "max_points": 22
              },
              {
                "key": "lint_format_config",
                "name": "Lint / format config",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 11
              },
              {
                "key": "static_type_checking",
                "name": "Static type checking",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 11
              },
              {
                "key": "reproducible_environment",
                "name": "Reproducible environment",
                "detail": null,
                "points": 0,
                "status": "missed",
                "details": [],
                "max_points": 10
              },
              {
                "key": "demonstrated_agent_practice",
                "name": "Demonstrated agent practice",
                "detail": "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": "24 of the last 100 commits are automated dependency updates",
                "points": 8,
                "status": "met",
                "details": [
                  {
                    "code": "dependency_bot_commits",
                    "params": {
                      "count": 24,
                      "sampled": 100
                    }
                  }
                ],
                "max_points": 8
              },
              {
                "key": "openssf_scorecard_pinned_dependencies",
                "name": "OpenSSF Scorecard: Pinned-Dependencies",
                "detail": "all dependencies are pinned",
                "points": 10,
                "status": "met",
                "details": [],
                "max_points": 10
              }
            ]
          },
          {
            "key": "ai_code_legibility",
            "band": "moderate",
            "name": "Code legibility for models",
            "note": null,
            "notes": [],
            "value": 55,
            "inputs": {
              "primary_language": "Solidity",
              "largest_source_bytes": 17400,
              "source_files_sampled": 1,
              "oversized_source_files": 0
            },
            "components": [
              {
                "key": "type_checkable_code",
                "name": "Type-checkable code",
                "detail": "Solidity without a type-check config",
                "points": 0,
                "status": "missed",
                "details": [
                  {
                    "code": "no_typecheck_config_language",
                    "params": {
                      "language": "Solidity"
                    }
                  }
                ],
                "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? 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",
    "npm package 'forge-std' points at a different repository (https://github.com/shunkakinoki/contracts); excluded from ecosystem scoring"
  ],
  "report_type": "repository",
  "generated_at": "2026-07-26T07:56:32.605063Z",
  "schema_version": "0.27.0",
  "badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/f/foundry-rs/forge-std.svg",
  "full_name": "foundry-rs/forge-std",
  "license_state": "standard",
  "license_spdx": "Apache-2.0"
}

Las puntuaciones son señales, no garantías. Reflejan prácticas públicamente visibles en GitHub; no son una auditoría de código ni una garantía de seguridad.

Los datos ausentes se excluyen y los pesos se renormalizan; nunca se puntúan como cero. La metodología es versionada y abierta: métricas v1.13.0, esquema v0.27.0 — metodología completa · wiki de métricas.

Cómo se sitúa un resultado dentro del registro general: estadísticas agregadasnpm.