Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 185,
"has_wiki": true,
"homepage": null,
"languages": {
"JavaScript": 43456
},
"pushed_at": "2026-07-18T08:34:33Z",
"created_at": "2019-01-03T20:49:35Z",
"owner_type": "Organization",
"updated_at": "2026-07-18T08:34:37Z",
"description": "Invokes connect-like middleware if / unless routing criteria matches. Inspired on express-unless module.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "JavaScript",
"significant_languages": [
"JavaScript"
]
},
"owner": {
"blog": "https://21no.de",
"name": "21no.de",
"type": "Organization",
"login": "BackendStack21",
"company": null,
"location": "Germany",
"followers": 32,
"avatar_url": "https://avatars.githubusercontent.com/u/83282534?v=4",
"created_at": "2021-04-27T11:00:50Z",
"is_verified": null,
"public_repos": 43,
"account_age_days": 1913
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.6.1",
"kind": "patch",
"published_at": "2026-07-18T08:44:41Z"
},
{
"tag": "v1.6.0",
"kind": "minor",
"published_at": "2026-03-29T14:35:40Z"
},
{
"tag": "v1.5.0",
"kind": "minor",
"published_at": "2025-09-15T20:11:28Z"
},
{
"tag": "v1.4.1",
"kind": "patch",
"published_at": "2024-09-21T13:54:44Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2023-02-18T14:08:47Z"
},
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2022-04-24T13:41:11Z"
},
{
"tag": "v1.2.5",
"kind": "patch",
"published_at": "2020-11-13T12:33:28Z"
},
{
"tag": "v1.2.3",
"kind": "patch",
"published_at": "2019-12-20T10:24:48Z"
},
{
"tag": "v1.2.2",
"kind": "patch",
"published_at": "2019-09-29T19:37:20Z"
},
{
"tag": "v1.2.1",
"kind": "patch",
"published_at": "2019-06-25T11:33:09Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2019-01-09T15:28:51Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2019-01-07T22:33:48Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2019-01-06T21:53:19Z"
}
],
"recent_commits": [
{
"oid": "2f71d8ec03788eb98a8e243a4d9701a83a5967b9",
"body": null,
"is_bot": false,
"headline": "chore: update version number to 1.6.1 in package.json",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-07-18T08:34:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a30e9ac85ff0c30f6b470d20ec6fe4a0d03b9c5c",
"body": "The router cache key derived from only array length, first and last\nendpoints, so two different endpoint arrays could collide and silently\nreuse a router built for different routes. Serialize the full endpoint\nlist as the cache key instead.\n\nRefs: GHSA-qh3v-q696-68m4",
"is_bot": false,
"headline": "fix: prevent router cache reuse across colliding endpoint arrays",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-07-18T08:34:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0128342572e20260a089322257792e3ff5d67da2",
"body": null,
"is_bot": false,
"headline": "chore: update version number to 1.6.0 in package.json",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-03-29T14:30:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a11173cde3a81df42a345713316702838a831ce5",
"body": "- Fix linting\n- Reorganize test structure: move core tests to tests/core.test.js\n- Update documentation with comprehensive examples and API reference\n- Update package.json with test configuration",
"is_bot": false,
"headline": "fix: resolve JavaScript Standard Style linting violations (#12)",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-03-29T14:30:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0bdf5d9eea51571b721d6b14ed97412a5298ff3",
"body": "… hashing (#11)\n\n* perf: optimize routing with handler reuse, endpoint caching, and fast hashing\n\n- Replace closure-based handler creation with pre-created functions to reduce memory allocations\n- Add normalized endpoint caching (WeakMap) to avoid re-normalizing identical endpoints\n- Implement fast \n[…]\nhecking and single property access\n- Simplify execution logic with early returns for better branch prediction\n- Update Node engine requirement to >=22.0.0 for modern runtime features\n\n* chore: linting",
"is_bot": false,
"headline": "perf: Pptimize routing with handler reuse, endpoint caching, and fast…",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-03-29T14:09:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f789ddad7bf211ed1851a359f3484827de3b443c",
"body": "* chore: update dependencies to latest versions\n\n- find-my-way: 9.3.0 → 9.5.0\n- chai: 4.3.7 → 6.2.2\n- mocha: 11.7.2 → 11.7.5\n- nyc: 17.1.0 → 18.0.0\n- supertest: 7.1.4 → 7.2.2\n\nAll tests pass with maintained code coverage (98.96% lines).\nNo breaking changes detected.\n\n* security: fix all npm vulnerab\n[…]\nstable version (22.x)\n\n- Update setup-node action from v1 to v4\n- Update Node.js version from 16.x to 22.x (latest stable)\n- Ensures CI runs on modern Node.js with latest features and security patches",
"is_bot": false,
"headline": "Update dependencies (#10)",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2026-03-28T20:53:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "607915ddf93380374e324018d0056ef0c1d2a23f",
"body": null,
"is_bot": false,
"headline": "Revert version number to 1.5.0 in package.json",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2025-09-15T20:11:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ab5b50182234c7fc4499e6f464757d29e5ab43a",
"body": null,
"is_bot": false,
"headline": "v1.5.1",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2025-09-15T20:09:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61db8754e7b74ea8e53c8bb4063544cc0a321c0c",
"body": "* add TypeScript definitions for middleware endpoint configuration and execution options\n\n* refactor: optimize router handling and middleware execution logic\n\n* chore: update package.json to include additional files and upgrade dependencies",
"is_bot": false,
"headline": "Introducing performance optimizations and TypeScript Types (#9)",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2025-09-15T20:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "458b397efcaf9736d29006d25b5ef9f2eb1befce",
"body": null,
"is_bot": false,
"headline": "v1.4.1",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2024-09-21T13:54:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64407f6cb86141aec16a37cd3d0e462a941b86b5",
"body": null,
"is_bot": false,
"headline": "update find-my-way dependency to version 9.0.1 (#8)",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2024-09-21T13:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e52b79bb02ab553b9f0d5a026fc20ef66c529505",
"body": null,
"is_bot": false,
"headline": "Minor documention update",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2024-01-17T16:35:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "256ab58350caaafecb38935305042ec97dd4d6da",
"body": null,
"is_bot": false,
"headline": "adding cookie banner",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-09-17T12:46:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9703492daf5f3d932ce36caab397b988bd156acd",
"body": null,
"is_bot": false,
"headline": "removing bold body font",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-09-17T12:44:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5798f0aafdd23edcbac01da36680d48471e0eac7",
"body": null,
"is_bot": false,
"headline": "updating website font",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-09-17T12:27:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d35c54cc8204036d1da8801d0ebaf34d67c5c60f",
"body": null,
"is_bot": false,
"headline": "updating font-family",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-09-03T12:41:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a245438f31243b314003a8d60eba860659c51ab",
"body": null,
"is_bot": false,
"headline": "v1.4.0",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-02-18T14:07:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c637df5e9d6a946dc4aef60ff656865ac6aba9c2",
"body": null,
"is_bot": false,
"headline": "adding project logo and badges",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2023-02-18T14:07:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0731022cde5db280d57abaa637094ae38b606fd1",
"body": null,
"is_bot": false,
"headline": "v1.3.0",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T13:38:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "decbcfdf053994b0e66c5fb1adbed2756adc31ef",
"body": "…into master",
"is_bot": false,
"headline": "Merge branch 'master' of github.com:jkyberneees/middleware-if-unless …",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T13:37:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8c09ad6d80777235f15224524b89d2ba067b1b3",
"body": null,
"is_bot": false,
"headline": "enabling plugins",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T13:37:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6c9ddd891cd55fd3d0872562c0e03db3867a635",
"body": null,
"is_bot": false,
"headline": "Create CNAME",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T13:28:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e51da8ff43f281aee8024df4dbb02e22f0f2571",
"body": null,
"is_bot": false,
"headline": "refactoring documentation",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T13:20:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d986c1e8951f5ef38cd728e3ed3a4c4e1adbc9a",
"body": "supporting find-my-way v5.x",
"is_bot": false,
"headline": "Merge pull request #7 from BackendStack21/updating-deps",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T12:56:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "554798300c122a206cc3208b77b54cad347fc126",
"body": null,
"is_bot": false,
"headline": "adding git actions support",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T12:54:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0282e2cc1018e9db48df0f999bd94a9bcd4879cc",
"body": null,
"is_bot": false,
"headline": "fixing api gateway ref",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T12:54:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49cb6a02ab78431f5c79023e2eb2fdbc094a3e57",
"body": null,
"is_bot": false,
"headline": "upgrading to find-my-way router 5.x",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2022-04-24T12:53:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78530a930748737bd35ebdfcbc027c94fc031d5e",
"body": null,
"is_bot": false,
"headline": "v1.2.5",
"author_name": "Rolando Santamaria Maso",
"author_login": null,
"committed_at": "2020-11-13T12:32:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9614fb334554bf8b26a74e021bc39f53a621fa0a",
"body": "Bump dependencies",
"is_bot": false,
"headline": "Merge pull request #6 from jkyberneees/bump-dependencies",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2020-11-13T12:30:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4087c5f239f744a8d01c327bd1b678697e4c8e3",
"body": null,
"is_bot": false,
"headline": "updating deps",
"author_name": "Rolando Santamaria Maso",
"author_login": null,
"committed_at": "2020-11-13T12:26:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06b0ff2822a3d949fc850a3b83d9eed3193f9122",
"body": null,
"is_bot": false,
"headline": "updating tracis CI",
"author_name": "Rolando Santamaria Maso",
"author_login": null,
"committed_at": "2020-11-13T12:26:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64851f8cf5aa33c34fd4bac94a9155bcb483af42",
"body": null,
"is_bot": false,
"headline": "disable package-lock.json",
"author_name": "Rolando Santamaria Maso",
"author_login": null,
"committed_at": "2020-11-13T12:26:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71b6006e9ee3b857ba681d3baceab9dd006d2644",
"body": "updating dependencies",
"is_bot": false,
"headline": "Merge pull request #5 from jkyberneees/update-dependencies",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2020-03-15T17:45:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "716ba5dad3dc1e328adcbaf7f52795c217411595",
"body": null,
"is_bot": false,
"headline": "updating dependencies",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2020-03-15T17:43:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "949560ae56554560162d7239f5fad00eaa9209d5",
"body": null,
"is_bot": false,
"headline": "delete package-lock.json from module",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2020-03-15T17:42:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc758a28527fd128accaeefd311ae4f24bd588c1",
"body": null,
"is_bot": false,
"headline": "v1.2.3",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-12-20T10:23:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b9e12c0481a6664132f8b7854c22c6cda24fdfb",
"body": "v1.2.2 -> updating deps",
"is_bot": false,
"headline": "Merge pull request #3 from jkyberneees/update-deps",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-09-29T19:36:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "682b7ec114667e56555d4d2fb411aa647cf71c4f",
"body": null,
"is_bot": false,
"headline": "v1.2.2 -> updating deps",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-09-29T19:34:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65988a21ed971490589ccdd8c805d6e4a539b55f",
"body": null,
"is_bot": false,
"headline": "updating deps",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-08-27T20:06:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8829ee5589942f26bb67ffb3bac4de1aa7bacaa",
"body": null,
"is_bot": false,
"headline": "v1.2.1",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-06-25T11:32:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53680a2aae29f6add4c48eae465c45417c7ee07e",
"body": null,
"is_bot": false,
"headline": "updating deps",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-06-25T11:31:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eba4c1d985e3a5e01e8d1037387b7b63122641e0",
"body": null,
"is_bot": false,
"headline": "adding \"engines\" config",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-10T14:09:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b450b9fd8de3f12cdb0a4290bd7edf2efceb8270",
"body": null,
"is_bot": false,
"headline": "minor source code refactoring",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-10T14:08:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e63dfd61f19e6649c9d91fd6bd080ba99dc5f42",
"body": null,
"is_bot": false,
"headline": "minor format fix",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-09T15:33:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae0425737adf8117f3f7c4c55736443896ca7430",
"body": "supporting req.params override feature",
"is_bot": false,
"headline": "Merge pull request #2 from jkyberneees/ft/requests-params-update",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-09T15:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e03e93622a295a10b240294c61b088c13e23eb55",
"body": null,
"is_bot": false,
"headline": "supporting req.params override feature",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-09T15:24:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a25f23a1608deb64886859e28c00f0ee90c51285",
"body": "supporting routing versions",
"is_bot": false,
"headline": "Merge pull request #1 from jkyberneees/supporting-accept-version-header",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-07T22:27:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6a144dc8296ca7f4cb3171df2b5f97d95769c3c",
"body": null,
"is_bot": false,
"headline": "adding travis CI",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-07T22:25:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "557d87f300466a89da2f4d3881090314df8c0468",
"body": null,
"is_bot": false,
"headline": "supporting routing versions",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-07T22:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7da14a1a65f2df35c36b1dcfdad1fafe830a70e7",
"body": null,
"is_bot": false,
"headline": "improving if method docs",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-06T21:47:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de418645f3bd244dff2a1af9bf18d483356b975b",
"body": null,
"is_bot": false,
"headline": "initial commit 1.0.0",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-06T21:41:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92a090e115810061dc10478bca8eb657b8bc6c99",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Rolando Santamaria Maso",
"author_login": "jkyberneees",
"committed_at": "2019-01-03T20:49:35Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 13,
"commits_last_year": 9,
"latest_release_at": "2026-07-18T08:44:41Z",
"latest_release_tag": "v1.6.1",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 3,
"days_since_latest_release": 5,
"mean_days_between_releases": 286.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 50,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "middleware-if-unless",
"exists": true,
"license": "MIT",
"keywords": [
"middleware",
"if",
"unless"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/middleware-if-unless",
"is_deprecated": false,
"latest_version": "1.6.1",
"repository_url": "https://github.com/BackendStack21/middleware-if-unless",
"versions_count": 14,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 1,
"monthly_downloads": 15518,
"first_published_at": "2019-01-06T21:47:58.346000Z",
"latest_published_at": "2026-07-18T08:37:01.441000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 4,
"watchers": 2,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 33886,
"source_files_sampled": 6,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 7,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "find-my-way",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^9.5.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "find-my-way",
"direct": true,
"version": "^9.5.0",
"ecosystem": "npm"
},
{
"name": "chai",
"direct": false,
"version": "^6.2.2",
"ecosystem": "npm"
},
{
"name": "express-unless",
"direct": false,
"version": "^2.1.3",
"ecosystem": "npm"
},
{
"name": "mocha",
"direct": false,
"version": "^11.3.0",
"ecosystem": "npm"
},
{
"name": "nyc",
"direct": false,
"version": "^18.0.0",
"ecosystem": "npm"
},
{
"name": "restana",
"direct": false,
"version": "^5.1.0",
"ecosystem": "npm"
},
{
"name": "supertest",
"direct": false,
"version": "^7.2.2",
"ecosystem": "npm"
}
],
"collected": true,
"truncated": false,
"total_count": 7,
"direct_count": 1,
"indirect_count": 6
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 11,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "jkyberneees",
"commits": 48,
"avatar_url": "https://avatars.githubusercontent.com/u/4096860?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"tests.yaml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 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": 5,
"reason": "4 out of 7 merged PRs checked by a CI test -- score normalized to 5",
"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 0/26 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 1,
"reason": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
"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": 3,
"reason": "SAST tool is not run on all commits -- score normalized to 3",
"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": "2f71d8ec03788eb98a8e243a4d9701a83a5967b9",
"ran_at": "2026-07-23T16:08:08Z",
"aggregate_score": 3.4,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-18T08:34:59Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-03-29T14:30:27Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/BackendStack21/middleware-if-unless",
"host": "github.com",
"name": "middleware-if-unless",
"owner": "BackendStack21"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"security": 34,
"vitality": 62,
"community": 38,
"governance": 55,
"engineering": 65
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 62,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"commits_last_year": 9,
"human_commit_share": 1,
"days_since_last_push": 5,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "9 commits in the last year",
"points": 9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 9
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
"points": 1,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 84,
"inputs": {
"releases_count": 13,
"latest_release_tag": "v1.6.1",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 286.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "13 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 13
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~286.7 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 286.7
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 5,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 5 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 5
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 38,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 8,
"inputs": {
"forks": 0,
"stars": 4,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "4 stars",
"points": 7.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 4
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"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": "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": "good",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 70,
"inputs": {
"packages": [
"middleware-if-unless"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 15518
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "15,518 downloads/month across npm",
"points": 55.9,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 15518,
"ecosystems": "npm"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 55,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"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 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"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": 66,
"inputs": {
"merged_prs": 11,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"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": "11/12 decided PRs merged",
"points": 35.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 11,
"decided": 12
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/26 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": 63,
"inputs": {
"followers": 32,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "BackendStack21",
"public_repos": 43,
"account_age_days": 1913
},
"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": "32 followers of BackendStack21",
"points": 10.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 32,
"login": "BackendStack21"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "43 public repos, account ~5 yr old",
"points": 22.4,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 43
}
},
{
"code": "account_age_years",
"params": {
"years": 5
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"middleware-if-unless"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 5
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "14 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 14
}
}
],
"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": 65,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 58,
"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": "4 out of 7 merged PRs checked by a CI test -- score normalized to 5",
"points": 10,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": 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": "at_risk",
"name": "Security",
"value": 34,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 34,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.4
},
"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": "4 out of 7 merged PRs checked by a CI test -- score normalized to 5",
"points": 1.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/26 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1",
"points": 0.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 3",
"points": 1.5,
"status": "partial",
"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": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "critical",
"name": "AI Readiness",
"value": 25,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 14,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.269,
"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": "14 of 52 human commits state their intent (structured subject or explanatory body)",
"points": 14.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 14,
"sampled": 52
}
}
],
"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 52",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 52
}
}
],
"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": "JavaScript",
"largest_source_bytes": 33886,
"source_files_sampled": 6,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "JavaScript without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "JavaScript"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/6 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 6,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index npm:middleware-if-unless@1.6.1; advisories assessed against the repository dependency graph instead",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-23T16:08:17.894401Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/b/BackendStack21/middleware-if-unless.svg",
"full_name": "BackendStack21/middleware-if-unless",
"license_state": "standard",
"license_spdx": "MIT"
}