JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 627,
"has_wiki": true,
"homepage": null,
"languages": {
"C": 1256,
"C++": 34085,
"JavaScript": 63725,
"TypeScript": 176903
},
"pushed_at": "2026-07-19T16:57:42Z",
"created_at": "2026-06-26T05:59:48Z",
"owner_type": "User",
"updated_at": "2026-07-19T16:57:46Z",
"description": "Experimental MCP Server for Zandronum. Speeds up modding and engine development.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript",
"JavaScript",
"C++"
]
},
"owner": {
"blog": null,
"name": null,
"type": "User",
"login": "rc4l",
"company": null,
"location": null,
"followers": 0,
"avatar_url": "https://avatars.githubusercontent.com/u/70648749?v=4",
"created_at": "2020-09-02T14:21:40Z",
"is_verified": null,
"public_repos": 9,
"account_age_days": 2152
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.3",
"kind": "patch",
"published_at": "2026-07-19T17:05:02Z"
},
{
"tag": "v0.4.2",
"kind": "patch",
"published_at": "2026-07-19T09:48:41Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2026-07-18T20:10:53Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-18T17:20:43Z"
},
{
"tag": "v0.3.5",
"kind": "patch",
"published_at": "2026-07-18T13:46:57Z"
},
{
"tag": "v0.3.4",
"kind": "patch",
"published_at": "2026-07-18T10:02:25Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2026-07-18T09:51:58Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2026-06-26T23:49:43Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-06-26T23:26:56Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-26T21:12:27Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-06-26T09:30:33Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-06-26T07:24:37Z"
}
],
"recent_commits": [
{
"oid": "a1b3fbaa67509e8a7c6d38ac33d21c7cb0ad0fc4",
"body": "…ocesses)",
"is_bot": false,
"headline": "Release v0.4.3 — graceful engine quit (stops unkillable GPU-wedged pr…",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-19T16:57:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfb581eed41ce99fa80b0f5469167d4df5d46cda",
"body": "SIGKILLing the engine mid-render strands macOS GPU/Metal teardown in an\nuninterruptible kernel wait: the process becomes unkillable by ANY signal\n(verified: kill -9 on the process, on its MTLCompilerService XPC peer, and\nboth together all fail) and squats its bridge port until reboot. Sampling a\nwed\n[…]\n back from a command that ends the process), waits for\nthe process to go, and force-kills only if it doesn't — so an already-hung\nengine is still never left running. kill_instance and shutdown use it.",
"is_bot": false,
"headline": "Quit engines gracefully instead of SIGKILL (#12)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-19T16:57:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c5e9b71fe583dae293ce506602afcac85e9979ce",
"body": null,
"is_bot": false,
"headline": "Release v0.4.2 — auto-reap orphaned engines on startup",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-19T09:41:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f36c24205e518ec3c995b853c0f42144d9487bc",
"body": "Stale instances piled up across sessions until one wedged and squatted a\nbridge port (issue seen on macOS/Rosetta, where a wedged engine survives\nSIGKILL and needs a logout). The server now sweeps engines left by dead\nsessions when it starts, so they can't accumulate.\n\nStrictly orphans-only: an engi\n[…]\nver touched, and anything whose PPID can't be read is left\nalone. The manual 'reset' tool keeps its nuclear kill-everything behavior.\nWindows reports no reparent signal, so the sweep is a no-op there.",
"is_bot": false,
"headline": "Auto-reap orphaned engines on startup (orphans only) (#11)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-19T09:41:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "161095586d2c3069c2dfe924c623e89e1e2ffef9",
"body": "An engine that hung at startup (bridge never opened) could take the whole MCP\nserver down: the detached ChildProcess had no 'error' listener, so an out-of-band\n'error' event (ENOENT/Gatekeeper kill/aborted exec) threw as an uncaught\nexception and killed the process — every tool then vanished.\n\n- reg\n[…]\nengine can't linger orphaned on its port.\n- server.ts: add top-level uncaughtException/unhandledRejection guards so no single\n bad tool call can crash the server.\n\n100% coverage retained (216 tests).",
"is_bot": false,
"headline": "Survive failed/hung engine launches; reap orphaned children (v0.4.1)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T20:03:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "413471b5598554779f187c43fc012d501cf1d7c8",
"body": "…(v0.4.0)\n\nRoot cause of orphaned engines: instances were spawned detached and only reaped\non a graceful MCP shutdown, so an ungracefully-killed MCP (SIGKILL, crash) left\nthe engine running forever, squatting its bridge port.\n\nEngine bridge (parent-death watchdog): the MCP now passes its PID in\nZAND\n[…]\nand report\n any wedged (macOS window-server exit-hang) survivors.\n- Longer command timeouts for screenshot (15s) and menu open (15s).\n\n100% coverage retained; 7 new tests across launch/registry/reap.",
"is_bot": false,
"headline": "Prevent stale engine instances; add reset, PID handshake, free ports …",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T15:46:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "eacc8619f590bf8a67b19c5c06ef5c6406242686",
"body": "- version + last release: native shields.io npm/GitHub endpoints (always\n current, no CI).\n- tools: a shields endpoint reading .github/badges/tools.json, which\n gen-tools-doc.mjs now writes alongside README.tools.md, so the count\n stays in sync (regenerated 49 -> 50; picks up the new get_crash tool).",
"is_bot": false,
"headline": "README: add version, last-release-date, and tool-count badges (#10)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T13:48:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3c09235cd14e2b17c373739f65ca66c109a42d7",
"body": null,
"is_bot": false,
"headline": "Release 0.3.5",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T13:36:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "728dc4b583d9711f94788a5e809bfde5e99793f9",
"body": "When the engine dies on a fatal signal (SIGSEGV/SIGABRT/SIGBUS/SIGILL/SIGFPE, or an\nunhandled SEH exception on Windows) the new overlay file mcp_crash.cpp writes the\nsignal, faulting address, and a symbolized backtrace to <ZANDRONUM_BRIDGE_LOG>.crash,\nthen lets the process die normally. The new get_\n[…]\nnder warmed at install so the\nhandler stays async-signal-safe); Windows uses SetUnhandledExceptionFilter + dbghelp.\ncrashLogPath helper added and unit-tested (100% coverage); README.tools regenerated.",
"is_bot": false,
"headline": "Add crash-backtrace handler to the bridge overlay + get_crash tool (#9)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T13:36:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2c05e16a229917bf07153d8a6b7d40a1a647d9ef",
"body": null,
"is_bot": false,
"headline": "Release v0.3.4 — Linux DISPLAY fix (#6)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T09:54:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "baf911ce08c2a821bb4cf6f5198541ce0ea3410c",
"body": "IDEs often spawn the MCP server over stdio without DISPLAY in its env, so\nthe game we launch can't reach the X server and never opens a window.\nbuildLaunchEnv now fills DISPLAY=:0 on Linux when it's unset (an explicit\nDISPLAY is always respected). Documented the override in ADVANCED.md.",
"is_bot": false,
"headline": "Linux: default DISPLAY to :0 for launched instances (issue #6) (#8)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T09:54:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f7fce23d69e1fa5b727d9b151da01719243b282",
"body": null,
"is_bot": false,
"headline": "Release 0.3.3",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T09:44:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5c246b9ae0960c62360e5bbfe5869d5b48e4d41",
"body": "An agent-driven instance should never take over the user's screen. buildLaunchArgs\nnow always pins the fullscreen cvar (it's CVAR_ARCHIVE, so with no override the saved\nvalue wins), defaulting to windowed unless fullscreen is explicitly requested.\n\nThe engine writes named screenshots to its own work\n[…]\n\nZANDRONUM_SCREENSHOT_DIR. resolveScreenshotDir now defaults SCREENSHOT_DIR to\ndirname(exe); the env var still overrides. Extracted as a covered helper per AGENTS.md.\n\nTests and 100% coverage updated.",
"is_bot": false,
"headline": "Default to windowed launch and locate screenshots in the engine dir (#7)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-07-18T09:44:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f121769ce040f4ca1eb6576b9e9cb6654af696d2",
"body": "Updated tools section for clarity and formatting.",
"is_bot": false,
"headline": "Revise tools section in README",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-29T06:26:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ff977cdcf8c8bc3bc1be7e738b99df707f370b7",
"body": "Generate a browsable tool reference from src/server.ts via the TypeScript\ncompiler API (scripts/gen-tools-doc.mjs, npm run docs:tools) so it can't\ndrift from the code. Tools are grouped by the '// --- section ---' headers;\nadded three missing ones (commands/cheats/input, map geometry, process\nmanagement) so the tail tools aren't lumped under 'renderer'. Descriptions\nare taken verbatim (some are multi-sentence for now). Linked from README.",
"is_bot": false,
"headline": "Add auto-generated README.tools.md (49-tool reference) (#5)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-29T03:53:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "830b4f944ff9a401cd94c2d19916c967e4fd4ee9",
"body": "Updated instructions for setting up Zandronum MCP, including changes to the executable paths for Windows and macOS.",
"is_bot": false,
"headline": "Revise setup instructions in README.md",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-27T02:24:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e51a3101bbedc9820721860b871965fe3309a94",
"body": null,
"is_bot": false,
"headline": "Fix formatting and punctuation in README.md",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-27T02:22:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9331d605d2c06010f694614c85895aa3c48a291",
"body": null,
"is_bot": false,
"headline": "Release v0.3.2 — macOS app icon",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T23:42:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f66df00d5c36357b97e17463e7f5f7caf2799eb3",
"body": "…(#4)\n\nThe released v0.3.1 app shipped iconless: build.sh's make_icon generates\nthe icon with Pillow, which the CI runner lacks, and it's best-effort — on\nfailure it even leaves a bogus CFBundleIconFile. The icon is branding (we\nalready own the rename), so own it deterministically: drop any icon\nbuild.sh produced and install our committed square app icon (the official\nZandronum icon from zandronum.ico), setting CFBundleIconFile to match.",
"is_bot": false,
"headline": "macOS: bundle the app icon in our packager (build.sh's needs Pillow) …",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T23:33:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e6ef52ee5451bd92a533d13ed28736264423c95",
"body": null,
"is_bot": false,
"headline": "Release v0.3.1 — zandronum-mcp-hooks engine (Windows exe + macOS app)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T23:19:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfef5848ec6b5c918b8a7bb91319df3c2f566b99",
"body": "…num-mcp-hooks (#3)\n\n- Delegate bundle assembly to zandronum-macos-compile's build.sh (single\n source of truth: recursive dylib bundling, SOUND-aware); our packager\n just verifies (bridge marker, signature, no absolute paths) and zips.\n- Rebrand the shipped engine to zandronum-mcp-hooks on both pl\n[…]\n(Windows exe + macOS .app/binary/CFBundle*) so it's clear this is\n Zandronum with the MCP hooks compiled in, not stock Zandronum.\n- resolveEngineExe maps a .app to Contents/MacOS/zandronum-mcp-hooks.",
"is_bot": false,
"headline": "macOS: delegate .app bundling to build.sh and rename engine to zandro…",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T23:18:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "94917853274aeffa34a0edf2f5b62ad287480cd4",
"body": null,
"is_bot": false,
"headline": "Fix/macos gatekeeper quarantine (#2)",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T22:06:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76e2afad7515717d842139b7e247aaed657a8a88",
"body": null,
"is_bot": false,
"headline": "Release v0.3.0 — macOS + Windows engine builds",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T21:05:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29e9f7965ecdea598232790f663f659e750c4830",
"body": "Builds the bridge-patched macOS engine alongside Windows and makes the release atomic (test gate, both engines built as artifacts, single attach-release, npm published last). Adds a portable-dylib packaging script and the apply-bridge top-level-include fix that unblocked the macOS build. Verified end-to-end in CI.",
"is_bot": false,
"headline": "Add macOS engine builds to releases, in parallel with Windows",
"author_name": "rc4l",
"author_login": "rc4l",
"committed_at": "2026-06-26T21:04:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7673646753117cb6c736a09b1395996a9a154d55",
"body": "…the bridge never opens\n\n- overlay: tee console output to ZANDRONUM_BRIDGE_LOG from startup (before the\n socket is up), so compile/fatal errors that abort the engine are still captured\n- launch_instance: on bridge-timeout, read the log and report the actual errors\n- new get_startup_errors tool: works even when the engine died pre-bridge",
"is_bot": false,
"headline": "Capture engine startup log; surface DECORATE/ACS compile errors when …",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T20:18:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e7ef47a3f9a5062e4f8ee59596a8f69bc2db8f2",
"body": "Single-player Zandronum hard-pauses on window-defocus (S_SetSoundPaused forces paused=-1, no cvar to opt out), so any backgrounded instance the MCP drives freezes its simulation. This made time-based mechanics (charge weapons, projectiles, animations, monster AI) untestable headless.\n\nAdd a 'setpaus\n[…]\nly, plus two MCP tools: set_pause (resume/pause a backgrounded instance) and step (run N tics then re-pause). Old engines ignore the unknown message and the tools degrade gracefully via the cap check.",
"is_bot": false,
"headline": "Add time-control tools (set_pause/step) so headless tests don't freeze",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T09:29:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b9230a3e51a4ff81cfef7a8e03dee0ac72132ace",
"body": "…t a bridge-patched build",
"is_bot": false,
"headline": "launch_instance: fail fast with a clear error when ZANDRONUM_EXE isn'…",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T08:05:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6f394e4b61f9c7e112e683c086b8a1800099ea5",
"body": null,
"is_bot": false,
"headline": "Readme updates",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:56:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ac6b35be899c958c8ee24a7c681983f079a824b",
"body": null,
"is_bot": false,
"headline": "Reword README setup steps for clarity",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:34:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1701c6ea146362ab3b53023f943b149f6b5532cd",
"body": null,
"is_bot": false,
"headline": "README: use VS Code mcp.json example, note mcpServers variant for others",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:31:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ca704bdaf3a1cca949e9285502273d28b61e67a",
"body": "…DVANCED.md",
"is_bot": false,
"headline": "Split README: dead-simple happy path; move build/manual/dev to docs/A…",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:29:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f517e7822aebfd47f64dcc79e0c1194343a1e393",
"body": null,
"is_bot": false,
"headline": "Pin engine build to windows-2022 (build.ps1 wants VS 2022 generator)",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e78b76d486f92f69c8bf7865479ae4ce69e240f",
"body": "….us is flaky)",
"is_bot": false,
"headline": "CI engine build: use zandronum-windows-compile + pre-stage NASM (nasm…",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T07:04:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "157323595d3814a713823668b7115a3a680b6b66",
"body": null,
"is_bot": false,
"headline": "Simplify README around npx install + prebuilt engine",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T06:59:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "210d16e3db411dfc6ee412c6751bde54eb58a03c",
"body": null,
"is_bot": false,
"headline": "Publish job: Node 22 + no cache for Trusted Publishing (OIDC reqs)",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T06:42:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f31e3d3190ee3f56bf497d0b6c82fc5e17b7ad8d",
"body": null,
"is_bot": false,
"headline": "Make npm publish idempotent (skip if version already published)",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T06:24:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34edf467d55f49078768bead108dc020105fe82e",
"body": null,
"is_bot": false,
"headline": "Use npm Trusted Publishing (OIDC) instead of a stored token",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T06:23:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dafe0c460db6f6df3cc946053a2a818fa51cb1b4",
"body": null,
"is_bot": false,
"headline": "Initial public release",
"author_name": "rc4l",
"author_login": null,
"committed_at": "2026-06-26T06:16:32Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 12,
"commits_last_year": 38,
"latest_release_at": "2026-07-19T17:05:02Z",
"latest_release_tag": "v0.4.3",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 3,
"days_since_latest_release": 5,
"mean_days_between_releases": 2.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "zandronum-mcp",
"exists": true,
"license": "MIT",
"keywords": [
"mcp",
"zandronum",
"doom",
"modelcontextprotocol"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/zandronum-mcp",
"is_deprecated": false,
"latest_version": "0.4.3",
"repository_url": "https://github.com/rc4l/ZandronumMCP",
"versions_count": 12,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 1,
"monthly_downloads": 2075,
"first_published_at": "2026-06-26T06:46:35.539000Z",
"latest_published_at": "2026-07-19T17:05:26.474000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": true,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"tsconfig.json"
],
"toolchain_manifests": [],
"largest_source_bytes": 49264,
"source_files_sampled": 78,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 383
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [
{
"name": "@hono/node-server",
"direct": false,
"version": "1.19.15",
"severity": "moderate",
"ecosystem": "npm",
"cvss_score": 5.9,
"advisory_ids": [
"GHSA-frvp-7c67-39w9"
],
"fixed_version": "2.0.5",
"advisory_count": 1,
"oldest_advisory_days": 3
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"moderate": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 95,
"malicious_count": 0,
"assessed_package": "npm:zandronum-mcp@0.4.3",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "@modelcontextprotocol/sdk",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^1.12.0"
},
{
"name": "zod",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^3.23.8"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 11,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 1,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "rc4l",
"commits": 24,
"avatar_url": "https://avatars.githubusercontent.com/u/70648749?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"release.yml"
],
"has_docs_dir": true,
"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": "11 out of 11 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/30 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": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 3,
"reason": "dependency not pinned by hash detected -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"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": 0,
"reason": "11 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "a1b3fbaa67509e8a7c6d38ac33d21c7cb0ad0fc4",
"ran_at": "2026-07-25T15:30:42Z",
"aggregate_score": 2.8,
"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-19T17:05:30Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-19T16:57:36Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/rc4l/ZandronumMCP",
"host": "github.com",
"name": "ZandronumMCP",
"owner": "rc4l"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"security": 40,
"vitality": 67,
"community": 32,
"governance": 53,
"engineering": 71
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 67,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"commits_last_year": 38,
"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": "38 commits in the last year",
"points": 14.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 38
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 12,
"latest_release_tag": "v0.4.3",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 2.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "12 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 12
}
}
],
"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 ~2.5 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 2.5
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 32,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"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": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"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": "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": 55,
"inputs": {
"packages": [
"zandronum-mcp"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 2075
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,075 downloads/month across npm",
"points": 44.2,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2075,
"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": 53,
"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": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"merged_prs": 11,
"open_issues": 0,
"closed_issues": 1,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "11/11 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 11,
"decided": 11
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"followers": 0,
"owner_type": "User",
"is_verified": null,
"owner_login": "rc4l",
"public_repos": 9,
"account_age_days": 2152
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "0 followers of rc4l",
"points": 0,
"status": "missed",
"details": [
{
"code": "owner_followers",
"params": {
"count": 0,
"login": "rc4l"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "9 public repos, account ~5 yr old",
"points": 19.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 9
}
},
{
"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": [
"zandronum-mcp"
],
"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": "12 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 12
}
}
],
"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.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "11 out of 11 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": [],
"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": 40,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 18,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 0,
"scorecard_aggregate": 2.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "11 out of 11 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/30 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": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"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": "11 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Matched the npm:zandronum-mcp@0.4.3 runtime dependency closure — what installing the published package pulls in — 95 packages. Reachability is not analyzed.",
"notes": [
{
"code": "advisories_scope_published",
"params": {
"package": "npm:zandronum-mcp@0.4.3",
"assessed": 95
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 88,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 95,
"unassessed_packages": 0,
"affected_by_severity": "moderate 1",
"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": "1 affected: @hono/node-server 1.19.15 (moderate 5.9)",
"points": 13.2,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 1,
"packages": "@hono/node-server 1.19.15 (moderate 5.9)"
}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory has been public longer than 90 days",
"points": 40,
"status": "met",
"details": [
{
"code": "advisories_none_stale",
"params": {
"days": 90
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"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": 95,
"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
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 57,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "moderate",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.447,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 383
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.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": "17 of 38 human commits state their intent (structured subject or explanatory body)",
"points": 23.9,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 17,
"sampled": 38
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 46,
"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,
"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": "no agent-authored commits among the last 38",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 38
}
}
],
"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 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "TypeScript",
"largest_source_bytes": 49264,
"source_files_sampled": 78,
"oversized_source_files": 0
},
"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": "0/78 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 78,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "critical",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"example_dirs": [],
"has_mcp_signal": true,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 20,
"status": "met",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-25T15:30:51.841053Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/rc4l/ZandronumMCP.svg",
"full_name": "rc4l/ZandronumMCP",
"license_state": "standard",
"license_spdx": "MIT"
}