原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 145,
"has_wiki": true,
"homepage": null,
"languages": {
"PHP": 166698
},
"pushed_at": "2026-07-21T20:36:00Z",
"created_at": "2026-02-18T12:57:20Z",
"owner_type": "Organization",
"updated_at": "2026-07-21T20:37:42Z",
"description": "A Composer plugin that prefixes namespaces in WordPress plugin dependencies to prevent conflicts",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": "https://veronalabs.com/",
"name": "VeronaLabs",
"type": "Organization",
"login": "veronalabs",
"company": null,
"location": "Estonia",
"followers": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/15246503?v=4",
"created_at": "2015-10-22T10:27:13Z",
"is_verified": null,
"public_repos": 9,
"account_age_days": 3925
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2026-05-04T06:58:12Z"
},
{
"tag": "v1.2.8",
"kind": "patch",
"published_at": "2026-05-02T05:58:23Z"
},
{
"tag": "v1.2.7",
"kind": "patch",
"published_at": "2026-04-22T19:00:05Z"
},
{
"tag": "v1.2.6",
"kind": "patch",
"published_at": "2026-04-18T05:19:47Z"
},
{
"tag": "v1.2.5",
"kind": "patch",
"published_at": "2026-04-07T07:06:18Z"
},
{
"tag": "v1.2.4",
"kind": "patch",
"published_at": "2026-03-05T08:52:41Z"
},
{
"tag": "v1.2.3",
"kind": "patch",
"published_at": "2026-02-21T11:36:31Z"
},
{
"tag": "v1.2.2",
"kind": "patch",
"published_at": "2026-02-21T11:36:19Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2026-02-19T14:43:49Z"
},
{
"tag": "v1.1.1",
"kind": "patch",
"published_at": "2026-02-19T09:42:13Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-02-19T09:24:38Z"
},
{
"tag": "v1.0.1",
"kind": "patch",
"published_at": "2026-02-19T09:24:36Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2026-02-19T09:24:34Z"
},
{
"tag": "v0.1.0-beta",
"kind": "prerelease",
"published_at": "2026-02-18T20:30:36Z"
}
],
"recent_commits": [
{
"oid": "081666ede7540ca52d67aca20bc698f62a0a571f",
"body": "ClassmapReplacer prefixed every quoted occurrence of a global class name,\nincluding quoted words that are not class references but pieces of a string\nbeing concatenated.\n\nThe worst case was Eloquent: it derives accessor/mutator method names with\n'get' . Str::studly($key) . 'Attribute'. Symfony's php\n[…]\n values surfaced instead, with no error to point at the\ncause.\n\nQuoted strings adjacent to a concatenation dot on either side are now left\nalone. Standalone quoted class references are still prefixed.",
"is_bot": false,
"headline": "Stop renaming quoted text fragments as class references (v1.4.2)",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-07-21T20:35:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8212d85a4957de77970cd49b08989d12bee43c88",
"body": null,
"is_bot": false,
"headline": "Release 1.4.1 (internal refactor, no behavior change)",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-06-04T16:22:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "318a4f83b8e4982fd55ba6b47ca690206fdda2f4",
"body": "Pure cleanup on top of v1.4.0, no behavior change:\n- Extract Prefixer::applyReplacers() and route the main loop, dev-package\n loop, and updateCallSites through it (host source still skips the\n nullable fixer via the default-null param).\n- Make Plugin::detectPhpConstraint() a shared public static and call it\n from PrefixCommand instead of a divergent inline copy.\n- Drop the unreachable empty/leading-? guard in NullableParamReplacer\n (the regex cannot produce either).",
"is_bot": false,
"headline": "refactor: dedup replacer-apply and php-constraint detection",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-06-04T16:11:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f5327f2a68226328dd853c1b2e0d98adac65b4f",
"body": null,
"is_bot": false,
"headline": "docs: add php_compat to the feature comparison table",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-06-04T15:41:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39fca769ac73e7ee6a87cdfad06eba82934ac072",
"body": "PHP 8.4 deprecates the implicitly-nullable parameter style\n(`Type $x = null`). Dependencies pinned for an older PHP floor — e.g.\nthecodingmachine/safe 2.5.0, kept for PHP 8.0 support — still ship the\nold form and flood PHP 8.4/8.5 runtimes with E_DEPRECATED notices.\n\nNew opt-in `extra.wp-scoper.php_\n[…]\nen (not wired into updateCallSites()).\n\nNew Config API: isPhpCompatEnabled(), getTargetPhpFloor(),\ntargetPhpAtLeast(), parsePhpFloor(), and an optional $phpConstraint\nparameter on Config::fromArray().",
"is_bot": false,
"headline": "Add php_compat fixer for implicit-nullable params (v1.4.0)",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-06-04T15:13:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "69f21c3504ef7bf77a420fca4e8ab1e530c4884c",
"body": "…(v1.3.0)\n\nA single composer.json can now express a base set of scoped packages plus\nzero-or-more named profiles that contribute additional packages (and\noverride scalar keys). Build scripts pick the profile via the\nSCOPER_PROFILE environment variable.\n\nUse case: a canonical monorepo that produces b\n[…]\ntring): array\n- Config::fromArray() gains an optional $profile parameter\n- Plugin::onPostInstallOrUpdate now reads SCOPER_PROFILE env\n\nExisting composer.json configs without `profiles` are unaffected.",
"is_bot": false,
"headline": "Add SCOPER_PROFILE-driven profiles for per-build scoped package sets …",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-05-04T06:32:08Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "233cbecb8b6d045b76d67d8b40375c6f947f6978",
"body": "…2.8)\n\nWhen a scoped package declared an autoload.files entry (Symfony polyfills,\nleague/csv function file, and similar), wp-scoper deleted the package's\nvendor directory but left Composer's eager-load tables pointing at the\nnow-missing path, triggering \"require\" failures on autoloader boot.\n\nFileCo\n[…]\n:deleteVendorPackages() now also strips the matching entries\nfrom vendor/composer/autoload_files.php and autoload_static.php, so host\nprojects no longer need a custom bin/fix-autoload.php post-script.",
"is_bot": false,
"headline": "Strip composer autoload references when deleting vendor packages (v1.…",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-05-02T05:53:48Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7a000ab0c5b66edd7d9b671d8e32123e8f1cf017",
"body": "Symfony polyfill packages ship stubs that declare Normalizer, Attribute,\nJsonException, PhpToken, and UnhandledMatchError in the global namespace\nso they serve as fallbacks when the corresponding PHP extension/version\nis missing. ClassmapReplacer was prefixing those stubs alongside other\nglobal clas\n[…]\nntl ext).\n\nExtend the built-in allowlist with the five polyfilled classes plus\nCompileError, UnitEnum, BackedEnum, SensitiveParameter, and Override\nso future polyfill stubs don't regress the same way.",
"is_bot": false,
"headline": "Keep polyfill stub classes in the global namespace (v1.2.7) (#2)",
"author_name": "Mostafa Soufi",
"author_login": "mostafasoufi",
"committed_at": "2026-04-22T18:59:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "214fee917ac4bbcf54237e4021fe9fa86670027a",
"body": null,
"is_bot": false,
"headline": "Anchor built-in directory exclude patterns (v1.2.6)",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-04-18T05:19:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a33a2b821395b61d83e12df2ff13ba26d02ffcf",
"body": "…patterns\n\nAnchor built-in directory exclude patterns to path-segment boundary",
"is_bot": false,
"headline": "Merge pull request #1 from navidkashani/fix/anchor-directory-exclude-…",
"author_name": "Mostafa Soufi",
"author_login": "mostafasoufi",
"committed_at": "2026-04-17T19:32:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8af748e168cad06fd3514c5fafe9b77164d453e8",
"body": "Seven of the directory patterns in Config::BUILT_IN_EXCLUDE_PATTERNS are\nunanchored, so they behave as substring matches rather than path-segment\nmatches. Most visibly, /ext\\//i matches Text/Foo.php because \"ext/\" is a\nsubstring of \"Text/\" (case-insensitive), causing FileCopier::shouldExclude()\nto r\n[…]\ntions in ConfigTest to\nthe new anchored form.\n\nThis is a tightening of the pattern: only the substring collisions above\nare affected, and they were being dropped unintentionally. No public\nAPI change.",
"is_bot": false,
"headline": "Anchor built-in directory exclude patterns to path-segment boundary",
"author_name": "Navid Kashani",
"author_login": "navidkashani",
"committed_at": "2026-04-17T09:17:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "544cb8630c087eb5f89f51671296a171d2204d7e",
"body": "`NamespaceReplacer` had two `use` statement patterns: one for\n`use Namespace\\Sub\\Class;` (requires trailing `\\`) and one for\n`use Namespace;` (requires `;` immediately after the namespace).\nNeither matched `use Namespace as Alias;` when the use target was\nthe namespace itself, so Symfony polyfill bo\n[…]\n the unscoped namespace.\n\nExtend Pattern 3 to accept an optional `as <alias>` group and\npreserve it in the replacement. Add regression tests covering\nboth the alias form and the no-double-prefix case.",
"is_bot": false,
"headline": "Fix use-as-alias form not being prefixed (v1.2.5)",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-04-07T06:56:55Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "eb4c15397a57ef44a17b30907880369da2aaf1bc",
"body": null,
"is_bot": false,
"headline": "Add changelog entry for v1.2.4",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-03-05T08:51:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f958a1bffade65bb1f6b30c9965718d98e3b2386",
"body": "Generated autoload.php and autoload-classmap.php now include\n`if (!defined('ABSPATH')) exit;` to prevent direct file access,\nwhich is required for WordPress.org plugin compliance.",
"is_bot": false,
"headline": "Add ABSPATH guard to generated autoload files",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-03-05T08:49:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c9fcb8ebb611a2aac726e4e7382afd600e38c86",
"body": "Add .pem, .crt, .cer, .key to built-in exclude patterns to prevent\ncertificate and key files from being copied into the scoped output.",
"is_bot": false,
"headline": "feat: exclude certificate/key files from scoped output",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-21T11:20:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1df9ad528aa353cbdeb4f734e212250f4cffcb16",
"body": "…ges/",
"is_bot": false,
"headline": "v1.2.2: Clean up empty vendor parent dirs, update README to use packa…",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T20:40:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2524b5b4f5d027b74a6e4142b817759a52cb0aea",
"body": "When a namespace name (e.g. \"Carbon\") also appears as the last segment\nof an already-prefixed path (e.g. Prefix\\Illuminate\\Support\\Carbon),\nthe FQN standalone pattern incorrectly prefixed it again, producing\nPrefix\\Illuminate\\Support\\Prefix\\Carbon.\n\nAdd post-processing cleanup that detects spurious mid-path prefix\ninsertions and removes them.",
"is_bot": false,
"headline": "Fix cross-namespace double-prefixing in NamespaceReplacer",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T17:34:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f2a3030c279b1e69892cb5ac80dc7c951b328aa",
"body": "- update_call_sites accepts array of directories (e.g. [\"src\", \"includes\"])\n- Exclude vendor/ from call site scanning when scanning root \".\"\n- Handle PHP 8.2 readonly class modifier in classmap generator\n- Exclude .legacy.php files (Zend backward-compat shims)\n- Skip excluded files in autoload.php r\n[…]\nss files in templates/views/resources dirs no longer skipped\n- New built-in exclude patterns: .legacy.php, .neon, .xsd, renovate.json,\n psalm-baseline.xml, sonar-project.properties, phpdox.xml, docs/",
"is_bot": false,
"headline": "v1.2.0: Fix readonly classmap, vendor call-site leak, template detection",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T14:43:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "adf463afd3fb2a7ddecf023848ab9cea71442aae",
"body": "The `composer wp-scope` command was not passing the host project's\nPSR-4 config to Config::fromArray(), causing the generated autoload.php\nto differ from the one produced by the composer plugin hook.",
"is_bot": false,
"headline": "Fix PrefixCommand missing host PSR-4 autoload mappings",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T09:41:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa8291522d3cb68fbfed8d0312141d71613df7dd",
"body": "- Track original/output size with reduction percentage in summary table\n- Add Files Excluded stat\n- Built-in excludes for tests/, bin/, dev-bin/, Makefile, phpunit.xml, etc.\n- Fix global class resolution in namespaced files (FQN with leading \\)\n- Skip class declaration renaming in namespaced files\n- Add use-import pattern for global classes\n- Skip usage replacement when namespaced import shadows global class\n- Update README with output stats table",
"is_bot": false,
"headline": "v1.1.0: Add size stats, expand excludes, fix ClassmapReplacer",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T09:13:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0444ebd7fb64d184797e1ecee7eb3295567f377d",
"body": "- Track excluded file count and total output size during copy\n- Display Files Excluded and Output Size in summary table\n- Add built-in exclude patterns: tests/, bin/, dev-bin/, Makefile,\n phpunit.xml, .travis.yml, Dockerfile, COPYING\n- Add Output section with stats table to README",
"is_bot": false,
"headline": "Add excluded files/output size stats and expand built-in excludes",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T08:59:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2e464528ffb8f771fe0f0e93067954d8a9bcfa1",
"body": "Automatically excludes test directories, bin/dev-bin scripts,\nMakefiles, phpunit.xml, Dockerfiles, and other dev artifacts\nfrom prefixed output.",
"is_bot": false,
"headline": "Add built-in exclude patterns for tests, bin, dev-bin, Makefile",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T08:54:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "196e0030dbd4f69e24ca61b8a97072a34b1d30d3",
"body": "- Skip class declaration renaming in namespaced files (e.g.\n DeviceDetector\\Yaml\\Spyc is not the global Spyc class)\n- Add use-import pattern for global classes (use Spyc as SpycParser)\n- Skip usage-pattern replacement when a namespaced use-import exists\n for the same class name (bare Spyc resolves via use-import, not global)",
"is_bot": false,
"headline": "Fix ClassmapReplacer for namespaced files with same-name classes",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T08:27:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f082259e30ff06610377bc5b6aac396422973172",
"body": "Use fully qualified names (\\PrefixedClass) for global class references\nin usage contexts (new, instanceof, extends, implements, ::, typehints,\nreturn types) so they resolve correctly inside namespaced files.\nDeclarations and string references remain unqualified.",
"is_bot": false,
"headline": "Fix global class resolution in namespaced files",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T08:11:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3aede95325ec85b9ec2f006435e9f87cb8312eca",
"body": "The classmap used __DIR__ . '/path' but the autoloader also prepended\n__DIR__, causing double absolute paths at runtime.",
"is_bot": false,
"headline": "Fix classmap double __DIR__ in autoloader",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T07:42:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a09fa330bf20c76d2beea0007fc9dca2894f350a",
"body": "…lt excludes\n\n- Fix namespace double-prefixing when class name matches namespace\n (e.g. DeviceDetector\\DeviceDetector)\n- Fix template detection false positives from HTML in PHPDoc comments\n- Add built-in default exclude patterns (examples/, ext/, php4/,\n composer.json, autoload.php, phpcs.xml, etc.)\n- Add summary table output after prefixing with stats\n- Add tests for double-prefixing prevention",
"is_bot": false,
"headline": "Fix double-prefixing, template detection, add summary table and defau…",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-19T07:17:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3917c40b296128ced0ac5e32b1ca6a3dc94e22cf",
"body": "The generated autoloader now includes the host project's PSR-4 mappings\nfrom composer.json, eliminating the need for vendor/autoload.php in\nproduction. WordPress plugins can ship src/Dependencies/autoload.php as\ntheir only autoloader.\n\nAlso:\n- Allow empty packages array (generates autoloader-only when host PSR-4 exists)\n- Add CHANGELOG.md at 0.1.0-beta\n- Document standalone autoloader feature in README",
"is_bot": false,
"headline": "Add standalone autoloader with host PSR-4 support",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-18T20:22:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b6ca4b0edac54e233807c8d0e58843842e57b98",
"body": "- Rename \"wp-scoper\" to \"WP Scoper\" in comparison table header\n- Move Comparison section above Installation for better visibility\n- Add --testdox flag to phpunit in GitHub Actions for readable test output",
"is_bot": false,
"headline": "Move comparison table before installation, add testdox to CI",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-18T13:05:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34908120c7627f98d78f5faaac85483061766125",
"body": "Composer plugin that prefixes namespaces in WordPress plugin dependencies\nto prevent fatal PHP conflicts between plugins sharing the same packages.\n\nFeatures:\n- Namespace, global class, and constant prefixing via regex\n- Automatic transitive dependency resolution\n- Template/view file auto-detection \n[…]\nupport with separate target directory\n- Composer plugin (auto-runs) + standalone CLI + composer command\n- GitHub Actions CI across PHP 7.4-8.3 on Linux/macOS/Windows\n\n87 tests, 150 assertions passing.",
"is_bot": false,
"headline": "Initial implementation of wp-scoper",
"author_name": "mostafa",
"author_login": "mostafasoufi",
"committed_at": "2026-02-18T12:56:33Z",
"body_truncated": true,
"is_coding_agent": false
}
],
"releases_count": 14,
"commits_last_year": 28,
"latest_release_at": "2026-05-04T06:58:12Z",
"latest_release_tag": "v1.3.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 7,
"days_since_latest_release": 78,
"mean_days_between_releases": 8.2
},
"community": {
"has_readme": true,
"has_license": false,
"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": "veronalabs/wp-scoper",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/veronalabs/wp-scoper",
"is_deprecated": false,
"latest_version": "1.4.2",
"repository_url": "https://github.com/veronalabs/wp-scoper",
"versions_count": 18,
"total_downloads": 4895,
"dependents_count": 1,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2228,
"first_published_at": null,
"latest_published_at": "2026-07-21T20:35:44Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 1,
"stars": 6,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-04-17",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": {
"days": [
{
"date": "2026-02-18",
"count": 2
},
{
"date": "2026-03-17",
"count": 2
},
{
"date": "2026-04-14",
"count": 1
},
{
"date": "2026-05-31",
"count": 1
}
],
"complete": true,
"collected": 6,
"total_stars": 6
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 18210,
"source_files_sampled": 28,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"composer.json"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "symfony/console",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^5.4|^6.0|^7.0"
},
{
"name": "symfony/finder",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^5.4|^6.0|^7.0"
},
{
"name": "symfony/filesystem",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^5.4|^6.0|^7.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 2,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "mostafasoufi",
"commits": 28,
"avatar_url": "https://avatars.githubusercontent.com/u/701520?v=4"
},
{
"type": "User",
"login": "navidkashani",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1286738?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.966
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"tests.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": 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": 10,
"reason": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/28 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 7 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 0,
"reason": "license file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 5,
"reason": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "081666ede7540ca52d67aca20bc698f62a0a571f",
"ran_at": "2026-07-21T21:24:22Z",
"aggregate_score": 3.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/veronalabs/wp-scoper",
"host": "github.com",
"name": "wp-scoper",
"owner": "veronalabs"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": "High-Risk Jurisdiction Policy applies a 75% multiplier to weighted overall health and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "jurisdiction_overall_adjustment",
"params": {
"cap": 49,
"pct": 75
}
}
],
"value": 39,
"inputs": {
"security": 28,
"vitality": 75,
"community": 25,
"governance": 59,
"engineering": 61,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 75,
"weighted_overall_before_jurisdiction": 52,
"overall_after_jurisdiction_multiplier": 39
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 75,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 28,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 7
},
"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": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "28 commits in the last year",
"points": 13.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 28
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "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": 100,
"inputs": {
"releases_count": 14,
"latest_release_tag": "v1.3.0",
"releases_from_tags": false,
"days_since_latest_release": 78,
"mean_days_between_releases": 8.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "14 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 14
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 78 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 78
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~8.2 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 8.2
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 25,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 11,
"inputs": {
"forks": 1,
"stars": 6,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "6 stars",
"points": 11.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 6
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": true,
"has_license": false,
"has_contributing": false,
"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": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"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": "at_risk",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 47,
"inputs": {
"packages": [
"veronalabs/wp-scoper"
],
"dependents": 1,
"ecosystems": "packagist",
"total_downloads": 4895,
"monthly_downloads": 2228
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,228 downloads/month across packagist",
"points": 44.6,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2228,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "1 packages depend on it",
"points": 2,
"status": "partial",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 1
}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 59,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.966
},
"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 97% of commits",
"points": 0.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 97
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 7 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 72,
"inputs": {
"merged_prs": 2,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "2/2 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 2,
"decided": 2
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/28 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"followers": 23,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "veronalabs",
"public_repos": 9,
"account_age_days": 3925
},
"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": "23 followers of veronalabs",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 23,
"login": "veronalabs"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "9 public repos, account ~10 yr old",
"points": 19.3,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 9
}
},
{
"code": "account_age_years",
"params": {
"years": 10
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"veronalabs/wp-scoper"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 0
},
"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 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "18 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 18
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 61,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": 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": "critical",
"name": "Security",
"value": 28,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized. High-Risk Jurisdiction Policy applies a 75% multiplier to Security posture and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "jurisdiction_posture_adjustment",
"params": {
"cap": 49,
"pct": 75
}
}
],
"value": 28,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.6,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 75,
"security_posture_after_multiplier": 28,
"security_posture_before_jurisdiction": 37
},
"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": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 1/28 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 7 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "good",
"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": 75,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": true,
"exposures": [
{
"role": "contributor_organization",
"count": 1,
"country": "Iran"
}
],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 11
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "Iran: contributor_organization (1)",
"points": 75,
"status": "partial",
"details": [
{
"code": "jurisdiction_exposure",
"params": {
"role": "contributor_organization",
"count": 1,
"country": "Iran"
}
}
],
"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,
"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": 0.862,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "25 of 29 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 25,
"sampled": 29
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 22,
"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
},
"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 29",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 29
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 18210,
"source_files_sampled": 28,
"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/28 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 28,
"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": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-21T21:24:29.741084Z",
"schema_version": "0.23.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/v/veronalabs/wp-scoper.svg",
"full_name": "veronalabs/wp-scoper",
"license_state": "absent",
"license_spdx": null
}