Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"message-queue",
"redis",
"inter-service-communication",
"json",
"json-message",
"redis-queue",
"message-delivery",
"redis-server",
"message-broker",
"microservices",
"nodejs",
"soa",
"typescript"
],
"is_fork": false,
"size_kb": 1252,
"has_wiki": true,
"homepage": "https://imqueue.org",
"languages": {
"JavaScript": 14706,
"TypeScript": 406389
},
"pushed_at": "2026-07-30T19:28:29Z",
"created_at": "2018-03-04T17:56:48Z",
"owner_type": "Organization",
"updated_at": "2026-07-30T19:29:31Z",
"description": "Fast JSON message queue over Redis for inter-service communication in Node.js & TypeScript microservices — transport layer of the @imqueue framework",
"is_archived": false,
"is_disabled": false,
"license_spdx": "GPL-3.0",
"default_branch": "master",
"license_spdx_raw": "GPL-3.0",
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript"
]
},
"owner": {
"blog": "https://imqueue.org/",
"name": "@imqueue",
"type": "Organization",
"login": "imqueue",
"company": null,
"location": "Universe, Virgo Super-Cluster, Virgo Cluster, Local Group, The Milky Way Galaxy, Orion Arm, The Solar System, Earth",
"followers": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/38657209?v=4",
"created_at": "2018-04-23T11:45:36Z",
"is_verified": null,
"public_repos": 29,
"account_age_days": 3020
},
"license": {
"state": "standard",
"spdx_id": "GPL-3.0",
"raw_spdx": "GPL-3.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v3.3.0",
"kind": "minor",
"published_at": "2026-07-30T19:08:25Z"
}
],
"recent_commits": [
{
"oid": "3eeb15c8322878a67c48203ddecce1ec95b954f2",
"body": "Calls the shared workflow in imqueue/.github. Notes come from a CHANGELOG.md\nsection when present, otherwise GitHub's PR-derived notes, always followed by a\nstandard About + links block so the release page is a self-contained, indexable\ndescription of the package even when the generated change list is empty.\n\nTriggered by the existing `npm version` + `git push --follow-tags` flow, so the\nrelease habit does not change. workflow_dispatch backfills an existing tag and\ndefaults to a dry run.",
"is_bot": false,
"headline": "ci: create the GitHub Release page automatically on tag push",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-30T19:28:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99edc1a9933e1e402c998ab8bafc45cd1d3a055a",
"body": null,
"is_bot": false,
"headline": "3.3.0",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T14:03:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfe837d8d22c91a5b9e7e68641e7bf81a502ad81",
"body": "The subpath pointed at ./debug.d.ts and ./debug.js, neither of which exists in\nthe repository or in any published tarball, so it could never resolve. Nothing\nin core, rpc or the website imports @imqueue/core/debug.\n\nNot a breaking change: resolving it failed before (MODULE_NOT_FOUND) and fails\nnow (ERR_PACKAGE_PATH_NOT_EXPORTED), so nothing that worked stops working —\nonly the error code differs.",
"is_bot": false,
"headline": "fix: drop the unresolvable ./debug export subpath",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T14:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ebcca45024e0960b1b6df8ccd0fc6ae519aa690",
"body": "Neither member does anything. send() builds the wire packet as\n{ id, message, from } and process() reads back the same three, so IMessage.delay\nis never written and never read — delays live in the delayed sorted set, not in\nthe envelope. Nothing anywhere reads IMQOptions.verboseExtended, so setting \n[…]\ne.\n\n@deprecated renders as a \"Warning: This API is now obsolete\" note box above the\nsummary, so anyone with verboseExtended: true in a config now learns it does\nnothing. Remove both in the next major.",
"is_bot": false,
"headline": "docs: deprecate the inert IMessage.delay and IMQOptions.verboseExtended",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T13:59:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "aee953f2ece4218a0ca5b39255c048939bfd3f59",
"body": "processWatch() cleared safeCheckInterval in its catch block, and watch() re-arms\nthat interval only once per watcher connection, guarded by watcher.__ready__ —\nwhich the teardown did not reset. So a single transient SCAN or LMOVE failure (a\nnetwork blip, a CLUSTERDOWN, a slow failover) permanently d\n[…]\nemitted, so it never actually pinned the\nbehaviour down. Retitled, and extended to assert that the interval survives and\nthat a subsequent sweep runs. Verified it fails with the old teardown restored.",
"is_bot": false,
"headline": "fix: keep the maintenance interval alive after a transient sweep failure",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T13:59:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d6d1e254a65d827b997052992f2a7494c688d60f",
"body": "Doc-blocks were written in legacy JSDoc (@param {Type} name, @returns {Type},\n@type {Type}), which API Extractor discards or emits as literal garbage. The\nprose was largely fine; almost none of it reached the generated reference.\n\nAPI Extractor reported 537 violations. On the published pages that me\n[…]\nng dropped.\n\nNo markdown emphasis: api-documenter escapes asterisks, so ** renders\nliterally (see 9443efb).\n\nAPI Extractor now reports 0 violations, with 0 undocumented symbols and 0\nunresolved links.",
"is_bot": false,
"headline": "docs: rewrite doc-blocks in TSDoc so the API reference renders",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T13:59:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9443efb6f791a1b06d77a2c97da1a77477958244",
"body": "The safeDelivery doc comment used *before* for emphasis. api-documenter\nescapes markdown coming out of a TSDoc comment, so the generated API page on\nimqueue.org rendered a literal \"*before*\" instead of italics. Reworded to\ncarry the emphasis in the words themselves, which reads correctly both in an\nIDE tooltip and on the website.\n\nCosmetic, comment only. Ships with whatever the next release happens to be.",
"is_bot": false,
"headline": "docs: drop markdown emphasis api-documenter cannot render",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T10:49:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f53e9c786c90b87ee2bafe9152dc6d2e04aad352",
"body": null,
"is_bot": false,
"headline": "3.2.5",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T10:42:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e79466895b0685f1bd5723066c37befe6756db06",
"body": "The safeDelivery and safeDeliveryTtl doc comments described a mechanism this\npackage does not implement, and it was the kind of wrong that makes people\nskip work they need to do.\n\nsafeDelivery claimed it ensures \"that if a worker fails, the message will be\ndelivered to another worker\". safeDeliveryT\n[…]\n exits\nabout 20ms after SIGTERM with seconds of work outstanding), and adds the\nmissing @default tags for safeDelivery and safeDeliveryTtl.\n\nComments only -- no behavior change, so no CHANGELOG entry.",
"is_bot": false,
"headline": "docs: correct what safe delivery actually guarantees",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-28T10:41:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e696b9e4e7ded9511c63f33d3acb27cb1cf29e69",
"body": "It shipped in 3.2.4 while the entry still said [Unreleased].",
"is_bot": false,
"headline": "docs: head the reader-teardown entry with its release, 3.2.4",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-26T00:25:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf9e22a36a8dc5e8b8d0c9a5634f68dc34697ee6",
"body": null,
"is_bot": false,
"headline": "3.2.4",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-26T00:21:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "baf4bade946b6d08b28d53f7d592b0e82b8ab8f3",
"body": "Matches the convention @imqueue/rpc and @imqueue/dd-trace already follow, and\nrecords the reader-teardown fix, whose effect — a message vanishing with no\nerror — is not something a reader would guess from a version bump.",
"is_bot": false,
"headline": "docs: start a changelog",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-26T00:19:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "939c6d4bcbf1d1157aeb8607bb092fe56bc5e6fd",
"body": "A destroyed queue could still swallow one message addressed to the next owner\nof its queue name.\n\nThe reader is the only channel that issues blocking reads (BRPOP/BLMOVE with an\ninfinite timeout), and redis cannot process a QUIT while one is in flight. So\nthe graceful quit never completed and the co\n[…]\nater.\n\nThe unit test for a synchronously throwing quit() moved to the writer channel:\nit drove the reader before, which no longer takes that path, so it would have\nkept passing while covering nothing.",
"is_bot": false,
"headline": "fix: drop a blocking reader at once instead of quitting it gracefully",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-26T00:16:55Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "37e0b8a79e386c11818fd82ce76adfac959468c5",
"body": null,
"is_bot": false,
"headline": "3.2.3",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-25T23:57:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86078345f6c5bb3b8dc3b43f778b4977ec2679a2",
"body": null,
"is_bot": false,
"headline": "docs: add context7.json for Context7 indexing",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-22T22:39:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6309c0a609983d36210fb76d9f19dc607207bcec",
"body": null,
"is_bot": false,
"headline": "docs: add SECURITY.md (private vulnerability disclosure policy)",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-22T21:08:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1841be063552363b63fb9640f2fd0f87298e244b",
"body": null,
"is_bot": false,
"headline": "docs(readme): point AI assistants at imqueue.org/llms.txt",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-22T09:58:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eff81a4cc6530184f3d48a71da40224abf20490f",
"body": "…etadata\n\n- AGENTS.md: dense contributor + consumer orientation for AI coding agents\n- CLAUDE.md: pointer to AGENTS.md\n- README: positioning line + docs (imqueue.org) / commercial (imqueue.com) links\n- package.json: broaden keywords (typescript, nodejs, microservices, soa…),\n homepage -> imqueue.org (docs), add funding -> imqueue.com\n- .github/FUNDING.yml: Sponsor button (imqueue.com + PayPal)",
"is_bot": false,
"headline": "docs(github): add AGENTS.md/CLAUDE.md, funding, richer README & npm m…",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-21T22:44:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b999208edd79229c4f1cd36fb11d2ade2ba2086a",
"body": "Require contributors to sign the @imqueue Contribution Terms on each PR. Signatures stored per-repo (signatures/version1/cla.json) via GITHUB_TOKEN; no external app or PAT required.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: add CLA Assistant Lite workflow",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-20T16:40:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "69f94b8ecfc08222680de543dd70869f2a3e5ed7",
"body": "Standardize inbound contributions under the @imqueue dual-license model (GPL-3.0 + commercial): CONTRIBUTING.md, CONTRIBUTION-TERMS.md (v1.0), and .github/PULL_REQUEST_TEMPLATE.md.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add contribution guide, terms, and PR template",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-20T16:31:57Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8cb8b0936a20fe1ee1755b54383441c3a841eca9",
"body": null,
"is_bot": false,
"headline": "3.2.2",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-20T11:39:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad747724f790209fd090727db6c8828ec1cd82d8",
"body": null,
"is_bot": false,
"headline": "fix: benchmark run problem",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2026-07-20T11:32:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21bc3615d5da1cbc3caefeb6e8489c770cd4e3be",
"body": null,
"is_bot": false,
"headline": "3.2.1",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T20:04:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90997a7b62e1cf100151e1aa807cafa2986ec98f",
"body": "- package-lock.json: record the engines requirement (node >=22.12.0)\n introduced by the ESM migration\n- copyEventEmitter spec: drop redundant explanatory comments",
"is_bot": false,
"headline": "chore: sync lockfile engines and trim spec comments",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T20:02:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e02097e6c031c059dc1ca7854d3677cfd67da96e",
"body": "The default import of a builtin module is the same live, mutable\nCommonJS module object require() returns (unlike an import-namespace,\nwhich is frozen), so the util.inspect patching keeps working and the\nemitted spec no longer needs a createRequire shim.",
"is_bot": false,
"headline": "test: replace import-equals with a plain default import",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T19:56:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd22aa3a514d72ef86c3cd1eb52d32b1ddcbc0ce",
"body": "The 'skips interface entries with no addresses' spec patched\nnetworkInterfaces on the CommonJS os object, which the module-mocked\nESM binding never reads — the test passed against the real interfaces\n(false positive) and the undefined-entry guard in\nUDPWorker.selectNetworkInterface() stayed uncovere\n[…]\nhe os mock now routes networkInterfaces through a mutable holder\n(networkInterfacesMock.impl) that tests swap at call time, so the\nmocked binding observes the fixture. Line coverage: 2567/2567 (100%).",
"is_bot": false,
"headline": "test: reach 100% line coverage",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T19:52:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bef4d5198daf0a52a28fc73756e1a76494f07d76",
"body": null,
"is_bot": false,
"headline": "3.2.0",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T18:09:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5137ffa5173599de7da5f78083884250f26d6014",
"body": "The 24.17/24.18 module-loader changes broke cache:true mock modules:\nthe mocked specifier exposes its export names with values never bound,\nso ESM sources importing { Redis } from the mocked ioredis received\nundefined (TypeError: Redis is not a constructor) — reproduced 1:1 in\ndocker node:24 (24.18.\n[…]\n249 each). Instance\ncaching was not load-bearing for these mocks: all shared state lives\non the exported references themselves (RedisClientMock statics), so\neach re-evaluation serves the same objects.",
"is_bot": false,
"headline": "fix: mock modules must not use cache:true on Node >=24.17",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T18:05:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "31d7dcf2f1835f113b8cbf63057d78affd37faf3",
"body": "The Node >=24 branch of moduleMockOptions() passed mock exports through\nthe undocumented `exports` option, whose behavior changed between 24.x\nreleases (module mocking is experimental) — newer runtimes on CI stopped\napplying the named exports, so ESM sources importing { Redis } from the\nmocked iored\n[…]\ncumented defaultExport/namedExports pair works consistently on 22.x\nand 24.x (deprecation warning only) and is now used unconditionally. Also\napplies oxfmt formatting the esm migration commits missed.",
"is_bot": false,
"headline": "fix: stop using the unstable mock.module exports option",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T17:57:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bbb3d87835e560b8c826a1d7c0c01012c3b668fb",
"body": "- target/lib es2024 (Node >=22.12 floor fully implements it)\n- skipLibCheck guards against third-party d.ts breakage\n- verbatimModuleSyntax with import type annotations throughout (ESM-only\n option, hence esm branch only)",
"is_bot": false,
"headline": "chore: modernize tsconfig (es2024, skipLibCheck, verbatimModuleSyntax)",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T17:34:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8f0240a3fd19365600240b305b0cc8124234ada",
"body": "- package.json: type=module, exports map, engines node>=22.12\n- explicit .js extensions on all relative imports\n- IMQ.create(): static adapter registry replaces synchronous dynamic\n require (ESM has no sync dynamic loading)\n- UDPClusterManager: import.meta.dirname replaces __dirname\n- tests: mocks \n[…]\nltinESMExports(); reRequire reimplemented with\n query-busted dynamic import\n\nBREAKING CHANGE: package is ESM-only; CJS consumers require Node >=22.12\n(require(esm)) and TypeScript >=5.8 to type-check",
"is_bot": false,
"headline": "feat!: migrate to native ES modules",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T17:19:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d3bb316485e8aeb0af75a5aba7b9aed9a96b2f44",
"body": null,
"is_bot": false,
"headline": "3.1.1",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T12:51:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3aff9736519a77ac7b72689a4cefbb7715c28eb",
"body": null,
"is_bot": false,
"headline": "fix: added node types to tsconfig",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T12:51:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "864a69ae887da262193611399546b4fbe17b5dc6",
"body": null,
"is_bot": false,
"headline": "3.1.0",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T10:23:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56d5e944f985e9a48e0da283dcc0309d78f8378b",
"body": null,
"is_bot": false,
"headline": "feat: ts7 upgrade",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-09T10:21:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "beab476354b746f73843ab6d2fae12423699a5bb",
"body": null,
"is_bot": false,
"headline": "3.0.0",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-08T15:09:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7c7290afee052677feba16ca8470988779aaa33",
"body": "The free()/freeAndRaise() tests spawned real workers whose destroyWorker()\nwaited the full 5s stop-acknowledgement timeout, pushing the spec file past\nthe 15s per-file test timeout in CI. Stub destroyWorker() and use a fake\nworker entry so free()'s own logic is exercised without the real teardown\nwait. Also import the missing Mock type in the spec.",
"is_bot": false,
"headline": "test: fix UDPClusterManager spec CI timeout",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-08T15:05:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9bd151050cce461193d8a6d34de14ff8c908fe3",
"body": "- Address PR review comments: env-configurable IMQ_SEND_INIT_TIMEOUT,\n fix JSDoc/example indentation, restore readable Lua script formatting\n- Migrate all Node built-in imports to the node: prefix across src/test/\n benchmark\n- Add test/mocks/mockBuiltin helper registering mocks under both the bare\n[…]\n coverage with no warnings/errors; wire into test-lcov\n- Add tests bringing line coverage to 100% (2351/2351), covering error\n paths, signal/exit handlers, reconnection, read loops and worker respawn",
"is_bot": false,
"headline": "test: reach 100% coverage; node: imports; mockBuiltin; PR review fixes",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-08T14:59:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "74e63eaf253fcb29cc252475795f566827a635e6",
"body": null,
"is_bot": false,
"headline": "fix: aligned with PR comments",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-08T11:49:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "088ef0849691d7bf7ee75b48b253613d9ba5e3e7",
"body": "Remove the Coveralls coverage-upload step and run `npm test` instead of\n`npm run test-lcov`; the workflow is now a simple lint/format + test gate.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01S7M9ZZCRc9SUFAchcuPLw6",
"is_bot": false,
"headline": "ci: run a plain test check, drop Coveralls upload",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-07T21:04:26Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9c0ee71c1a2ca047be18b4dac664ed085f0d1b96",
"body": null,
"is_bot": false,
"headline": "fix: removed uuid export",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-07T20:47:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e5a0e58e7b67da753b5a6202eb62e61f321b4fd",
"body": "- Make @profile work as both a standard (TC39) and a legacy\n (experimentalDecorators) decorator via runtime mode detection, so\n services that must keep legacy decorators (e.g. sequelize-typescript\n consumers) can still use it alongside @imqueue/rpc's standard decorators.\n- Restore the public uuid\n[…]\nwnstream services rely on it via\n @imqueue/rpc re-export.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01S7M9ZZCRc9SUFAchcuPLw6",
"is_bot": false,
"headline": "feat: dual-mode @profile decorator and restore uuid() export",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-07T20:34:02Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "aac74a786803958e05a4e40ba437c5810fda9db4",
"body": "- Make tsc idempotent: clean compiled artifacts before every build via a\n clean-compiled helper routed through build/prepare/test, fixing TS5055\n (\"would overwrite input file\") on repeated builds and npm install.\n- Drop the `open` dependency; the doc and benchmark flows now print a\n file:// link \n[…]\nisThenable generic so downstream stricter configs compile.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01S7M9ZZCRc9SUFAchcuPLw6",
"is_bot": false,
"headline": "chore: docs, coverage and build hygiene",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-07T15:58:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "bcc87859bf5793a4ec8f829d1a7efb8b499b8458",
"body": null,
"is_bot": false,
"headline": "fix: remove await writes option",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T23:47:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f49c0587f9e44d6f6cf1ac285a251a46a26460d2",
"body": null,
"is_bot": false,
"headline": "fix: UDP CLuster Manager exit issues",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T23:37:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8d4ad8726f50cb9c77d20ba086a76e23da1d6ea",
"body": null,
"is_bot": false,
"headline": "fix: added files",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T23:12:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "325bcb67970d20d46741ac9970b83b508bb87892",
"body": null,
"is_bot": false,
"headline": "fix: inspections on udp cluster manager",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T23:12:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f25ad4c0477a0d136e91a4d07ced655e783209a",
"body": null,
"is_bot": false,
"headline": "chore: refreshed package-lock.json",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T22:27:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99e710fe34a11287c43abd46d82ee46823e43b60",
"body": null,
"is_bot": false,
"headline": "fix: added files",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T22:07:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0edb13e0394c8702bc4ce3a64a82903488b562f7",
"body": null,
"is_bot": false,
"headline": "fix: improve tests coverage",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T22:07:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30f99f4e4e21df7f31fb88443b0e4beeb1fddd49",
"body": null,
"is_bot": false,
"headline": "fix: github actions workflow",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T21:47:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c8e73e6e6ae78ae8f97229a9532203f2183484f",
"body": null,
"is_bot": false,
"headline": "fix: tests",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T21:40:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fc2a53c1f0135f16ee29a8b26933c68b2f44b3b",
"body": null,
"is_bot": false,
"headline": "fix: test coverage report",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T21:36:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dd70691fb26bb3268cf07562b62d4800d1058dd",
"body": null,
"is_bot": false,
"headline": "fix: formatting",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T21:34:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "430d91f53810e0c47dcc66ef8bb4ce38792bdd85",
"body": "…s, grammar",
"is_bot": false,
"headline": "fix: issues after inspections in clustered queue implementation, type…",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T21:31:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "362d7f638afd48cf86f57e9210ce2b8aec218143",
"body": null,
"is_bot": false,
"headline": "fix:: added files",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T19:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "727410e85be8f6e587949491d332df608b61c23d",
"body": null,
"is_bot": false,
"headline": "feat: refactored RedisQueue & fixed inspected issues",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T19:40:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f7ed2164f4eb80522ea52bb5f892f3022fb2675",
"body": null,
"is_bot": false,
"headline": "fix:: added files",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T17:30:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41156cf2d9dba9fca601edd2e65ce291f8c3c37a",
"body": "…e native test structure",
"is_bot": false,
"headline": "feat: removed not reliable dev deps, reorganized tests & moved to nod…",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-07-06T17:30:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f14888e338fd2c3edf834cc46e657329c978be1",
"body": null,
"is_bot": false,
"headline": "2.0.26",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-01-06T13:58:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ecdd7acabac1603c4086c3c744b52a6dd624990",
"body": "… cluster manager & added extra logging",
"is_bot": false,
"headline": "feat: added possibility to turn off server alive timeout check in udp…",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2026-01-06T13:57:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04c67753bd3cde63d8f312cc9091543fd1c6f508",
"body": null,
"is_bot": false,
"headline": "2.0.25",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T13:15:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56421b679db75dd5e949f4b4f312101e69d7fc74",
"body": null,
"is_bot": false,
"headline": "fix: rework redis connection make it more stable & straightforward",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T13:14:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13c95443b78c589d624c26581baee246749c7830",
"body": null,
"is_bot": false,
"headline": "2.0.24",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T12:15:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7a46f726b74c2645fb0a0c88f8655f0a1d9b790",
"body": "…retry strategy",
"is_bot": false,
"headline": "feat: implemented own reconnection handler instead of ioredis native …",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T12:15:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76db725b7fe80a5b799424f27366891e5a99b2c9",
"body": null,
"is_bot": false,
"headline": "2.0.23",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T09:19:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "539874a443d2476a95ea982a6344c38fa710e304",
"body": null,
"is_bot": false,
"headline": "fix: RedisQueue - handle unsubscribe more safely",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-13T09:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d18b2d4d063a0911faea35638ea3c6929882f13",
"body": null,
"is_bot": false,
"headline": "2.0.22",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T23:08:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb5da8c9852495d69eeb2fbdae3bd37929da61ca",
"body": null,
"is_bot": false,
"headline": "fix: reconnection strategy",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T23:08:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4328599ae7baf0869d757b62708c37f1dee1638",
"body": null,
"is_bot": false,
"headline": "2.0.21",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T22:41:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e58c1ea5b2d9f7ce6e3963c8e8e1040c9ac7055f",
"body": null,
"is_bot": false,
"headline": "fix: test",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T22:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42433c16f57f375fdf771daf453c9dc280fd5e99",
"body": null,
"is_bot": false,
"headline": "2.0.20",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T22:20:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79c94fcf948df330af94dedbf21fb4afe8f0973f",
"body": null,
"is_bot": false,
"headline": "fix: remove safe rwrapper over redis client instance",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-12T22:20:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bee8b872cdbdfa54eb7b24f3d0a8a0546dbe0dc7",
"body": null,
"is_bot": false,
"headline": "2.0.19",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-10T14:56:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3af1a9d36b8666e775b09a44848b20cb4abc0f26",
"body": null,
"is_bot": false,
"headline": "feat: added extra logging to redis client",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-12-10T14:55:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37bd84d029991e13e1a72e67e6c27256d145536c",
"body": null,
"is_bot": false,
"headline": "2.0.18",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-29T16:46:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5899373a03adb98f34551426da662583ea496cb",
"body": null,
"is_bot": false,
"headline": "fix: conflicts",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-10-29T16:46:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0b42db5880965240c0c35c8d67a952701cd79f0",
"body": null,
"is_bot": false,
"headline": "2.0.17",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-29T16:45:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a20e8c303daa50605d1e1e25a8e8249d4920ba1",
"body": null,
"is_bot": false,
"headline": "fix: revert awaits",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-29T16:44:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ceee1ae09952227c8373149f5e04448f0d52a834",
"body": null,
"is_bot": false,
"headline": "2.0.17",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-10-28T16:18:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b83ca211d5d1354a85770024e9579aa99a10b8f1",
"body": null,
"is_bot": false,
"headline": "feat: deps up & added extended verbose",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-10-28T16:18:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23a878297a77bf24526c222e8cc407ba5c8e7d8a",
"body": null,
"is_bot": false,
"headline": "2.0.16",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-27T15:44:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65e8912baaafac9aec5adb652ff4c1791e84ffb6",
"body": null,
"is_bot": false,
"headline": "fix: tests execution",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-27T15:44:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15ecc6700227f37953b2978e72b10e8a4c2180e9",
"body": null,
"is_bot": false,
"headline": "feat: add verbode logging on redis queue",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-27T15:27:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0058270b9ccd214d28eb20f84a1e3b60a2bc21e2",
"body": null,
"is_bot": false,
"headline": "2.0.15",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-22T16:02:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0d15e3a09b31ccdc76be2627094bc6358ed2f07",
"body": null,
"is_bot": false,
"headline": "fix: safer message handling",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-10-22T16:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35c55c5cfc5a7ccdb07b37ec4243997e9cb8ecaa",
"body": null,
"is_bot": false,
"headline": "2.0.14",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-09-23T12:39:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6eb6e71a42ce62111c0c4816cdafaacfa6ecce45",
"body": null,
"is_bot": false,
"headline": "fix: js crash",
"author_name": "Mykhailo Stadnyk",
"author_login": "Mikhus",
"committed_at": "2025-09-23T12:38:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ecd7b765a909ddd0262a45f5211fea0aac68b85a",
"body": null,
"is_bot": false,
"headline": "2.0.13",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-11T10:18:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b5270dc2c7cce55a8f6c464f7e860169875ad77",
"body": null,
"is_bot": false,
"headline": "fix: test",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-11T10:18:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7bd4ad800232fdb3d997857024115c96b551be6",
"body": null,
"is_bot": false,
"headline": "2.0.12",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-11T10:17:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d393b4824fab334c572eaa2a29a1aed9f4f5510",
"body": null,
"is_bot": false,
"headline": "feat: implmented queueLength method on Redis message queue",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-11T10:17:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31168b0b0072432a084ebcb14fb6ee090ad40aa2",
"body": null,
"is_bot": false,
"headline": "2.0.11",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-03T20:31:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0441145db50364eb51640daf1b0540a0f65eb040",
"body": null,
"is_bot": false,
"headline": "fix: tests",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-03T20:31:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd3ea04e195bc5f1d1db1877cad144a455b770cb",
"body": null,
"is_bot": false,
"headline": "2.0.10",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-03T19:01:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b45b712f2f4762aa547642ffb64150fc6116509",
"body": "…o process messages without blocking event loop",
"is_bot": false,
"headline": "feat: rework UDP cluster manager message handling - create a thread t…",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-03T19:01:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25cbb2c054d55ad246de8c3f9f79e79504a8f159",
"body": null,
"is_bot": false,
"headline": "2.0.9",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-01T14:52:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "393de33d265510fe87bf17c92d80d2b8b2aa9b6f",
"body": null,
"is_bot": false,
"headline": "fix: tests",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-01T14:52:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f31715426d991eb989344b044ca37198b6f65e3",
"body": null,
"is_bot": false,
"headline": "fix: server alive timeout",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-09-01T14:31:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5a0c2451c544d2dc919c05f0f5ba2381b3b6a1f",
"body": null,
"is_bot": false,
"headline": "wip: server alive timeout",
"author_name": "Serhiy Morenko",
"author_login": "SerhiyGreench",
"committed_at": "2025-08-28T15:23:43Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 125,
"latest_release_at": "2026-07-30T19:08:25Z",
"latest_release_tag": "v3.3.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 13,
"days_since_latest_release": 0,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 75,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "@imqueue/core",
"exists": true,
"license": "GPL-3.0-only",
"keywords": [
"message-queue",
"redis",
"redis-queue",
"inter-service-communication",
"json",
"json-message",
"typescript",
"nodejs",
"microservices",
"message-broker",
"rpc",
"soa",
"imqueue"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/@imqueue/core",
"is_deprecated": false,
"latest_version": "3.3.0",
"repository_url": "https://github.com/imqueue/core",
"versions_count": 83,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 2,
"monthly_downloads": 3481,
"first_published_at": "2018-06-15T12:05:03.096000Z",
"latest_published_at": "2026-07-28T14:04:09.233000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 2
}
]
},
"popularity": {
"forks": 1,
"stars": 29,
"watchers": 3,
"fork_history": {
"days": [
{
"date": "2023-02-28",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"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": [
"tsconfig.json"
],
"toolchain_manifests": [],
"largest_source_bytes": 68645,
"source_files_sampled": 48,
"oversized_source_files": 2,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5294
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 9,
"malicious_count": 0,
"assessed_package": "npm:@imqueue/core@3.3.0",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "ioredis",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^5.11.1"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "ioredis",
"direct": true,
"version": "5.11.1",
"ecosystem": "npm"
},
{
"name": "@ioredis/commands",
"direct": false,
"version": "1.10.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-android-arm-eabi",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-android-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-darwin-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-darwin-x64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-freebsd-x64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm-gnueabihf",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm-musleabihf",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-ppc64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-riscv64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-riscv64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-s390x-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-x64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-x64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-openharmony-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-arm64-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-ia32-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-x64-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-android-arm-eabi",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-android-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-darwin-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-darwin-x64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-freebsd-x64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm-gnueabihf",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm-musleabihf",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-ppc64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-riscv64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-riscv64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-s390x-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-x64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-x64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-openharmony-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-arm64-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-ia32-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-x64-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@types/node",
"direct": false,
"version": "24.13.3",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-aix-ppc64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-darwin-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-darwin-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-freebsd-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-freebsd-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-arm",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-loong64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-mips64el",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-ppc64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-riscv64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-s390x",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-linux-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-netbsd-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-netbsd-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-openbsd-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-openbsd-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-sunos-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-win32-arm64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "@typescript/typescript-win32-x64",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "cluster-key-slot",
"direct": false,
"version": "1.1.1",
"ecosystem": "npm"
},
{
"name": "debug",
"direct": false,
"version": "4.4.3",
"ecosystem": "npm"
},
{
"name": "denque",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "ms",
"direct": false,
"version": "2.1.3",
"ecosystem": "npm"
},
{
"name": "oxfmt",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "oxlint",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "redis-errors",
"direct": false,
"version": "1.2.0",
"ecosystem": "npm"
},
{
"name": "redis-parser",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "standard-as-callback",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "tinypool",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "typescript",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "undici-types",
"direct": false,
"version": "7.18.2",
"ecosystem": "npm"
}
],
"collected": true,
"truncated": false,
"total_count": 73,
"direct_count": 1,
"indirect_count": 72
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 8,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 1,
"closed_unmerged_prs": 17
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Mikhus",
"commits": 345,
"avatar_url": "https://avatars.githubusercontent.com/u/225560?v=4"
},
{
"type": "User",
"login": "SerhiyGreench",
"commits": 110,
"avatar_url": "https://avatars.githubusercontent.com/u/67065565?v=4"
},
{
"type": "User",
"login": "Gabriellji",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/55960149?v=4"
},
{
"type": "User",
"login": "peinguin",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/406332?v=4"
}
],
"contributors_sampled": 4,
"top_contributor_share": 0.747
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"build.yml",
"cla.yml",
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"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 0/24 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"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": 10,
"reason": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 4,
"reason": "dependency not pinned by hash detected -- score normalized to 4",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 10,
"reason": "SAST tool is run on all commits",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 10,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "3eeb15c8322878a67c48203ddecce1ec95b954f2",
"ran_at": "2026-07-31T00:00:57Z",
"aggregate_score": 5.5,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-30T19:29:01Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-09T20:07:21Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/imqueue/core",
"host": "github.com",
"name": "core",
"owner": "imqueue"
},
"metrics": {
"overall": {
"key": "overall",
"band": "good",
"name": "Overall health",
"note": "The weighted overall 65 is calibrated to 75 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 65,
"calibrated": 75,
"calibration": "2026-08-02"
}
}
],
"value": 75,
"inputs": {
"security": 64,
"vitality": 77,
"community": 52,
"governance": 57,
"calibration": "2026-08-02",
"engineering": 71,
"ai_readiness": 73,
"weighted_overall_raw": 65
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 77,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"commits_last_year": 125,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 13
},
"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": "13/52 weeks with commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 13
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "125 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 125
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 84,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v3.3.0",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 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": "moderate",
"name": "Community & Adoption",
"value": 52,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"forks": 1,
"stars": 29,
"watchers": 3,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "29 stars",
"points": 23.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 29
}
}
],
"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": "3 watchers",
"points": 1.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 3
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (GPL-3.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "GPL-3.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"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": 59,
"inputs": {
"packages": [
"@imqueue/core"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 3481
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "3,481 downloads/month across npm",
"points": 47.2,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 3481,
"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": 57,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 4,
"top_contributor_share": 0.747
},
"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 75% of commits",
"points": 5.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 75
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "4 contributors",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 4
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 59,
"inputs": {
"merged_prs": 8,
"open_issues": 0,
"closed_issues": 1,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 17,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "8/25 decided PRs merged",
"points": 9.6,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 8,
"decided": 25
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/24 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": 58,
"inputs": {
"followers": 5,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "imqueue",
"public_repos": 29,
"account_age_days": 3020
},
"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": "5 followers of imqueue",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 5,
"login": "imqueue"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "29 public repos, account ~8 yr old",
"points": 22.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 29
}
},
{
"code": "account_age_years",
"params": {
"years": 8
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"@imqueue/core"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 2
},
"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 2 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 2
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "83 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 83
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 71,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"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": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [
"message-queue",
"redis",
"inter-service-communication",
"json",
"json-message",
"redis-queue",
"message-delivery",
"redis-server",
"message-broker",
"microservices",
"nodejs",
"soa",
"typescript"
],
"has_wiki": true,
"homepage": "https://imqueue.org",
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "https://imqueue.org",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "13 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 13
}
}
],
"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": "moderate",
"name": "Security",
"value": 64,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"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": 55,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 5.5
},
"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 0/24 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"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": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 4",
"points": 2,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is run on all commits",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "exceptional",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): No advisories left outstanding. Remaining weights renormalized. Matched the npm:@imqueue/core@3.3.0 runtime dependency closure — what installing the published package pulls in — 9 packages. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_published",
"params": {
"package": "npm:@imqueue/core@3.3.0",
"assessed": 9
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 9,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "no indirect dependency carries a known advisory",
"points": 25,
"status": "met",
"details": [
{
"code": "no_indirect_advisories",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 9,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 6
},
"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": "good",
"name": "AI Readiness",
"value": 73,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.69,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5294
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md, CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md, CLAUDE.md"
}
}
],
"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": "69 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 36.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 69,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [
"tsconfig.json"
],
"agent_commit_share": 0.05,
"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": "tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "5 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 5,
"sampled": 100
}
}
],
"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 4",
"points": 4,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 98,
"inputs": {
"primary_language": "TypeScript",
"largest_source_bytes": 68645,
"source_files_sampled": 48,
"oversized_source_files": 2
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "TypeScript (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "TypeScript"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "2/48 source files over 60KB",
"points": 52.7,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 48,
"oversized": 2
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [
"library"
],
"labels": [
"library"
],
"scores": {
"library": 8
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:npm",
"weight": 6
},
{
"tier": "description",
"label": "library",
"source": "description:library",
"weight": 2
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-31T00:01:05.897589Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/i/imqueue/core.svg",
"full_name": "imqueue/core",
"license_state": "standard",
"license_spdx": "GPL-3.0"
}