原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [
"nrepl-middleware",
"clojure",
"clj-refactor",
"refactoring"
],
"is_fork": false,
"size_kb": 1277,
"has_wiki": true,
"homepage": null,
"languages": {
"Java": 419,
"Shell": 267,
"Clojure": 354400,
"Makefile": 1746,
"Emacs Lisp": 203
},
"pushed_at": "2026-07-01T10:23:27Z",
"created_at": "2014-07-06T14:00:15Z",
"owner_type": "Organization",
"updated_at": "2026-07-01T10:23:32Z",
"description": "nREPL middleware to support refactorings in an editor agnostic way",
"is_archived": false,
"is_disabled": false,
"license_spdx": "EPL-1.0",
"default_branch": "master",
"license_spdx_raw": "EPL-1.0",
"primary_language": "Clojure",
"significant_languages": [
"Clojure"
]
},
"owner": {
"blog": "https://cider.mx",
"name": null,
"type": "Organization",
"login": "clojure-emacs",
"company": null,
"location": null,
"followers": 91,
"avatar_url": "https://avatars.githubusercontent.com/u/5080083?v=4",
"created_at": "2013-07-24T09:34:37Z",
"is_verified": null,
"public_repos": 31,
"account_age_days": 4746
},
"license": {
"state": "standard",
"spdx_id": "EPL-1.0",
"raw_spdx": "EPL-1.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v3.14.0",
"kind": "minor",
"published_at": "2026-07-01T09:57:40Z"
},
{
"tag": "v3.13.0",
"kind": "minor",
"published_at": "2026-05-20T09:34:17Z"
},
{
"tag": "v3.12.0",
"kind": "minor",
"published_at": "2026-05-10T06:39:41Z"
},
{
"tag": "v3.11.0",
"kind": "minor",
"published_at": "2025-05-30T11:58:47Z"
},
{
"tag": "v3.0.0",
"kind": "major",
"published_at": "2021-10-26T06:04:02Z"
},
{
"tag": "v2.5.0",
"kind": "minor",
"published_at": "2020-02-29T11:08:55Z"
}
],
"recent_commits": [
{
"oid": "4dcf38de20f5cbec8bd37de6bba686f480b63c16",
"body": "Spell out what users can expect from the tools.analyzer-based features\n(find-symbol and friends): they load and evaluate your code, fail on code\nthat can't be loaded, don't support ClojureScript, only approximate macros,\nneed a running REPL, and so on - plus the knobs to mitigate each. Points at\nclojure-lsp for the static/cljs/no-REPL cases.",
"is_bot": false,
"headline": "Document the limitations of the AST-based analysis",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-07-01T10:23:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b16a08bdfb0615f1045db77bf2cacc7cb6616fc9",
"body": null,
"is_bot": false,
"headline": "Release 3.14.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-07-01T09:57:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c3c69e0d9a09072977d5ba804b7796095262d6e",
"body": "Two reliability fixes for tools.analyzer-based analysis:\n\n- Bound the AST cache with an LRU limit (default 512 namespaces, tunable\n via ast-cache-limit, nil to disable). tools.analyzer ASTs are large, and\n an unbounded cache could exhaust the heap when find-symbol or\n warm-ast-cache touched many \n[…]\nce those vars\n aren't thread-bound during analysis the way they are during normal\n compilation. This only worked before when the namespace happened to be\n cached by an earlier, unrelated operation.",
"is_bot": false,
"headline": "Harden the analyzer: bound the AST cache and bind set!-able vars",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-07-01T09:56:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "366d8eac536da7802fadc882ecb0f7968e0d36ed",
"body": "Two wasteful patterns on the find-symbol hot path (find-symbol runs\nfind-macro as one of its strategies):\n\n- find-macro-definitions-in-file read every form of every project file\n looking for defmacro. Skip files whose source doesn't even contain the\n string \"defmacro\" (reading from the already-slu\n[…]\n-wide namespace tracker (parsing every\n source file) on every call, even when the queried symbol turned out not\n to be a macro at all. Defer it until a matching macro definition is\n actually found.",
"is_bot": false,
"headline": "Speed up find-macros: pre-filter files and defer the tracker",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-07-01T09:56:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4f75f2645a792789b4bd2118b50c11f0d02b423b",
"body": "find-symbol/find-usages built an AST for every project file - which means\nrequiring and evaluating every namespace - even when a file couldn't\npossibly reference the symbol. Since only occurrences present before\nmacroexpansion are ever reported, a cheap textual pre-check lets us skip\nthe expensive a\n[…]\n the files that never mention the name. This\nturns \"analyze the whole project\" into \"analyze the few files that\nreference the symbol\", and improves reliability too, as far fewer\nnamespaces get loaded.",
"is_bot": false,
"headline": "Skip AST builds for files that don't mention the symbol",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-07-01T09:56:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "48aa1950fe4e69c8c5d181793676f89c8f6f27ab",
"body": null,
"is_bot": false,
"headline": "Release 3.13.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-20T09:33:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d8fe74d1072a165285563982327863675b85fed",
"body": null,
"is_bot": false,
"headline": "Bump core.async to 1.9.865",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-20T07:53:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cc5b09a7eb1dd96d6dc746dcc206c2ccd8fc2e9",
"body": null,
"is_bot": false,
"headline": "Bump Clojure 1.12.4 to 1.12.5",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-19T05:16:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5311cb3e187b34c1169d0bab114b288764fdbf24",
"body": "Also bumps jackson-core to 2.21.3 (paired transitive). The newer\nclj-kondo flags a lazy-for-with-side-effects in ns/rebuild.clj/assert-single-alias\nthat has been silently dead code; suppressed for now with a\n`#_:clj-kondo/ignore` and a pointer to issue #444 since the obvious\n`doseq` fix breaks 29 tests that were depending on the no-op.",
"is_bot": false,
"headline": "Bump clj-kondo to 2026.04.15",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-18T13:00:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91c1ead5526cf780ae797db704b0b0239445f0c9",
"body": "cider-nrepl 0.59 deprecated cider.nrepl.middleware.util.cljs/requires-piggieback\ninto a no-op. Inline the same logic inside refactor-nrepl.middleware so the\ndescriptor still declares piggieback's wrap-cljs-repl in its :requires set,\nwhich nREPL uses to order our middleware after piggieback when both are\nloaded.",
"is_bot": false,
"headline": "Bump cider-nrepl to 0.59.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-18T05:43:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15699ebd969e14693774752ef1bf40e1c3dac99c",
"body": null,
"is_bot": false,
"headline": "Bump actions/checkout to v6",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-14T13:48:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c0672393f14f9b886b6756ef6db61322f4e85992",
"body": null,
"is_bot": false,
"headline": "Bump leiningen-core to 2.12.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-14T13:26:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dac9b8afee09632773f0096fb4cb93a85326ae92",
"body": null,
"is_bot": false,
"headline": "Bump Clojure 1.12.0 to 1.12.4 in matrix",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-14T12:37:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86596af9f4ee29705e84d4593806b972518a3b1f",
"body": null,
"is_bot": false,
"headline": "Bump error_prone_annotations to 2.49.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-14T09:04:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1377fd42a45dfa22cb56592136cb3c4693c47109",
"body": null,
"is_bot": false,
"headline": "Bump orchard to 0.41.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-14T05:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb645c03d08541beb295cedc2d16e79f0b44baef",
"body": null,
"is_bot": false,
"headline": "Bump piggieback to 0.6.1",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T15:57:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3505d2f1cf9ff8eb605486409fd45a23b924df6",
"body": null,
"is_bot": false,
"headline": "Exclude older asm from eastwood to satisfy :pedantic?",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T14:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ab43538cb657911d390e8634bea6e99a3f3ec7b",
"body": null,
"is_bot": false,
"headline": "Bump eastwood to 1.4.3",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T14:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65a5d3590477ff5f91a915ba7ceb14343bfc3408",
"body": null,
"is_bot": false,
"headline": "Bump commons-io to 2.22.0 (test)",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T07:37:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2245ba909b9c90aa6399dcb9a7f6ce08b4c5deb1",
"body": null,
"is_bot": false,
"headline": "Bump rewrite-clj to 1.2.54",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T05:49:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1558356db0ded42079d04bddb9b3c2e6528c28ac",
"body": "CircleCI log output is truncated, hiding the actual `ERROR in (...)`\nline when flaky tests fail. Save the full tee'd log under target/ and\nupload it via store_artifacts so we can download the unmunged output\nand pinpoint the failing test.",
"is_bot": false,
"headline": "CI: capture test output and upload as artifact",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-13T05:32:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "265f0b02dd01cfd3841b14766e5e4e363f4a3884",
"body": null,
"is_bot": false,
"headline": "Bump nrepl to 1.7.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-12T18:04:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbf28874046a592c4a1ee79b758cb384494bb9ab",
"body": "The two other call sites of get-libspec-from-file-with-caching\n(namespace-aliases-for and add-tentative-aliases) already wrap with\nwith-suppressed-errors so a single unparseable file in a project's\nsource dirs - empty_file.clj, data_readers.clj, in-progress code -\ndoesn't take down the whole result.\n[…]\nrror depending on which pmap worker hit which file\nfirst.\n\nignore-errors? is honored: when callers explicitly pass false, the\nwrapper returns the function unwrapped and exceptions propagate as\nbefore.",
"is_bot": false,
"headline": "Wrap referred-syms-by-file&fullname's pmap in with-suppressed-errors",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-12T13:05:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7aaf047b178059c6f519b4ece6b8e7f034db2d44",
"body": "Mirrors cider-nrepl's convention. Each op is now reachable via\ntwo names - the legacy bare form (e.g. `clean-ns`) and the\nnamespaced form (`refactor/clean-ns`) - sharing one handler.\nDescriptors mark the bare names as deprecated. Backward-compatible;\nexisting clients keep working.",
"is_bot": false,
"headline": "Register ops under both bare and refactor/-prefixed names",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-10T11:09:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "efeb7273effd75f565a82e5790fd409136785012",
"body": null,
"is_bot": false,
"headline": "Release 3.12.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-10T06:32:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a122fd371a630f8ea6da8efb07f213f5d8d3007",
"body": "cljdoc was rendering all 30+ namespaces as if they were public API, which\ngave the wrong impression about the supported surface. The actual public\nsurface is the namespaces backing the nREPL ops, plus a handful that\nhave been called out in past CHANGELOG entries (config, libspec-allowlist,\npprint). \n[…]\nose 12 internal namespaces (plus the already-flagged-as-beta\nsuggest-libspecs) with ^:no-doc on the ns form. cljdoc respects this\nmetadata; downstream tooling like Codox does too.\n\nNo behavior change.",
"is_bot": false,
"headline": "[Fix #380] Mark internal helper namespaces with ^:no-doc for cljdoc",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-09T15:22:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b5725aabc57a327cfeaf1c4bb12febc54c089ae3",
"body": "The original report (refactor-nrepl 2.5.1, 2021) no longer reproduces\nagainst tools.analyzer.jvm 1.3.4 - building an AST for a namespace that\nsets *warn-on-reflection* (or *unchecked-math*) at the top level\nsucceeds in both .clj and .cljc files. Pin that down with a regression\ntest using two new fixtures so we catch any future analyzer/tooling\nupdate that breaks it again.",
"is_bot": false,
"headline": "[#347] Cover (set! *warn-on-reflection* ...) namespaces in ns-ast-test",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-09T14:46:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4275d7f36bfcba3ea5cdd8e28b44a5011dff2ddc",
"body": "… load\n\nresolve-missing's first request used to pay the full classpath-scanning\ncost since available-classes-by-last-segment is computed lazily. Spawn a\nfuture at namespace-load time so the cache is (likely) populated by the\ntime the first user request arrives.",
"is_bot": false,
"headline": "[Fix #405] Warm the class-search cache in the background on namespace…",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-09T09:08:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3443d7f3a4ff873fa77021426e07e77ec386bbbe",
"body": "…ditional\n\nClojureScript's analyzer auto-aliases requires of clojure.test, clojure.math,\nclojure.pprint and friends to their cljs.* counterparts, so a plain\n[clojure.X :as ...] is valid in both Clojure and ClojureScript. The previous\nhardcoded special case only handled clojure.test; extend it via a small\nallowlist so suggest-libspecs no longer offers #?(:clj [clojure.math :as math])\ninside .cljc files.",
"is_bot": false,
"headline": "[Fix #408] Don't wrap cljs auto-aliased namespaces in :clj reader con…",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-05-09T08:46:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f46395b2752234e607af5866ac882ae06226cd0",
"body": "Borrowing the spirit of cider-nrepl's def-wrapper pattern. Adding a new\nnREPL op used to require three separate edits in middleware.clj - a\ndelay, a -reply fn, and an entry in the refactor-nrepl-ops map. A\nsingle def-op form now covers the common case (handler result echoed\nback under one response k\n[…]\n\ndispatches on exception type. Same user-visible behavior (ExceptionInfo\n/ IllegalArgumentException / IllegalStateException -> message-only\nreply, everything else -> full stacktrace), much less noise.",
"is_bot": false,
"headline": "Introduce def-op macro and simplify error handling",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-23T10:14:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0953f7d35e30d5a278e5fbaf10468c379e98b0f4",
"body": "Borrowing two small conveniences from cider-nrepl:\n\n- `make lint` chains kondo, cljfmt, and eastwood in one go; saves\n running them individually before pushing.\n- `refactor-nrepl.test-session` centralizes the in-process nREPL server\n + session setup that was duplicated across integration-style tests.\n resolve-missing-test and resolve-missing-caching-test now share it.",
"is_bot": false,
"headline": "Add make lint target and extract shared test-session helper",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-23T05:21:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3ddd10fd198b586f7086dbcbe5989e9231c53a8",
"body": "The new clojure:temurin-*-noble images don't bundle Node (the old\ncircleci/clojure:*-node ones did) or unzip. We need node for the\nClojureScript REPL tests and zipinfo (from unzip) to verify jar\ncontents.",
"is_bot": false,
"headline": "Install nodejs and unzip in CI",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-23T04:21:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8830de06a3d1abd7480c72214e019214015039e",
"body": "shasum isn't in the noble image. sha256sum (coreutils) is always there\nand is what the sister projects use.",
"is_bot": false,
"headline": "Use sha256sum for cache checksum",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-23T04:21:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e667309e602b0f0ea9e2831a639176869db87cb",
"body": "The circleci/clojure images we were on were last updated in 2020-06 and\nsit in the deprecated circleci/* Docker Hub namespace. Switch to the\nmaintained clojure:temurin-*-lein-2.12.0-noble images, matching what\ncider-nrepl and orchard use. This also brings Leiningen from 2.9.x to\n2.12.0.\n\nWhile here:\n[…]\n drop the Install make step (make is included in the new image)\n\nExpected bonus: the flaky JDK 8 OOM during inline-deps should settle\ndown with modern Temurin's better container-aware memory handling.",
"is_bot": false,
"headline": "Modernize CircleCI executors",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-23T04:21:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "36fce1ad873396dca8be14705ed1b8e0c84bdefb",
"body": "tools.deps brings older Maven Resolver and httpcomponents versions\nthan what leiningen-core's pomegranate pulls in (in the :test profile),\nand a commons-lang3 older than clj-commons/fs's. Exclude the overlaps\nso the newer versions already on the classpath win.",
"is_bot": false,
"headline": "Add exclusions to satisfy :pedantic? :abort in CI",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-22T12:15:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91625579cdd585ca963501d168ce1bc401b12696",
"body": null,
"is_bot": false,
"headline": "Document restored hotload-dependency",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-22T12:15:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42e822da8cd93cf4182f9e268cc3ee029cfd32c6",
"body": "Hotloading was disabled years ago when alembic stopped working on\nJava 9. tools.deps provides a modern, well-maintained path: we use its\nresolve-added-libs to fetch the transitive set of JARs for a coord and\nadd them to the DynamicClassLoader in RT.baseLoader()'s ancestor chain.\n\ntools.deps ships as\n[…]\nack, and is loaded lazily via\nrequiring-resolve only when hotload-dependency is actually invoked.\n\nAccepts both the Leiningen vector format (unchanged from the old op)\nand deps.edn-style map literals.",
"is_bot": false,
"headline": "Restore hotload-dependency on top of tools.deps",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-22T12:15:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bdc86d57fae9ba26bccce60941787879f3f39d43",
"body": "Clojure stopped publishing master-SNAPSHOT to oss.sonatype.org (and\nhasn't published to central.sonatype.com reliably either), so the\n:master profile has been producing false-positive CI failures for a\nwhile. Sister projects (cider-nrepl, orchard) have already moved to a\nplain 1.10/1.11/1.12 matrix, so align with that.",
"is_bot": false,
"headline": "Replace Clojure master profile with 1.12 in the CI matrix",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-21T06:00:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65da414e620101e93b71d59c05e475645e2d1659",
"body": "http-kit 2.5.0 (inlined via mranderson) can't complete a TLS handshake\nwith modern search.maven.org. The failure was silently caught and\nreturned an empty body, which the retry wrapper treated as a transient\nempty response - making artifacts-test reliably flaky in CI.\n\nSince upgrading http-kit isn't\n[…]\nte), drop the\ndependency entirely and use java.net.HttpURLConnection for the three\none-shot HTTP reads this namespace needs. JVM proxy properties are\nhonored natively, so get-proxy-opts goes away too.",
"is_bot": false,
"headline": "Drop http-kit in favor of JDK HTTP client",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T14:54:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a658d8f407b565c207f802dcd2360a527c4e8032",
"body": "The double-prefixing regression (benedekfazekas/mranderson#98) has been\nfixed upstream, so we can drop the fix76 pin.",
"is_bot": false,
"headline": "Switch mranderson back to 0.5.4-SNAPSHOT",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0ab3bcab99f9fe13adf23e2986f10ba2a3b17b4",
"body": "The latest 0.5.4-SNAPSHOT has a double-prefixing regression\n(benedekfazekas/mranderson#98). Use the fix76 release which\ndoesn't have this issue.",
"is_bot": false,
"headline": "Pin mranderson to 0.5.4-fix76",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2aec261d220da0421ec0664451b715abbb95fe4f",
"body": "http-kit 2.8.1 is incompatible with mranderson - its new Java classes\nget repackaged but the Clojure source references aren't rewritten.\nSee benedekfazekas/mranderson#97.",
"is_bot": false,
"headline": "Revert http-kit to 2.5.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8be9820aca8aed17d17a997e3e4f61c88b5c9cf8",
"body": "The version prefix changed from v1v5v0 to v1v5v1 after the\ntools.namespace bump, causing all test_code jobs to fail.",
"is_bot": false,
"headline": "Update inlined tools.namespace version in test setup",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79931781e7e8a438f057333984cc97ef060f712a",
"body": "Exclude org.clojure/clojure from transitive deps to satisfy :pedantic?\nand update the Clojure master SNAPSHOT from 1.12.0 to 1.13.0.",
"is_bot": false,
"headline": "Fix remaining CI failures",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10d90385873d302c94031d744604df371e6cd81b",
"body": "Bump CI cache version to pick up the latest mranderson 0.5.4-SNAPSHOT\n(needed for http-kit 2.8.1 compatibility) and bump commons-io to 2.20.0\nto resolve the :pedantic? conflict with clj-commons/fs 1.6.312.",
"is_bot": false,
"headline": "Fix CI failures from dependency updates",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a5bee39e6a45a5945d60eb46a60e2fe5bfa7c88",
"body": "The Maven/Clojars tests would fail when the HTTP request returned an\nempty result instead of throwing an exception, since the retry logic\nonly caught exceptions. Now empty collections also trigger a retry.",
"is_bot": false,
"headline": "Fix flaky artifact tests by retrying on empty results",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "541b4f77f54ded8b239b39c19734a8a5663df0bd",
"body": null,
"is_bot": false,
"headline": "Bump nrepl to 1.6.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd1cdda0e57f7d9b40dcdc3b16efbad5c0ceb3c7",
"body": null,
"is_bot": false,
"headline": "Bump orchard to 0.39.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aafa435b4c4cff17ede89519492c5b1724fe33b9",
"body": null,
"is_bot": false,
"headline": "Bump http-kit to 2.8.1",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dddc1da679008bbdee0da4d6816648aebfc46bcc",
"body": null,
"is_bot": false,
"headline": "Bump rewrite-clj to 1.2.52",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c57013b47f98cb5320060790ea7659b3e728c6f",
"body": null,
"is_bot": false,
"headline": "Bump clj-commons/fs to 1.6.312",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e964245b5b97a17837ce16f9bbd957d383b5a6ce",
"body": null,
"is_bot": false,
"headline": "Bump tools.reader to 1.6.0",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8790562e705e9359b858eed66f5685b8189de866",
"body": null,
"is_bot": false,
"headline": "Bump tools.analyzer.jvm to 1.3.4",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84d86c84822d5f7e492a50964da0966b9fe3148f",
"body": null,
"is_bot": false,
"headline": "Bump tools.namespace to 1.5.1",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce240cc96f50945e80e6c5d81f8878123c203955",
"body": null,
"is_bot": false,
"headline": "Bump data.json to 2.5.2",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-04-20T11:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "969b58b722bac110b52c42e799130b92e0fc800f",
"body": "Usage: lein with-profile antq antq",
"is_bot": false,
"headline": "Add antq for checking outdated dependencies",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T15:55:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7f4feb4a8c204607fa74f5939eebb365ac23e07",
"body": "This option is not part of the general config system — it's a\nper-message parameter read directly by clean-ns. Documenting it\nalongside the global config defaults was misleading.",
"is_bot": false,
"headline": "Move always-return-ns-form docs to the clean-ns section",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T14:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8956244a23b6011eedc134ec98a531e38edce1cf",
"body": null,
"is_bot": false,
"headline": "Bump the copyright year",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T14:36:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "767496f35c50f61b485333c819d42837f27221d9",
"body": null,
"is_bot": false,
"headline": "Document print-right-margin and print-miser-width config options",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T14:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "712b9944bd0d9dd7c212e5a8905d482dcb4af02d",
"body": "warm-macro-occurrences-cache has been a no-op since before 2.2.0 and\nwas long overdue for removal. cljr-suggest-libspecs is a beta op used\nby clj-refactor.el's cljr-slash feature that was missing from the docs.",
"is_bot": false,
"headline": "Remove warm-macro-occurrences-cache and document cljr-suggest-libspecs",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T14:35:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fe6f46f20322940a9fec345e144a3274affae48",
"body": null,
"is_bot": false,
"headline": "Note that hotload-dependency is currently disabled",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T13:49:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22e21beb2baaa42467ab8ddc45ff9d57db56748c",
"body": "The actual default in config.clj is false, not true.",
"is_bot": false,
"headline": "Fix the default value of :prefix-rewriting in the README",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T13:49:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12c23430b09eff965ac2a5f4877f37b15f6e18b8",
"body": null,
"is_bot": false,
"headline": "Fix typos and grammar mistakes in docs",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2026-03-10T12:26:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ae9e861d08e1072a8712dd6adbaa8615cacebc9",
"body": null,
"is_bot": false,
"headline": "Stop depending on Compliment",
"author_name": "Oleksandr Yakushev",
"author_login": "alexander-yakushev",
"committed_at": "2025-05-30T12:21:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b267983805ca83e7688aa7f923e540c4f946f020",
"body": null,
"is_bot": false,
"headline": "Backfill a few release dates",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-30T11:58:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92ec9107324fc97946ac13c5ceb92a0a5c79f5d2",
"body": null,
"is_bot": false,
"headline": "Automate the creation of GitHub releases",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-13T05:50:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f70875136b2666dbd32327ea8a28536fa42c69ea",
"body": null,
"is_bot": false,
"headline": "Tweak wording",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-04T21:10:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "866b375e8610e58cc3488e87b5ffa6e861d1deda",
"body": null,
"is_bot": false,
"headline": "Bump the copyright years",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-04T21:07:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64173ed2b69947f62e4cb408140f3e8a066ef288",
"body": null,
"is_bot": false,
"headline": "Tweak a couple of changelog entries",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-04T21:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a4d05d3b202e72fbd9a12e4276ab8b247aec05f",
"body": null,
"is_bot": false,
"headline": "Release 3.11",
"author_name": "Bozhidar Batsov",
"author_login": "bbatsov",
"committed_at": "2025-05-04T19:59:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a518aafb4f05b430d836aaac015ff11206d0817f",
"body": null,
"is_bot": false,
"headline": "Fix code after updating dependencies",
"author_name": "Roman Rudakov",
"author_login": "rrudakov",
"committed_at": "2025-05-01T10:34:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffa7f49120bb56577c50598b3519aa57dba8a433",
"body": null,
"is_bot": false,
"headline": "[#410] Update dependencies to support Clojure 1.12 syntax",
"author_name": "Roman Rudakov",
"author_login": "rrudakov",
"committed_at": "2025-04-30T12:06:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a873ca41da1dcb1728109c8829d6c2465110c21",
"body": null,
"is_bot": false,
"headline": "3.10.0",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2024-03-02T15:45:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58e81e89d73c2e5b2315891ced9d839fa4effff4",
"body": null,
"is_bot": false,
"headline": "Update code inlining instructions",
"author_name": "Moritz Heidkamp",
"author_login": "DerGuteMoritz",
"committed_at": "2024-02-29T20:28:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67573f79846d569bbec6c04412d8fca766f09901",
"body": "When true, clean-ns will always return the ns form even if no structural changes were applied. This\ncan be useful when the only changes would be in the pprint result (due to whitespace changes).",
"is_bot": false,
"headline": "Add always-return-ns-form option to clean-ns",
"author_name": "Moritz Heidkamp",
"author_login": "DerGuteMoritz",
"committed_at": "2024-02-29T20:28:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3da5e4ea88dbadfe2a5f05e0fbe195a1bb16db8",
"body": null,
"is_bot": false,
"headline": "3.9.1",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-12-03T18:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec93758d050d49969dc665dcc17b2e85317facbf",
"body": null,
"is_bot": false,
"headline": "`suggest-libspecs` op: support collections for `:only` values",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-12-03T18:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a8970d8dfef8ea9285ec6c2f2d54e5080445f99",
"body": null,
"is_bot": false,
"headline": "Correctly coerce to `long`",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-12-03T18:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7cc8365fa910e74e4c6d2d85f4d3d11f8c7e6618",
"body": null,
"is_bot": false,
"headline": "Fix `ns-on-cp?`",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-24T19:56:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4512c62f3e4258bc930a3bbeb5238ce169d238e",
"body": "Fixes #401\r\nFixes #402",
"is_bot": false,
"headline": "Strengthen/refine `resolve-missing` (#403)",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-24T19:39:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4267c2a69ddc012f1ff15d04107dc1817c1b457d",
"body": null,
"is_bot": false,
"headline": "3.8.0",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-21T06:10:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f35d7289c28b05dd9da3293d2b36a292602802a4",
"body": "This speeds it up.",
"is_bot": false,
"headline": "Split CI matrix for code jarring",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-21T06:06:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05485fbf2192bd9d68481d1f50cb8a6a4f877ab7",
"body": "Fixes https://github.com/clojure-emacs/refactor-nrepl/issues/396\nCloses https://github.com/clojure-emacs/refactor-nrepl/pull/398",
"is_bot": false,
"headline": "`analyzer`, `tracker`: also parse .cljc files",
"author_name": "dotemacs",
"author_login": "dotemacs",
"committed_at": "2023-07-21T05:59:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41d2f50b997dcf35d0f9ec1fb5c68b0a8143a1dd",
"body": "enerally, test suites should be able to run without the :dev profile being activated.",
"is_bot": false,
"headline": "Decouple :dev :from :test profiles (#400)",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-20T12:27:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e176116c46214eb4384989231f09c89af5ab9c1e",
"body": null,
"is_bot": false,
"headline": "Fix a link in the pull request template (#399)",
"author_name": "Александар Симић",
"author_login": "dotemacs",
"committed_at": "2023-07-20T11:42:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9298bc2a0aefb0ad807c866c6f27316b06f3209c",
"body": "It was eight releases behind compared to the latest release.\n\nWith the upgrade of `org.clojure/tools.namespace`, some of the tests\nfailed. This was because ClojureScript files weren't\ntouched/considered until org.clojure/tools.namespace 1.2.0 version,\nwhen this bug was fixed and ClojureScript files started to be\nconsidered.\n\nCloses https://github.com/clojure-emacs/refactor-nrepl/pull/394",
"is_bot": false,
"headline": "Upgrade `tools.namespace`",
"author_name": "dotemacs",
"author_login": "dotemacs",
"committed_at": "2023-07-17T18:04:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1ff3fe289e80b869ba5738b508d79aa5a0886f4",
"body": "Most of all, I was worried about `(keys asts)` and `(vals asts)` used in a coupled manner. It's plausible that their returned order may be inconsistent across those two individual invocations.",
"is_bot": false,
"headline": "Optimize `ast-stats` (#397)",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-15T11:17:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a9a6ee92b4915efd4e43c87909f7fe5d2fc9dd4",
"body": null,
"is_bot": false,
"headline": "Update `version-clj` (#395)",
"author_name": "Александар Симић",
"author_login": "dotemacs",
"committed_at": "2023-07-11T20:09:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90e9858e5d1b56091a433c84784cc9cb8dbe1c52",
"body": "Co-authored-by: dotemacs <dotemacs@users.noreply.github.com>",
"is_bot": false,
"headline": "Update deps (#393)",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-10T15:01:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bda039cfb560206b7b225dc56958bc679a9ced1",
"body": null,
"is_bot": false,
"headline": "`suggest-libspecs`: fuly parse Elisp format",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-06T13:12:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d916e2e5ee8857d9410414d826c6fa801f9b5175",
"body": "Closes #384",
"is_bot": false,
"headline": "Implement new middleware op: `suggest-libspecs` (#392)",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2023-07-04T15:08:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e2987e0dd524e689c29add1f141bf1c8798b9f1",
"body": null,
"is_bot": false,
"headline": "3.6.0",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-10-23T16:35:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90898755daa293ec917642a34fd1c01476c3a3da",
"body": null,
"is_bot": false,
"headline": "Honor clj-kondo's namespace local configuration (#388)",
"author_name": "Vadim Rodionov",
"author_login": "OknoLombarda",
"committed_at": "2022-10-17T09:18:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74dada947f0f2e1775719eb3d8c0a96b837e65f0",
"body": null,
"is_bot": false,
"headline": "3.5.5",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-08-21T19:52:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8825e26989726a849f0910988c764f136f85e8fc",
"body": "Part of https://github.com/clojure-emacs/refactor-nrepl/issues/384\n\nCan be tried out with:\n\n```\n(thread-first \"cljr-suggest-libspecs\"\n (cljr--create-msg \"lib-prefix\" \"s\"\n \"language-context\" \"cljc\"\n \"preferred-aliases\" (prin1-to-string cljr-magic-require-namespaces))\n (cljr--call-middleware-sync \"suggestions\")\n parseedn-read-str)\n```",
"is_bot": false,
"headline": "Draft `refactor-nrepl.ns.suggest-libspecs`",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-08-21T19:37:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ba34beb03970abd985fd1e876b60dffe43181d0",
"body": null,
"is_bot": false,
"headline": "Expand `ns-ast-test`",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-08-21T18:18:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d88da9b6715dffca9e1978ae3526f439f38eefb",
"body": "Namespace aliases are symbols, and symbols begin with a non-numeric character,\r\nso we shouldn't suggest aliases that start with numbers.",
"is_bot": false,
"headline": "Don't suggest alias fragments with leading number (#385)",
"author_name": "Phil Brown",
"author_login": "pdbrown",
"committed_at": "2022-08-21T17:39:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2eb88b1dda169f33a19da3ecf49226ce7055cdc",
"body": null,
"is_bot": false,
"headline": "3.5.4",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-07-29T05:39:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "061244f6db1239dda027bd9a45515a80c0284348",
"body": "…s objects in themselves\n\nFixes #383",
"is_bot": false,
"headline": "`prune-dependencies`: consider `:as` names in cljs strings requires a…",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-07-29T05:34:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "765bf967f33d9225925b5e5aa74dbb5a7c5e663b",
"body": "Fixes https://github.com/clojure-emacs/clj-refactor.el/issues/476",
"is_bot": false,
"headline": "Add specific test coverage for string requires",
"author_name": "vemv",
"author_login": "vemv",
"committed_at": "2022-07-29T00:19:44Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 63,
"latest_release_at": "2026-07-01T09:57:40Z",
"latest_release_tag": "v3.14.0",
"releases_from_tags": false,
"days_since_last_push": 21,
"active_weeks_last_year": 6,
"days_since_latest_release": 21,
"mean_days_between_releases": 462.8
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 62,
"has_issue_template": true,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 68,
"stars": 262,
"watchers": 13,
"fork_history": {
"days": [
{
"date": "2014-07-21",
"count": 1
},
{
"date": "2015-02-13",
"count": 1
},
{
"date": "2015-02-22",
"count": 1
},
{
"date": "2015-03-06",
"count": 1
},
{
"date": "2015-04-03",
"count": 1
},
{
"date": "2015-05-26",
"count": 1
},
{
"date": "2015-06-18",
"count": 1
},
{
"date": "2015-06-20",
"count": 1
},
{
"date": "2015-07-28",
"count": 1
},
{
"date": "2015-09-03",
"count": 1
},
{
"date": "2015-09-08",
"count": 1
},
{
"date": "2015-11-17",
"count": 1
},
{
"date": "2016-01-22",
"count": 1
},
{
"date": "2016-03-06",
"count": 1
},
{
"date": "2016-04-25",
"count": 1
},
{
"date": "2016-06-07",
"count": 1
},
{
"date": "2016-09-13",
"count": 1
},
{
"date": "2016-09-16",
"count": 1
},
{
"date": "2016-09-27",
"count": 1
},
{
"date": "2017-02-23",
"count": 1
},
{
"date": "2017-04-01",
"count": 1
},
{
"date": "2017-04-22",
"count": 1
},
{
"date": "2017-06-24",
"count": 1
},
{
"date": "2017-06-28",
"count": 1
},
{
"date": "2017-07-13",
"count": 1
},
{
"date": "2017-12-09",
"count": 1
},
{
"date": "2018-01-11",
"count": 1
},
{
"date": "2018-02-02",
"count": 1
},
{
"date": "2018-03-17",
"count": 1
},
{
"date": "2018-03-22",
"count": 1
},
{
"date": "2018-03-26",
"count": 1
},
{
"date": "2018-05-12",
"count": 1
},
{
"date": "2018-05-28",
"count": 1
},
{
"date": "2018-06-28",
"count": 1
},
{
"date": "2018-07-07",
"count": 1
},
{
"date": "2018-08-23",
"count": 1
},
{
"date": "2019-01-18",
"count": 1
},
{
"date": "2019-02-18",
"count": 1
},
{
"date": "2019-02-22",
"count": 1
},
{
"date": "2019-03-12",
"count": 1
},
{
"date": "2019-03-19",
"count": 1
},
{
"date": "2019-03-28",
"count": 1
},
{
"date": "2019-05-23",
"count": 1
},
{
"date": "2019-06-04",
"count": 1
},
{
"date": "2019-06-14",
"count": 1
},
{
"date": "2019-07-14",
"count": 1
},
{
"date": "2019-07-31",
"count": 1
},
{
"date": "2019-10-06",
"count": 1
},
{
"date": "2019-10-16",
"count": 1
},
{
"date": "2019-10-26",
"count": 1
},
{
"date": "2019-11-04",
"count": 1
},
{
"date": "2019-12-14",
"count": 2
},
{
"date": "2020-06-17",
"count": 1
},
{
"date": "2020-06-29",
"count": 1
},
{
"date": "2020-09-01",
"count": 1
},
{
"date": "2021-01-05",
"count": 1
},
{
"date": "2021-02-18",
"count": 1
},
{
"date": "2021-02-21",
"count": 1
},
{
"date": "2021-03-10",
"count": 1
},
{
"date": "2021-03-26",
"count": 1
},
{
"date": "2021-05-12",
"count": 1
},
{
"date": "2021-10-21",
"count": 1
},
{
"date": "2022-05-11",
"count": 1
},
{
"date": "2022-08-20",
"count": 1
},
{
"date": "2022-09-17",
"count": 1
},
{
"date": "2024-02-29",
"count": 1
},
{
"date": "2025-04-30",
"count": 1
}
],
"complete": true,
"collected": 68,
"total_forks": 68
},
"star_history": null,
"open_issues_and_prs": 5
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 253,
"source_files_sampled": 2,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [],
"advisories": {
"error": "No resolved dependencies to assess",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [],
"collected": true,
"truncated": false,
"total_count": 0,
"direct_count": 0,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 191,
"open_issues": 5,
"closed_ratio": 0.978,
"closed_issues": 224,
"closed_unmerged_prs": 28
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "expez",
"commits": 395,
"avatar_url": "https://avatars.githubusercontent.com/u/1006557?v=4"
},
{
"type": "User",
"login": "benedekfazekas",
"commits": 157,
"avatar_url": "https://avatars.githubusercontent.com/u/1003422?v=4"
},
{
"type": "User",
"login": "vemv",
"commits": 137,
"avatar_url": "https://avatars.githubusercontent.com/u/1162994?v=4"
},
{
"type": "User",
"login": "bbatsov",
"commits": 125,
"avatar_url": "https://avatars.githubusercontent.com/u/103882?v=4"
},
{
"type": "User",
"login": "dotemacs",
"commits": 16,
"avatar_url": "https://avatars.githubusercontent.com/u/152363?v=4"
},
{
"type": "User",
"login": "plexus",
"commits": 14,
"avatar_url": "https://avatars.githubusercontent.com/u/32212?v=4"
},
{
"type": "User",
"login": "paulrd",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/14094?v=4"
},
{
"type": "User",
"login": "mbuczko",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/586537?v=4"
},
{
"type": "User",
"login": "aiba",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/26651?v=4"
},
{
"type": "User",
"login": "magnars",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/265785?v=4"
}
],
"contributors_sampled": 39,
"top_contributor_share": 0.436
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"github_release.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "24 out of 24 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/27 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 24 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "29 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 9,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "4dcf38de20f5cbec8bd37de6bba686f480b63c16",
"ran_at": "2026-07-23T03:40:26Z",
"aggregate_score": 5.5,
"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": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-01T10:23:27Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 195,
"created_at": "2017-04-15T13:33:35Z",
"last_comment_at": "2021-07-04T17:55:29Z",
"last_comment_author": "vemv"
},
{
"number": 266,
"created_at": "2019-09-25T22:21:33Z",
"last_comment_at": "2021-06-29T19:52:35Z",
"last_comment_author": "vemv"
},
{
"number": 322,
"created_at": "2021-07-09T14:28:02Z",
"last_comment_at": "2021-07-09T20:08:20Z",
"last_comment_author": "bbatsov"
},
{
"number": 443,
"created_at": "2026-05-18T05:46:00Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 444,
"created_at": "2026-05-18T12:05:45Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/clojure-emacs/refactor-nrepl",
"host": "github.com",
"name": "refactor-nrepl",
"owner": "clojure-emacs"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"security": 55,
"vitality": 66,
"community": 72,
"governance": 68,
"engineering": 75
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 66,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 63,
"human_commit_share": 1,
"days_since_last_push": 21,
"active_weeks_last_year": 6
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 21 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 21
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "6/52 weeks with commits",
"points": 4.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 6
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "63 commits in the last year",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 63
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "29 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 76,
"inputs": {
"releases_count": 6,
"latest_release_tag": "v3.14.0",
"releases_from_tags": false,
"days_since_latest_release": 21,
"mean_days_between_releases": 462.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 21 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 21
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~462.8 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 462.8
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 21,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 21 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 21
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 72,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"forks": 68,
"stars": 262,
"watchers": 13,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "262 stars",
"points": 39.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 262
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "68 forks",
"points": 15.2,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 68
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "13 watchers",
"points": 6,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 13
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": true,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (EPL-1.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "EPL-1.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 7.2,
"status": "met",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 68,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 39,
"top_contributor_share": 0.436
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 44% of commits",
"points": 12.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 44
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "39 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 39
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 24 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"merged_prs": 191,
"open_issues": 5,
"closed_issues": 224,
"issue_closed_ratio": 0.978,
"closed_unmerged_prs": 28
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "98% of issues closed",
"points": 45.7,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 98
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "191/219 decided PRs merged",
"points": 33.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 191,
"decided": 219
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"followers": 91,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "clojure-emacs",
"public_repos": 31,
"account_age_days": 4746
},
"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": "91 followers of clojure-emacs",
"points": 14.1,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 91,
"login": "clojure-emacs"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "31 public repos, account ~13 yr old",
"points": 23,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 31
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 75,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "24 out of 24 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"topics": [
"nrepl-middleware",
"clojure",
"clj-refactor",
"refactoring"
],
"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": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 55,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 55,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 5.5
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "24 out of 24 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/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 24 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "29 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 20
},
"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": "at_risk",
"name": "AI Readiness",
"value": 37,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.45,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "45 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 24,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 45,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Clojure",
"largest_source_bytes": 253,
"source_files_sampled": 2,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Clojure without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Clojure"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/2 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 2,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example"
],
"has_mcp_signal": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "example",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example"
}
}
],
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-23T03:40:51.649928Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/c/clojure-emacs/refactor-nrepl.svg",
"full_name": "clojure-emacs/refactor-nrepl",
"license_state": "standard",
"license_spdx": "EPL-1.0"
}