https://github.com/cjohansen/nexus: Data-driven action dispatch, ideal for UI development https://clojars.org/no.cjohansen/nexus/versions/2026.06.3 โข Add support for using with #C03U8L2NXNC @borkdude gratitude โข Fix unreachable code warning @teodorlu gratitude
https://github.com/cjohansen/replicant: build data-driven UIs with hiccup https://clojars.org/no.cjohansen/replicant/versions/2026.06.2 โข Add support for using with #C03U8L2NXNC @borkdude gratitude
https://github.com/lispyclouds/contajners An idiomatic, data-driven, REPL friendly clojure client for OCI container engines. 1.0.9: Support Podman 6.0.0, Docker 1.55 and more versions, improved api sync process, bump deps. Happy contajning! ๐ฆ
๐งต ansatz 0.2 โ "Verified Clojure via Lean 4" โ the kernel + DSL underneath (and what the assistant uses to check the rules it writes), now much easier to pick up. If you already write malli-instrumented Clojure, it's the gradual next step โ keep your schema, change defn โ a/defn:
clojure
(require '[ansatz.core :as a] '[malli.core :as m])
(a/load-init!) ; bundled Lean Init, zero setup (straight from the jar)
(m/=> dbl [:=> [:cat :int] :int]) ; just a malli schema
(a/defn dbl [x] (+ x x)) ; defn โ a/defn โ now machine-checked, still plain Clojure
(dbl 21) ; => 42
โข Batteries included, from Clojars โ (a/load-init!) loads a bundled Lean Init environment from the jar, no store to build; full Init / Mathlib fetched on demand.
โข malli support โ m/=> schemas become kernel signatures; [:map โฆ] โ named-field records (keyword access verifies, runtime stays plain maps); [:int {:min 1}] โ refinements you still use as plain numbers.
โข Better tactics โ faithful funext, simp only / simp_all only, a split cluster, omega improvements, ac_rfl.
โข Bugfixes โ omega hypothesis handling, codegen, several simp universe fixes.
Repos: https://github.com/replikativ/ansatz ยท https://github.com/replikativ/wandler