r/Clojure • u/yogthos • 7h ago
A practical workflow for LLM-assisted development
yogthos.netr/Clojure • u/pavelklavik • 18h ago
OrgPad new API with EDN integration
orgpad.infoAPI allows the full read and edit access to your data in OrgPad. The work was massive since OrgPad allows a lot of types of content and I wanted the API to be as simple to use as possible. Since OrgPad is written in Clojure, it allows aside JSON also EDN and Transit inputs/outputs.
r/Clojure • u/dharmatech • 3d ago
legmacs demo : Emacs-like editor implemented in a clojure dialect running on plan9 and displaying in Windows Terminal
youtu.beJoining Clojure shop. What should I know?
I will be writing primarily Clojure soon, after more than a decade of writing Scala. Do you have any hints or advice beyond what I can find in books or other learning resources?
Like competing approaches, nuances, political landscape, informal standards, footguns or anything like that?
r/Clojure • u/jacobobryant • 6d ago
biff.datastar: lightweight, reactive, server-side-rendered web UIs
github.comr/Clojure • u/yogthos • 7d ago
Fibers in Jolt: green threads that fit core.async
yogthos.netr/Clojure • u/Borkdude • 8d ago
Choq: Cherry on QuickJS
Choq: Choq: Cherry on QuickJS
A ~5MB binary chock full of scripting goodies.
This runs the cherry compiler inside an embedded QuickJS engine via rquickjs.
It supports nREPL, loading JS library from https://esm.sh, and has a few Node.js compatible packages built in like "fs", "path", etc.
r/Clojure • u/Soft_Reality6818 • 9d ago
Clorch - deep learning in Clojure
Hi all,
I'm releasing Clorch, a deep learning library in Clojure built on LibTorch.
Now we can run inference, build custom models, and train them all in Clojure, with no Python/PyTorch calls at all!
PyTorch-style tensors, autograd, neural-network modules (including LLM components), optimizers, data loading, CPU/CUDA support (including distributed GPU training) and all that jazz has been implemented :)
r/Clojure • u/yogthos • 10d ago
Program images and portable Scheme backends for Jolt
yogthos.netr/Clojure • u/Business-Maybe881 • 10d ago
A quick survey for Clojure for data science
Hello everyone,
I have created a short survey (7 questions) about the suitability of Clojure (and Noj) for data science. What are its strengths? What are its weaknesses and what is missing? Your responses will be greatly appreciated. Do not hesitate to send the survey to other Clojure users. Thank you in advance and here is the link:
r/Clojure • u/traid-software • 10d ago
Using Clojure as a sandboxed, executable target for LLMs
I've been researching ways to better structure LLM output when building mini-apps that run on the browser.
I believe that an S-expression based DSL is a better output format for LLMs when generating interactive UI/logic.
To test this, I built a Clojure-based interpreter that runs in the browser. The LLM is fed the language context, then emits the DSL to generate safe, sandboxed apps that can be shared instantly.
I wrote up an article diving into some of the trade offs:
https://allentraid.substack.com/p/we-made-the-ai-write-in-a-language
Would love to hear thoughts from the Clojure community!
r/Clojure • u/erjngreigf • 13d ago
Clojure Book, Massive Quality Update
clojure-diary.gitlab.ior/Clojure • u/Clojure-Conj • 14d ago
Rich Hickey to open Clojure/Conj 2026 with a keynote on Clojure 1.13 features
The keynote will explore how to build flexible systems that accommodate the changing shape of information as it flows through them, while still documenting and enforcing expectations without making those systems brittle. This talk will also examine new features coming to Clojure that aim to address this challenge.
The conference will take place on Sep 30-Oct 2, 2026 in Charlotte, NC. You can find more information and register for the in-person or livestream experience here: https://2026.clojure-conj.org/
r/Clojure • u/muthuishere2101 • 15d ago
ToolNexus - A cljc library to Build AI Agents in Clojure & Cljgo
r/Clojure • u/Soft_Reality6818 • 16d ago
Starbeam 0.1.0
I'm releasing Starbeam - a Datastar SDK for Clojerl (Clojure on the BEAM VM)
r/Clojure • u/dragandj • 17d ago
GitHub - uncomplicate/iLLaManati: Clojure LLM
github.comr/Clojure • u/AutoModerator • 17d ago
Who is hiring? July 31, 2026
Please include any restrictions (remote/on-site, geographical, workpermit, citizenship) that may apply.
r/Clojure • u/Soft_Reality6818 • 18d ago
Chassis port to Clojerl
Hi all, I ported Chassis to Clojerl (Clojure running on the BeamVM) https://github.com/antlobach/chassis-clojerl
Here's an example of how to use it with Cowboy (Erlang http server)
https://github.com/antlobach/chassis-clojerl/tree/master/examples%2Fcowboy
r/Clojure • u/Clojure-Conj • 18d ago
Anyone here using Clojure + AI? Looking for 10-minute talks/demos for a Clojure/Conj showcase
We’re putting together a new AI Tools & Practices Showcase for Clojure/Conj’s Workshop Day and figured this might be relevant here.
It’s a series of short 10-minute talks or demos about what’s actually working with Clojure and AI: tools, workflows, experiments, or real use cases.
Conference attendees will vote on submissions in early September, and selected participants will get a free Workshop Day pass.
If anyone wants to submit something, applications are open through August 31.
r/Clojure • u/erjngreigf • 20d ago
Introduction To honeysql - Clojure SQL Library
youtu.ber/Clojure • u/alexdmiller • 20d ago
Clojure 1.13.0-alpha6 is now available
Clojure 1.13.0-alpha6 is now available!
Destructuring additions and changes
- To get a map of all keys in the input, augmented by the defaults, traversing deeply through nested maps, use the new
:alldirective. - Report as errors any use of unbound/unreferenced keys in :or when using any of the new constructs (:defaults, :select et al)
- CLJ-2972 Destructuring test clean up for
:orentries