原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 113,
"has_wiki": true,
"homepage": "https://packagist.org/packages/woocommerce/woocommerce-sniffs",
"languages": {
"PHP": 13604
},
"pushed_at": "2026-07-29T07:26:49Z",
"created_at": "2017-12-21T22:24:04Z",
"owner_type": "Organization",
"updated_at": "2026-03-27T05:05:21Z",
"description": "Collection of PHP_CodeSniffer sniffs for WooCommerce",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "trunk",
"license_spdx_raw": "MIT",
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": "https://woocommerce.com/",
"name": "Woo",
"type": "Organization",
"login": "woocommerce",
"company": null,
"location": null,
"followers": 1053,
"avatar_url": "https://avatars.githubusercontent.com/u/473596?v=4",
"created_at": "2010-11-09T05:28:55Z",
"is_verified": null,
"public_repos": 247,
"account_age_days": 5741
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "1.0.1",
"kind": "patch",
"published_at": "2025-09-24T15:45:43Z"
},
{
"tag": "1.0.0",
"kind": "major",
"published_at": "2023-09-29T13:53:33Z"
},
{
"tag": "0.1.3",
"kind": "patch",
"published_at": "2022-05-05T15:31:08Z"
},
{
"tag": "0.1.2",
"kind": "patch",
"published_at": "2022-01-21T20:15:35Z"
},
{
"tag": "0.1.1",
"kind": "patch",
"published_at": "2021-07-29T17:26:10Z"
},
{
"tag": "0.1.0",
"kind": "minor",
"published_at": "2020-08-06T18:24:23Z"
}
],
"recent_commits": [
{
"oid": "3e678d6836fc683856b5d498866d06fefbead25d",
"body": "Allow cross-reference comments as valid hook documentation",
"is_bot": false,
"headline": "Merge pull request #47 from woocommerce/allow-documented-in-crossref",
"author_name": "Brandon Kraft",
"author_login": "kraftbj",
"committed_at": "2026-03-27T05:05:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "644371d0d8b8ed613288655eefb2a38699074e3a",
"body": "The CommentHooksSniff currently requires every hook docblock to contain\na @since tag. This causes false positives for the standard WordPress\ncross-reference pattern where a hook is documented elsewhere and the\ncall site uses \"/** This filter is documented in ... */\".\n\nThis is the convention WordPres\n[…]\nrequires a phpcs:ignore or\nphpcs:disable annotation to suppress the false positive.\n\nThis change detects the cross-reference pattern and treats it as valid,\nremoving the need for suppression comments.",
"is_bot": false,
"headline": "Allow \"This filter/action is documented in\" cross-reference comments",
"author_name": "Brandon Kraft",
"author_login": "kraftbj",
"committed_at": "2026-03-24T15:33:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "500d295cf40efbe379acdd5ab6980050fbb48957",
"body": "…e-variations-sniff\n\nAdd sniff to flag expensive get_available_variations() usage",
"is_bot": false,
"headline": "Merge pull request #46 from woocommerce/add/wooplug-6106-get-availabl…",
"author_name": "Michael Pretty",
"author_login": "prettyboymp",
"committed_at": "2026-01-28T19:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5eccf04ba8fc9b5d00983d1d5c0925bd0fda252c",
"body": "Co-authored-by: Christopher Allford <6451942+ObliviousHarmony@users.noreply.github.com>",
"is_bot": false,
"headline": "Update src/WooCommerce/Sniffs/Functions/GetAvailableVariationsSniff.php",
"author_name": "Michael Pretty",
"author_login": "prettyboymp",
"committed_at": "2026-01-28T19:23:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a131d76da589ca3a797ed1ae82bda5be6b6dbba6",
"body": "T_STRING triggers for many token types (class names, constants, all\nidentifiers). Listening for T_OBJECT_OPERATOR (->) is more targeted\nsince get_available_variations() is an instance method.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Optimize sniff to listen for T_OBJECT_OPERATOR instead of T_STRING",
"author_name": "Michael Pretty",
"author_login": "prettyboymp",
"committed_at": "2026-01-16T16:18:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "3eb3b76fd9a7ddf9375c96f5fb1bf30036db733b",
"body": "Adds GetAvailableVariationsSniff that warns when:\n- get_available_variations() is called without arguments (defaults to 'array')\n- get_available_variations('array') is called explicitly\n\nThe 'array' return type is expensive for products with many variations\nas it processes HTML, prices, images, and \n[…]\nut this overhead.\n\nPartially fixes WOOPLUG-6106 / woocommerce/woocommerce#62686\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add sniff to flag expensive get_available_variations() usage",
"author_name": "Michael Pretty",
"author_login": "prettyboymp",
"committed_at": "2026-01-07T20:51:56Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e6da0c372573724806b270ec1d5d94988b8aec52",
"body": "Update ruleset.xml to fix deprecated array of values. Closes #43.",
"is_bot": false,
"headline": "Merge pull request #44 from helgatheviking/trunk",
"author_name": "Jorge A. Torres",
"author_login": "jorgeatorres",
"committed_at": "2025-09-03T13:34:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "544cf304ed82b725e653fe7ac73a6187332c6f0e",
"body": null,
"is_bot": false,
"headline": "Update ruleset.xml to fix deprecated array of values. Closes #43.",
"author_name": "helgatheviking",
"author_login": "helgatheviking",
"committed_at": "2025-06-17T21:02:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a65b917ff5ab5e65609e5dcb7bc62f9455bbef8",
"body": null,
"is_bot": false,
"headline": "Updated Dependencies",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2023-09-29T13:52:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f71c7dd477b356deba77969e6e7c971391a4eda",
"body": "…wpcs-3.x\n\nUpdate dependency wp-coding-standards/wpcs to v3",
"is_bot": false,
"headline": "Merge pull request #35 from woocommerce/renovate/wp-coding-standards-…",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2023-09-29T13:47:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19ddb0711cd0ee34fac6d2917478d72e1b969831",
"body": null,
"is_bot": true,
"headline": "Update dependency wp-coding-standards/wpcs to v3",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2023-08-21T16:11:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "856eb0d3f90a628e0ad3c8aa8c9da8663f934848",
"body": null,
"is_bot": false,
"headline": "Removed Authors",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2023-06-28T20:17:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfb8600c55b6f829fa126d40a1e2bb26b24cd391",
"body": "Add \"static analysis\" Composer keyword",
"is_bot": false,
"headline": "Merge pull request #32 from GaryJones/patch-1",
"author_name": "Roy Ho",
"author_login": "roykho",
"committed_at": "2022-12-05T14:22:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae73ff0cc47e0cb3ca0c362951ee1eed166420a9",
"body": "As per https://getcomposer.org/doc/04-schema.md#keywords by including \"static analysis\" as a keyword in the `composer.json` file, Composer 2.4.0-RC1 and later will prompt users if the package is installed with `composer require` instead of `composer require --dev`. See https://github.com/composer/composer/pull/10960 for more info.",
"is_bot": false,
"headline": "Add \"static analysis\" Composer keyword",
"author_name": "Gary Jones",
"author_login": "GaryJones",
"committed_at": "2022-09-04T14:48:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b76fe2844a657fdf3281c8b1edebe961dcc96169",
"body": "Add validation for since tag version",
"is_bot": false,
"headline": "Merge pull request #30 from woocommerce/improve/hooksniff",
"author_name": "Roy Ho",
"author_login": "roykho",
"committed_at": "2022-06-30T12:39:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27edbabe21ce76b94f204ef780da21f7788aa6d4",
"body": null,
"is_bot": false,
"headline": "Add validation for since tag version",
"author_name": "roykho",
"author_login": "roykho",
"committed_at": "2022-06-27T16:18:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4576d54595614d689bc4436acff8baaece3c5bb0",
"body": "Tweak/comment hooks",
"is_bot": false,
"headline": "Merge pull request #27 from woocommerce/tweak/comment-hooks",
"author_name": "jonathansadowski",
"author_login": "jonathansadowski",
"committed_at": "2022-02-17T15:34:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6083198da53e27035486a01fd465f9d23bce8330",
"body": null,
"is_bot": false,
"headline": "Enforce docblock style comments and versioning",
"author_name": "roykho",
"author_login": "roykho",
"committed_at": "2022-02-16T16:56:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f29698a32fe76d079e6702adda6324ab6cf4536",
"body": null,
"is_bot": false,
"headline": "Make the sniff an error instead of warning to enforce usage",
"author_name": "roykho",
"author_login": "roykho",
"committed_at": "2022-02-11T20:32:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5566270d280a300bc24bd0cb055a8b9325afdd6b",
"body": null,
"is_bot": false,
"headline": "Update changelog",
"author_name": "roykho",
"author_login": "roykho",
"committed_at": "2022-01-21T20:13:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b97f0221986e7176623d9ca47a9b374c0bad0c2e",
"body": "Add sniff for hooks when no doc comments found",
"is_bot": false,
"headline": "Merge pull request #25 from woocommerce/add/hook-sniff",
"author_name": "jonathansadowski",
"author_login": "jonathansadowski",
"committed_at": "2022-01-21T19:14:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "899a82747c6a1d81a2e0b8a521335b951d3588a1",
"body": null,
"is_bot": false,
"headline": "Add sniff for hooks when no doc comments found",
"author_name": "roykho",
"author_login": "roykho",
"committed_at": "2022-01-20T19:57:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37cb39106acdcbfb6f91e4d7758b57d417ae4c12",
"body": null,
"is_bot": false,
"headline": "Update renovate.json",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2021-10-04T18:10:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a36bcf91faed4e256e15ca3d241853e64d743b0c",
"body": null,
"is_bot": false,
"headline": "Update renovate.json",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2021-10-04T18:09:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "473797ac96f3b78a5a75bf80f73a5964aa24edc0",
"body": null,
"is_bot": false,
"headline": "Update renovate.json",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2021-10-04T17:42:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb604d751b61c42f31ff1aa24113c7c0de438553",
"body": null,
"is_bot": false,
"headline": "Version 0.1.1",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2021-07-29T17:25:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ed1859d9658608094b31548173f09a401ca28e5",
"body": "…d-package-versios\n\nAdd ^ before version requirements",
"is_bot": false,
"headline": "Merge pull request #19 from BrianHenryIE/Use-minimum-rather-than-fixe…",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2021-07-29T17:14:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5567e3b89b28d217b68cbb8dd117c5bc35b4d2fa",
"body": null,
"is_bot": false,
"headline": "Add ^ before version requirements",
"author_name": "Brian Henry",
"author_login": "BrianHenryIE",
"committed_at": "2021-05-27T05:42:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b72b7dd2e70aa6aed16f80cdae5b1e6cce2e4c79",
"body": null,
"is_bot": false,
"headline": "Version 0.1.0",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-08-06T18:23:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35581299c0b1f98cef9c339cc96de18941e55fc4",
"body": null,
"is_bot": false,
"headline": "Updated dependencies",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-08-06T18:23:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d8922708ab4fbed44a40dea238c7b05b10aff30",
"body": "Add sniff for internal injection method",
"is_bot": false,
"headline": "Merge pull request #15 from woocommerce/add/internal-injection-method",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-08-06T18:07:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "745261bbae02c209054dfae68b2e9f74354a170e",
"body": null,
"is_bot": false,
"headline": "Changed the `@access private` requirement to `@internal`",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2020-08-06T18:03:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a46b9f6d97ab3d18953c034fc7a39e9d350a869a",
"body": null,
"is_bot": false,
"headline": "Added back `@access` rejection sniff",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2020-08-06T18:00:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcf5d00555b791a446ab817ea742a149ac9c6922",
"body": "…sniffer-composer-installer-0.x\n\nUpdate dependency dealerdirect/phpcodesniffer-composer-installer to v0.7.0",
"is_bot": false,
"headline": "Merge pull request #13 from woocommerce/renovate/dealerdirect-phpcode…",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-08-06T15:23:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c87d03dd7640cde0b4517f3b09ec0f7f2b32372d",
"body": null,
"is_bot": false,
"headline": "Added a new sniff for evaluating the internal injection method",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2020-08-06T07:48:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdd5040d31d988db210f6dc80b4b502f9487693f",
"body": "Unfortunately the `WooCommerce-Core` ruleset cannot be namespaced correctly and so there are some strange behaviors with the ruleset that we need to address in custom sniffs. This moves the custom sniffs into another ruleset and then includes that in the core ruleset to maintain compatibility.",
"is_bot": false,
"headline": "Moved the custom sniffs to resolve namespacing issues",
"author_name": "Christopher Allford",
"author_login": "ObliviousHarmony",
"committed_at": "2020-08-06T07:48:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c18dee7d52cbc8e83cb8247df30cda3257e59858",
"body": null,
"is_bot": false,
"headline": "Updated testVersion to PHP 7.2",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-07-06T14:43:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6a5a8b2f0eff5e9224300ecfd86f7ae20297a49",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-07-06T14:41:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b99e95633e0e3ca4b5b386664f38d09c23de75b",
"body": "…0.7.0",
"is_bot": false,
"headline": "Update dependency dealerdirect/phpcodesniffer-composer-installer to v…",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2020-06-25T16:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "677c744d9ae6f43a283da58eae72e041b97c338b",
"body": "…wpcs-2.x\n\nUpdate dependency wp-coding-standards/wpcs to v2.3.0",
"is_bot": false,
"headline": "Merge pull request #12 from woocommerce/renovate/wp-coding-standards-…",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-05-27T19:11:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd65b389420db69cb9689d5ea3eb12849054cdcf",
"body": null,
"is_bot": false,
"headline": "Update dependency wp-coding-standards/wpcs to v2.3.0",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2020-05-14T00:37:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0e3d69a53b3ffdbb97a0371bd1b43aa17092d65",
"body": null,
"is_bot": false,
"headline": "Version 0.0.10",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-04-07T20:25:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65322767fb94bc4b41aafe29d6bfce11caaec621",
"body": null,
"is_bot": false,
"headline": "Updated license",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2020-04-07T20:23:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb2cc9a413cc3509248abe01ec790bc904bc5f55",
"body": "…wpcs-2.x\n\nUpdate dependency wp-coding-standards/wpcs to v2.2.1",
"is_bot": false,
"headline": "Merge pull request #11 from woocommerce/renovate/wp-coding-standards-…",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2020-02-14T05:27:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a772380bbb35d7180b3715cfbd6db2ec94666f67",
"body": null,
"is_bot": false,
"headline": "Update dependency wp-coding-standards/wpcs to v2.2.1",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2020-02-14T05:23:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cee4448614ba1e4004ed0b97092317d6e1120d6",
"body": "…sniffer-composer-installer-0.x\n\nUpdate dependency dealerdirect/phpcodesniffer-composer-installer to v0.6.2",
"is_bot": false,
"headline": "Merge pull request #10 from woocommerce/renovate/dealerdirect-phpcode…",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2020-02-14T05:12:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "650e13c7552b913288347c103cf92b89e294eecc",
"body": "…0.6.2",
"is_bot": false,
"headline": "Update dependency dealerdirect/phpcodesniffer-composer-installer to v…",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2020-02-09T03:51:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7677a84e9a355fe1e088f704090be891e7a6d427",
"body": null,
"is_bot": false,
"headline": "Version 0.0.9",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-11-11T15:48:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37c3b0f4fe616f0fe6d272952e05f319a7d5e2e7",
"body": "…pcs-2.x\n\nUpdate dependency wp-coding-standards/wpcs to v2.2.0",
"is_bot": false,
"headline": "Merge pull request #9 from woocommerce/renovate/wp-coding-standards-w…",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-11-11T15:45:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "acd8b5155b1c44da70ac343f755bd04cb0e74956",
"body": null,
"is_bot": false,
"headline": "Update dependency wp-coding-standards/wpcs to v2.2.0",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2019-11-11T13:24:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0cad00d023156e6255915a9fc5359d9ceb129468",
"body": null,
"is_bot": false,
"headline": "Fixed example config in README.md",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:27:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccdae93ba678d59cd9741bec077d0c63c0a82958",
"body": null,
"is_bot": false,
"headline": "Version 0.0.8",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:25:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88ff5a6a491fe23f71cdabce1a930cba2e781230",
"body": "…ompatibility-wp-2.x\n\nUpdate dependency phpcompatibility/phpcompatibility-wp to v2.1.0",
"is_bot": false,
"headline": "Merge pull request #8 from woocommerce/renovate/phpcompatibility-phpc…",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:24:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e524f3ea45a6905f2497328051d5645c3dc8460",
"body": null,
"is_bot": false,
"headline": "Update dependency phpcompatibility/phpcompatibility-wp to v2.1.0",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2019-10-16T18:23:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38219c8fed5e3a3f1c084505119182ce63050773",
"body": "Pin dependencies",
"is_bot": false,
"headline": "Merge pull request #7 from woocommerce/renovate/pin-dependencies",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:22:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f3fda72d146b4c12d2f9240af4b21988d15cf53",
"body": null,
"is_bot": false,
"headline": "Pin dependencies",
"author_name": "Renovate Bot",
"author_login": "renovate-bot",
"committed_at": "2019-10-16T18:21:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f69333c0774da04f975eef2c08d5f26416e8219",
"body": null,
"is_bot": false,
"headline": "Added renovate.json",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:20:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4be2135f5e96b065b8e7c1b8dba60a330acc989f",
"body": null,
"is_bot": false,
"headline": "Included wc_make_phone_clickable to customEscapingFunctions",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-10-16T18:10:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca80d02513adeea6f05a433bd6e1c29494f88ab1",
"body": null,
"is_bot": false,
"headline": "Version 0.0.7",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-08-23T20:34:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3de981660bb0771517dfcee8ae09ef720c3b66f3",
"body": "Update WPCS package to the latest version",
"is_bot": false,
"headline": "Merge pull request #6 from woocommerce/update/wpcs",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-08-23T20:30:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f82a68ac3a66c6acb5e786b4d7166770c4be011e",
"body": null,
"is_bot": false,
"headline": "Update WPCS package to the latest version",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2019-08-02T13:46:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "801e16d9b5dcae63ffa35ac6f56c3e308c4a4e41",
"body": "Add wc_query_string_form_fields() to customEscapingFunctions",
"is_bot": false,
"headline": "Merge pull request #5 from woocommerce/add/wc_query_string_form_fields",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-07-08T14:47:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b063d1f36219078dd8088115d1b62644664f30c",
"body": "The output produced by wc_query_string_form_fields() is already escaped\nso it is safe to add this function to customEscapingFunctions.",
"is_bot": false,
"headline": "Add wc_query_string_form_fields() to customEscapingFunctions",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2019-07-04T18:44:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3032bdddd60c71d1330f591e1a9128e115f81ee",
"body": null,
"is_bot": false,
"headline": "Version 0.0.6",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-03-11T15:30:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31ba73244a0a51932c9f0c7b8776babe0aeed0c5",
"body": null,
"is_bot": false,
"headline": "Included wc_esc_json as WordPress.Security.EscapeOutput",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2019-03-11T15:28:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f91f940ea0dca2b67be7a8a35c1ded41257b372f",
"body": null,
"is_bot": false,
"headline": "Version 0.0.5",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-20T21:33:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6e359a75c7ff6978e75f8c77eead97139944a86",
"body": "Replace PHPCompatibility with PHPCompatibilityWP",
"is_bot": false,
"headline": "Merge pull request #3 from woocommerce/php-compatibility-wp",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-20T21:27:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2199320cc4c061004b2c47c8bcebe11a7a7832d5",
"body": "PHPCompatibilityWP uses PHPCompatibility but includes WP specific sniffs to prevent false positives from the PHPCompatibility standard by excluding back-fills and poly-fills which are provided by WordPress.",
"is_bot": false,
"headline": "Replace PHPCompatibility with PHPCompatibilityWP",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2018-11-20T19:25:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd1ac5ea92c2bc6ea82a760172c7772d62cdfad8",
"body": null,
"is_bot": false,
"headline": "fix indentation",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2018-11-20T19:14:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38bcd06180670421bb793353ababeb1f4839d5c4",
"body": null,
"is_bot": false,
"headline": "Add .idea to .gitignore",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2018-11-20T18:44:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffc8cf71b36b4b2196c196613fed54497dd0899f",
"body": null,
"is_bot": false,
"headline": "Fix typo",
"author_name": "Rodrigo Primo",
"author_login": "rodrigoprimo",
"committed_at": "2018-11-20T18:39:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f436589c2e44734263964f05860242ae4bf6d025",
"body": null,
"is_bot": false,
"headline": "New cangelog and readme files",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-19T18:40:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7c90d9bb7077a174fed3e8b3388c6e61f88e384",
"body": null,
"is_bot": false,
"headline": "Fixed coding standards",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-19T16:48:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3cfd6b2cd198c8f14707ee1a4feecabd3f33352a",
"body": null,
"is_bot": false,
"headline": "Updated WPCS to 1.2.0",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-19T16:37:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7e6e641e47b397ee64eb52a762c265cf476495a",
"body": null,
"is_bot": false,
"headline": "Updated README.md",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T22:51:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e305d654f7ecd2f2a19e3d85d0e48eb4305f39d1",
"body": "Closes #1",
"is_bot": false,
"headline": "Improve error message for @category",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T22:49:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b166a9ef5f55f69894fd669de0e94a84123c227",
"body": "Default WordPress rules",
"is_bot": false,
"headline": "Merge pull request #2 from woocommerce/update/default-rules",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T22:37:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7358feba84c73d1d3f212e40770b174b2c9efdcb",
"body": null,
"is_bot": false,
"headline": "Updated rules",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T22:36:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "add0cbe2dab32fc43cee6942f8d854228c83e406",
"body": null,
"is_bot": false,
"headline": "Included default rules to ruleset.xml",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T21:52:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8859d069d1fd35f57a0cad876a3a5a5130a3ae7b",
"body": null,
"is_bot": false,
"headline": "Include WordPress coding standards and PHP comp as dependencies",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T21:49:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a87cad685c97669cf1bb7f0212a840d37b880c4",
"body": null,
"is_bot": false,
"headline": "Included .gitignore",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-11-06T21:46:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2890fd5d98b318f62acb42f2b5cd6d02627cfd82",
"body": null,
"is_bot": false,
"headline": "Included @access tag",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2018-03-22T18:39:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "383d5b361c1d7532ae1ca6156fd7619fd37bbc05",
"body": null,
"is_bot": false,
"headline": "Better namespace",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2017-12-21T22:52:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3715045ed0455d98c2557dc2183fe937205996a4",
"body": null,
"is_bot": false,
"headline": "Initial code",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2017-12-21T22:50:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebedeea76acb1e00f51fe4a5b221545c5610739f",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Claudio Sanches",
"author_login": "claudiosanches",
"committed_at": "2017-12-21T22:24:05Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 7,
"latest_release_at": "2025-09-24T15:45:43Z",
"latest_release_tag": "1.0.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 6,
"days_since_latest_release": 307,
"mean_days_between_releases": 375
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "woocommerce/woocommerce-sniffs",
"exists": true,
"license": "MIT",
"keywords": [
"wordpress",
"static analysis",
"standards",
"phpcs",
"woocommerce"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/woocommerce/woocommerce-sniffs",
"is_deprecated": false,
"latest_version": "1.0.1",
"repository_url": "https://github.com/woocommerce/woocommerce-sniffs",
"versions_count": 16,
"total_downloads": 7718295,
"dependents_count": 41,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 215956,
"first_published_at": null,
"latest_published_at": "2025-09-03T13:34:27Z",
"latest_version_yanked": null,
"days_since_latest_publish": 328
}
]
},
"popularity": {
"forks": 10,
"stars": 49,
"watchers": 7,
"fork_history": {
"days": [
{
"date": "2019-07-17",
"count": 1
},
{
"date": "2020-11-22",
"count": 1
},
{
"date": "2021-02-18",
"count": 1
},
{
"date": "2021-05-27",
"count": 1
},
{
"date": "2023-03-23",
"count": 1
},
{
"date": "2023-09-01",
"count": 1
},
{
"date": "2024-05-17",
"count": 1
},
{
"date": "2024-09-08",
"count": 1
},
{
"date": "2025-05-22",
"count": 1
},
{
"date": "2025-09-01",
"count": 1
}
],
"complete": true,
"collected": 10,
"total_forks": 10
},
"star_history": null,
"open_issues_and_prs": 9
},
"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": 4314,
"source_files_sampled": 4,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"composer.json"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "wp-coding-standards/wpcs",
"direct": true,
"version": "3.0.1",
"severity": "high",
"ecosystem": "packagist",
"cvss_score": 8.6,
"advisory_ids": [
"GHSA-3pwp-g2mj-5p3v"
],
"fixed_version": "3.4.1",
"advisory_count": 1,
"oldest_advisory_days": 0
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"high": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 8,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 1
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "wp-coding-standards/wpcs",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^3.0.0"
},
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^1.0.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
"direct": true,
"version": "1.0.0",
"ecosystem": "packagist"
},
{
"name": "wp-coding-standards/wpcs",
"direct": true,
"version": "3.0.1",
"ecosystem": "packagist"
},
{
"name": "phpcompatibility/php-compatibility",
"direct": false,
"version": "9.3.5",
"ecosystem": "packagist"
},
{
"name": "phpcompatibility/phpcompatibility-paragonie",
"direct": false,
"version": "1.3.2",
"ecosystem": "packagist"
},
{
"name": "phpcompatibility/phpcompatibility-wp",
"direct": false,
"version": "2.1.4",
"ecosystem": "packagist"
},
{
"name": "phpcsstandards/phpcsextra",
"direct": false,
"version": "1.1.2",
"ecosystem": "packagist"
},
{
"name": "phpcsstandards/phpcsutils",
"direct": false,
"version": "1.0.8",
"ecosystem": "packagist"
},
{
"name": "squizlabs/php_codesniffer",
"direct": false,
"version": "3.7.2",
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 8,
"direct_count": 2,
"indirect_count": 6
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 21,
"open_issues": 7,
"closed_ratio": 0.611,
"closed_issues": 11,
"closed_unmerged_prs": 8
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "claudiosanches",
"commits": 43,
"avatar_url": "https://avatars.githubusercontent.com/u/1264099?v=4"
},
{
"type": "User",
"login": "rodrigoprimo",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/77215?v=4"
},
{
"type": "User",
"login": "renovate-bot",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/25180681?v=4"
},
{
"type": "User",
"login": "roykho",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/2132595?v=4"
},
{
"type": "User",
"login": "ObliviousHarmony",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/6451942?v=4"
},
{
"type": "User",
"login": "prettyboymp",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/103718?v=4"
},
{
"type": "User",
"login": "kraftbj",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/88897?v=4"
},
{
"type": "User",
"login": "jonathansadowski",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/363749?v=4"
},
{
"type": "User",
"login": "BrianHenryIE",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/4720401?v=4"
},
{
"type": "User",
"login": "GaryJones",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/88371?v=4"
}
],
"contributors_sampled": 12,
"top_contributor_share": 0.512
},
"quality_signals": {
"has_ci": false,
"has_tests": false,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [
"phpcs.xml"
],
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"composer.lock"
],
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 9 merged PRs checked by a CI test -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 3,
"reason": "Found 6/17 approved changesets -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "3e678d6836fc683856b5d498866d06fefbead25d",
"ran_at": "2026-07-29T07:38:18Z",
"aggregate_score": 4.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-03-27T05:05:18Z",
"oldest_open_prs": [
{
"number": 48,
"created_at": "2026-03-24T16:16:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 49,
"created_at": "2026-07-29T07:33:58Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-03-27T05:05:16Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 22,
"created_at": "2021-08-30T08:33:35Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 34,
"created_at": "2023-06-28T14:42:31Z",
"last_comment_at": "2023-09-13T16:10:55Z",
"last_comment_author": "helgatheviking"
},
{
"number": 38,
"created_at": "2023-12-14T22:38:20Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 39,
"created_at": "2024-02-01T14:02:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 40,
"created_at": "2024-07-19T15:43:07Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 41,
"created_at": "2024-07-25T11:58:43Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 42,
"created_at": "2024-08-09T22:34:47Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/woocommerce/woocommerce-sniffs",
"host": "github.com",
"name": "woocommerce-sniffs",
"owner": "woocommerce"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 51 is calibrated to 51 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 51,
"calibrated": 51,
"calibration": "2026-08-02"
}
}
],
"value": 51,
"inputs": {
"security": 46,
"vitality": 50,
"community": 54,
"governance": 66,
"calibration": "2026-08-02",
"engineering": 39,
"ai_readiness": 34,
"weighted_overall_raw": 51
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 50,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "weak",
"name": "Development activity",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"commits_last_year": 7,
"human_commit_share": 0.988,
"days_since_last_push": 0,
"active_weeks_last_year": 6
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "6/52 weeks with commits",
"points": 4.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 6
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "7 commits in the last year",
"points": 8.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 7
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 54,
"inputs": {
"releases_count": 6,
"latest_release_tag": "1.0.1",
"releases_from_tags": false,
"days_since_latest_release": 307,
"mean_days_between_releases": 375
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 307 days ago",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 307
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~375 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 375
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 130,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 130 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 130
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 54,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"forks": 10,
"stars": 49,
"watchers": 7,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "49 stars",
"points": 27.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 49
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "10 forks",
"points": 8,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 10
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "7 watchers",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 7
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 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
}
]
},
{
"key": "ecosystem_adoption",
"band": "excellent",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"packages": [
"woocommerce/woocommerce-sniffs"
],
"dependents": 41,
"ecosystems": "packagist",
"total_downloads": 7718295,
"monthly_downloads": 215956
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "215,956 downloads/month across packagist",
"points": 71.1,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 215956,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "41 packages depend on it",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 41
}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 66,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "weak",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 44,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 12,
"top_contributor_share": 0.512
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 51% of commits",
"points": 11,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 51
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "12 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 12
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"merged_prs": 21,
"open_issues": 7,
"closed_issues": 11,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.611,
"closed_unmerged_prs": 8,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "61% of issues closed",
"points": 25.7,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 61
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "21/29 decided PRs merged",
"points": 21.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 21,
"decided": 29
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 6/17 approved changesets -- score normalized to 3",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"followers": 1053,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "woocommerce",
"public_repos": 247,
"account_age_days": 5741
},
"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,053 followers of woocommerce",
"points": 21.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 1053,
"login": "woocommerce"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "247 public repos, account ~15 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 247
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 91,
"inputs": {
"packages": [
"woocommerce/woocommerce-sniffs"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 328
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on packagist",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "packagist"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 328 days ago",
"points": 26,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 328
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "16 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 16
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "weak",
"name": "Engineering Quality",
"value": 39,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"has_ci": false,
"has_tests": false,
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": "phpcs.xml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpcs.xml"
}
}
],
"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": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 9 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "https://packagist.org/packages/woocommerce/woocommerce-sniffs",
"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://packagist.org/packages/woocommerce/woocommerce-sniffs",
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "weak",
"name": "Security",
"value": 46,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 4.1
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 9 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 6/17 approved changesets -- score normalized to 3",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "good",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 8 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 8
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 68,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 8,
"unassessed_packages": 0,
"affected_by_severity": "high 1",
"direct_affected_packages": 1
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "1 affected: wp-coding-standards/wpcs 3.0.1 (high 8.6)",
"points": 10.9,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 1,
"packages": "wp-coding-standards/wpcs 3.0.1 (high 8.6)"
}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory has been public longer than 90 days",
"points": 40,
"status": "met",
"details": [
{
"code": "advisories_none_stale",
"params": {
"days": 90
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 8,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 14
},
"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": 34,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.357,
"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": "30 of 84 human commits state their intent (structured subject or explanatory body)",
"points": 19,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 30,
"sampled": 84
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "weak",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 37,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [
"composer.lock"
],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.024,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.012
},
"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": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": "phpcs.xml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpcs.xml"
}
}
],
"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": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "2 of the last 85 commits agent-authored or agent-credited",
"points": 4.7,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"sampled": 85
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 85 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 85
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 4314,
"source_files_sampled": 4,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "PHP without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "PHP"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/4 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 4,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [
"library"
],
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:packagist",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-29T07:38:37.169620Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/w/woocommerce/woocommerce-sniffs.svg",
"full_name": "woocommerce/woocommerce-sniffs",
"license_state": "standard",
"license_spdx": "MIT"
}