JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [
"codemirror",
"codemirror-extension",
"mcp"
],
"is_fork": false,
"size_kb": 126,
"has_wiki": false,
"homepage": "https://marimo-team.github.io/codemirror-mcp/",
"languages": {
"TypeScript": 131211
},
"pushed_at": "2026-07-28T19:56:32Z",
"created_at": "2025-01-09T03:24:07Z",
"owner_type": "Organization",
"updated_at": "2026-07-28T19:57:10Z",
"description": "CodeMirror extension to hook up a Model Context Provider (MCP)",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript"
]
},
"owner": {
"blog": "https://marimo.io/",
"name": "marimo",
"type": "Organization",
"login": "marimo-team",
"company": null,
"location": null,
"followers": 621,
"avatar_url": "https://avatars.githubusercontent.com/u/98563464?v=4",
"created_at": "2022-01-27T23:44:55Z",
"is_verified": null,
"public_repos": 51,
"account_age_days": 1647
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.1.7",
"kind": "patch",
"published_at": "2026-07-02T03:34:09Z"
},
{
"tag": "v0.1.5",
"kind": "patch",
"published_at": "2025-08-10T22:24:12Z"
},
{
"tag": "v0.1.4",
"kind": "patch",
"published_at": "2025-08-08T16:55:29Z"
},
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2025-08-08T16:19:59Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2025-01-09T16:43:18Z"
}
],
"recent_commits": [
{
"oid": "8a410449939879b0d200f97c6826dfdad86482da",
"body": "This adds a minimal AGENTS.md as the canonical agent-context doc, with\nCLAUDE.md as a symlink to it so both the AGENTS.md and CLAUDE.md tool\necosystems resolve the same file. The content is deliberately minimal —\na one-line overview plus verified development commands — since these\nfiles load into every agent context, so every line is a recurring token\ncost. Part of the marimo-team engineering-excellence initiative to give\nagents accurate, low-overhead repo context.",
"is_bot": false,
"headline": "docs: add AGENTS.md with CLAUDE.md symlink (#21)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-07-28T19:56:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4272579fb7c2355273a54109120c7d8c5f1727f",
"body": "## What this does\n\nAdds an `autofix.ci` workflow that automatically **pushes** lint/format\nfixes onto pull requests. When a contributor opens or updates a PR, the\nworkflow runs the repo's mutating fixer (`pnpm run lint`, i.e. `biome\ncheck --write`) and, via the [autofix.ci](https://autofix.ci) GitHu\n[…]\ne` is exactly `autofix.ci` (required — the service\nidentifies the workflow by name for security) and the\n`autofix-ci/action` step runs last.\n\nPart of the marimo-team engineering-excellence initiative.",
"is_bot": false,
"headline": "ci: add autofix.ci (#20)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-07-22T17:45:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d8a5f394da71e7fb68e24856d297c5853bbaba21",
"body": "## What changed\n\nAdds a non-mutating lint step (`pnpm exec biome ci .`) to the `test` job\nin `.github/workflows/test.yml`, running after dependency install and\nbefore the type check.\n\n## Why\n\nThe repo already has a Biome lint config (`biome.json`) and a `lint`\nscript, but CI never ran lint. The `lin\n[…]\n test` — passes\n\nNo mechanical fixes were required (lint is already green).\n\nPart of the marimo-team engineering-excellence initiative to make\nexisting-but-unenforced quality gates actually run in CI.",
"is_bot": false,
"headline": "ci: enforce lint on PRs (#19)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-07-22T14:37:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fd14ec3c9e676426791141322c9be37f719e7caa",
"body": null,
"is_bot": false,
"headline": "ci: adopt deny-all top-level workflow permissions (#18)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-07-14T20:47:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "996d4409f8e3d44917320a669e1bbfafcc198d44",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.7 (#17)",
"author_name": "Shahmir Varqha",
"author_login": "Light2Dark",
"committed_at": "2026-07-02T03:55:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aec2365e2518d3716d8c12b42596f447f6447cee",
"body": "## Summary\n- Added `resourceSync` to keep resource decorations fresh when documents\ncontain unresolved `@scheme://...` mentions.\n- Wired sync into `mcpExtension` so prefilled/restored docs resolve\nresources without requiring autocomplete first.\n- Debounce sync work, skip unchanged unresolved URI set\n[…]\nsources/sync.ts src/__tests__/sync.test.ts src/mcp.ts\nsrc/__tests__/mcp.test.ts`\n- `pnpm vitest run`\n\nMade with [Cursor](https://cursor.com)\n\n---------\n\nCo-authored-by: Cursor <cursoragent@cursor.com>",
"is_bot": false,
"headline": "Add resource sync for unresolved mentions (#16)",
"author_name": "Shahmir Varqha",
"author_login": "Light2Dark",
"committed_at": "2026-07-01T13:03:17Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "0ee7df1cf7edf209b71aa6648fe0ec5f20788969",
"body": "Fixes misconfigured fields in `pnpm-workspace.yaml`.\n\nSee the tracking issue in github-maintenance.\n\n<!-- github-maintenance:hash=b19e6bdf:script=pnpm-workspace-check -->\n\nCo-authored-by: marimo-github-maintenance-bot[bot] <267743655+marimo-github-maintenance-bot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "[github-maintenance] Fix pnpm-workspace.yaml configuration (#7)",
"author_name": "marimo-github-maintenance-bot[bot]",
"author_login": "marimo-github-maintenance-bot[bot]",
"committed_at": "2026-06-10T21:05:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af8c9631cfa7cfa5e26b9610db0e17dfdf28e8da",
"body": "The `publish` job has no `checkout` step, so `package.json` (with\n`packageManager`) only exists after the artifact download. Running\n`pnpm/action-setup` first leaves it with no pnpm version to read — the\nsame failure mode that broke codemirror-sql's release once it moved to\naction-setup v6 (v4 still has a fallback, so this is latent here).\n\nFix: reorder so the artifact download runs before pnpm setup.\n\nAlso fixes a pre-existing mis-indented `Setup Node.js` step.",
"is_bot": false,
"headline": "fix(ci): download artifact before pnpm setup in publish job (#15)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-06-08T16:04:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8500acf8e4d68fa1e83608905cb33a35104371d6",
"body": "Fixes pre-existing YAML indentation bug in the publish job that was\ncausing release.yml to fail at parse time (0s duration on every run).\nFlagged by Copilot review on #13.",
"is_bot": false,
"headline": "fix(ci): correct release.yml publish job indentation (#14)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T18:34:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5da8232525cd39c5718729f04ae5efbf3dbf915",
"body": "Aligns all workflows on Node 24.",
"is_bot": false,
"headline": "chore: bump node-version to 24 (#13)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T18:29:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b82628ad6d7b1ab3b259907b656c9b4300a755e1",
"body": "…jobs (#11)\n\nSplits the single release job into 4 jobs so the `id-token: write` scope\nis held only by a publish job that runs `npm publish` exclusively (no\ninstall/test/build/exec).\n\n- **build** (no `id-token`): install, typecheck, test, build, validate,\nupload `dist/` + package metadata as artifact\n[…]\nfy** (`if: always()`): slack notification, aggregates\n`needs.*.result`.\n\nResolves the supply-chain audit `oidc-publish-fused` finding. Motivated\nby the TanStack npm supply-chain compromise (May 2026).",
"is_bot": false,
"headline": "chore(ci): split release.yml into build/publish/release-notes/notify …",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T17:59:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "62c2694d9ece0c71c7d2658019dfc6ecc7140b1e",
"body": "`npm install -g npm@latest` was recently removed, but the release.yml\n`publish` step still pins `node-version: 22` (or `20`), whose bundled\nnpm 10.x does not support npm trusted publishing (OIDC). This restores\nOIDC by bumping the publish step to node 24 (bundled npm 11+).\n\nOnce this lands, the next `v*` tag will publish successfully via OIDC.",
"is_bot": false,
"headline": "fix(ci): bump release publish-job node to 24 for npm OIDC (#12)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T17:50:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a3cf142cc579227b79604b79253ef5af5abfbbc",
"body": "Splits the single build-and-deploy job into the canonical GitHub Pages\n2-job pattern: build (no `id-token`) → deploy (only `id-token: write`,\nruns deploy-pages only).\n\nResolves the supply-chain audit's OIDC-fused finding on this workflow.",
"is_bot": false,
"headline": "chore(ci): split demo.yml into build + deploy jobs (#10)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T17:25:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "908878f70dcc324a94f2472743e501b76ac0bd35",
"body": "node-24 ships with npm 11+ which already supports OIDC trusted\npublishing, so the `npm install -g npm@latest` step is redundant.\nRemoving it also drops one global install in the same job as `id-token:\nwrite`.",
"is_bot": false,
"headline": "chore(ci): remove redundant npm@latest upgrade (#9)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T16:54:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72ce8b423febd2e87e72efcb24cfcc9cf91a6507",
"body": "Adds `\"packageManager\": \"pnpm@10.28.2\"` to `package.json` and drops the\nredundant `version:` arg from `pnpm/action-setup` in CI.\n\nThe action now reads the version from `packageManager`, giving a single\nsource of truth shared between local dev and CI. Matches the convention\nused in `marimo` and `marimo-lsp`.",
"is_bot": false,
"headline": "chore: pin pnpm via packageManager (#6)",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2026-05-12T15:21:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bcb66044eb3618c7509219be9f0b9ff32914e48",
"body": "Co-authored-by: marimo-github-maintenance-bot[bot] <267743655+marimo-github-maintenance-bot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "[github-maintenance] Pin GitHub Actions to SHA hashes (#5)",
"author_name": "marimo-github-maintenance-bot[bot]",
"author_login": "marimo-github-maintenance-bot[bot]",
"committed_at": "2026-04-06T14:21:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94ae9394dfc2d23780018176bc0844fdf0ac5ef0",
"body": "Co-authored-by: marimo-github-maintenance-bot[bot] <267743655+marimo-github-maintenance-bot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "[github-maintenance] Fix pnpm-workspace.yaml configuration (#4)",
"author_name": "marimo-github-maintenance-bot[bot]",
"author_login": "marimo-github-maintenance-bot[bot]",
"committed_at": "2026-03-18T17:50:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "652deac94a8dae5933b7ef0ea03848f8464aeac2",
"body": "ci: oidc",
"is_bot": false,
"headline": "Merge pull request #3 from marimo-team/ms/oidc",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-12-11T00:47:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77fc1f9372e05020181dfea1f9f0d686ab0344fc",
"body": null,
"is_bot": false,
"headline": "ci: oidc",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-12-11T00:44:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da906eed5d8ff03713bf4f8b9bb2dbbf4cccfc46",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.5",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-10T22:23:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9f92a67285752fab47f349cb5a618fa34ee4cb1",
"body": null,
"is_bot": false,
"headline": "improvement: unknown resource type",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-10T22:23:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e63c0cdc6b7154176c53876bf10c60bf70023e6",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.4",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:54:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d77c5c6f878fd4a512301c1b43555cfeae2d27fd",
"body": null,
"is_bot": false,
"headline": "fix: export resource decorations",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:54:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22a7735a39730375d2e12f25536ba289a6ad9d60",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.3",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:19:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13197fb469ba8f6915fc51972b3b2e71ab6eb64d",
"body": "feat: generalize extension to allow for other resources outside an MCP",
"is_bot": false,
"headline": "Merge pull request #2 from marimo-team/ms/generalize",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:18:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "269077ef07736e876481c45c0d41c6208595c2e5",
"body": null,
"is_bot": false,
"headline": "typecheck",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:16:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b6514dc3da37fc4f5b2d813ef64dc6de11d5ed6",
"body": null,
"is_bot": false,
"headline": "fixes",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-08T16:10:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0f888facc610771bc7574d5119688377145ca2d",
"body": null,
"is_bot": false,
"headline": "resource",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-07T20:44:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd2f5d14de1e8cb9c41071065107ed3039f1ff4d",
"body": null,
"is_bot": false,
"headline": "resource movement",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-07T20:28:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8fea8dc8fc22741215a1dab08e9dc3cff4a56016",
"body": null,
"is_bot": false,
"headline": "wip input filte",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-07T20:24:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b62a30a74419c299572242b8a5eadf63ba77b0a",
"body": null,
"is_bot": false,
"headline": "feat: generalize to allow other resource outside an MCP",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-08-07T16:37:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a7c7d88f32ce0fdd6ee20dce81386d1b3dbf4a8",
"body": null,
"is_bot": false,
"headline": "update readm",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T19:21:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e16eec5b1f7d685dcbdea8254b309280592feda8",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.2",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:42:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67982c7cfd851be1726c0316e13b6cff44ce9d6a",
"body": null,
"is_bot": false,
"headline": "make public",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:42:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51979129a921287451c1208d68e851f27b033e50",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.1",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:33:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a2d81a564960d79819f996b8509de5bf108a2ce",
"body": null,
"is_bot": false,
"headline": "update package.json",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:33:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2453edac4fa851ddcd630e4512706bb66051081f",
"body": null,
"is_bot": false,
"headline": "chore: release v0.1.0",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:09:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a6d2225275a2c66feb854ccc197f7d616f62174",
"body": null,
"is_bot": false,
"headline": "add prompt, improve docs and tests",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T16:06:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd6824a87260f3d1456bea20a4b320648b22432b",
"body": null,
"is_bot": false,
"headline": "first commit",
"author_name": "Myles Scolnick",
"author_login": "mscolnick",
"committed_at": "2025-01-09T03:37:27Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 5,
"commits_last_year": 31,
"latest_release_at": "2026-07-02T03:34:09Z",
"latest_release_tag": "v0.1.7",
"releases_from_tags": false,
"days_since_last_push": 4,
"active_weeks_last_year": 11,
"days_since_latest_release": 31,
"mean_days_between_releases": 134.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 75,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "@marimo-team/codemirror-mcp",
"exists": true,
"license": "Apache-2.0",
"keywords": [
"codemirror",
"codemirror-plugin",
"mcp"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/@marimo-team/codemirror-mcp",
"is_deprecated": false,
"latest_version": "0.1.7",
"repository_url": "https://github.com/marimo-team/codemirror-mcp",
"versions_count": 5,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 2,
"monthly_downloads": 6955,
"first_published_at": "2025-01-09T16:43:11.149000Z",
"latest_published_at": "2026-07-02T03:33:56.948000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 31
}
]
},
"popularity": {
"forks": 4,
"stars": 78,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2025-04-02",
"count": 1
},
{
"date": "2025-04-09",
"count": 1
},
{
"date": "2025-04-27",
"count": 1
},
{
"date": "2026-02-08",
"count": 1
}
],
"complete": true,
"collected": 4,
"total_forks": 4
},
"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": 14754,
"source_files_sampled": 26,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 808
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [],
"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": 19,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 2
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "mscolnick",
"commits": 34,
"avatar_url": "https://avatars.githubusercontent.com/u/2753772?v=4"
},
{
"type": "User",
"login": "Light2Dark",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/19585239?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.944
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"autofix.yml",
"demo.yml",
"release.yml",
"test.yml"
],
"has_docs_dir": false,
"linter_configs": [
"biome.json"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"pnpm-lock.yaml"
],
"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": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "19 out of 19 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/21 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": "15 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": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 10,
"reason": "all dependencies are pinned",
"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": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "39 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "8a410449939879b0d200f97c6826dfdad86482da",
"ran_at": "2026-08-02T10:58:50Z",
"aggregate_score": 4.9,
"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-28T19:58:02Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-28T19:56:31Z",
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/marimo-team/codemirror-mcp",
"host": "github.com",
"name": "codemirror-mcp",
"owner": "marimo-team"
},
"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": 49,
"vitality": 74,
"community": 60,
"governance": 58,
"calibration": "2026-08-02",
"engineering": 76,
"ai_readiness": 80,
"weighted_overall_raw": 65
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"commits_last_year": 31,
"human_commit_share": 0.923,
"days_since_last_push": 4,
"active_weeks_last_year": 11
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 4
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "11/52 weeks with commits",
"points": 7.6,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 11
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "31 commits in the last year",
"points": 13.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 31
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "15 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": 5,
"latest_release_tag": "v0.1.7",
"releases_from_tags": false,
"days_since_latest_release": 31,
"mean_days_between_releases": 134.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 31 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 31
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~134.6 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 134.6
}
}
],
"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": 60,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"forks": 4,
"stars": 78,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "78 stars",
"points": 30.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 78
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "4 forks",
"points": 4,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 4
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"readme_badge_services": [],
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.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": 13.5,
"status": "met",
"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": 64,
"inputs": {
"packages": [
"@marimo-team/codemirror-mcp"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 6955
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "6,955 downloads/month across npm",
"points": 51.2,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 6955,
"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": 58,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.944
},
"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 94% of commits",
"points": 1.3,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 94
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"merged_prs": 19,
"open_issues": 0,
"closed_issues": 0,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": null,
"closed_unmerged_prs": 2,
"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": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "19/21 decided PRs merged",
"points": 27.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 19,
"decided": 21
}
}
],
"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 1/21 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"followers": 621,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "marimo-team",
"public_repos": 51,
"account_age_days": 1647
},
"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": "621 followers of marimo-team",
"points": 20.1,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 621,
"login": "marimo-team"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "51 public repos, account ~4 yr old",
"points": 21.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 51
}
},
{
"code": "account_age_years",
"params": {
"years": 4
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"@marimo-team/codemirror-mcp"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 31
},
"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 31 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 31
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "5 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 5
}
}
],
"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": 76,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "4 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 4
}
}
],
"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": "biome.json",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "biome.json"
}
}
],
"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": "19 out of 19 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": 65,
"inputs": {
"topics": [
"codemirror",
"codemirror-extension",
"mcp"
],
"has_wiki": false,
"homepage": "https://marimo-team.github.io/codemirror-mcp/",
"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://marimo-team.github.io/codemirror-mcp/",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "weak",
"name": "Security",
"value": 49,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 49,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 4.9
},
"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 is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "19 out of 19 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 1/21 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"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": "15 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 detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 5,
"status": "met",
"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 not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "39 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"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": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "excellent",
"name": "AI Readiness",
"value": 80,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.722,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 808
},
"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": "26 of 36 human commits state their intent (structured subject or explanatory body)",
"points": 38.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 26,
"sampled": 36
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"pnpm-lock.yaml"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"tsconfig.json"
],
"agent_commit_share": 0.026,
"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": "biome.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "biome.json"
}
}
],
"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": "1 of the last 39 commits agent-authored or agent-credited",
"points": 5.1,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"sampled": 39
}
}
],
"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": "all dependencies are pinned",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "TypeScript",
"largest_source_bytes": 14754,
"source_files_sampled": 26,
"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/26 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 26,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:npm",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-08-02T10:59:04.661277Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/marimo-team/codemirror-mcp.svg",
"full_name": "marimo-team/codemirror-mcp",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}