First time showing something here, but I've been furiously working over the holidays on Feather, a from scratch reimplementation of TCL designed for embedding in modern applications.
It's starting out as a faithful reimplementation of TCL without I/O, OOP features, or coroutines.
TCL has a special place in my heart because the syntax is so elegant for interactive use, and defining domain specific languages.
My motiviation is twofold: faster feedback loops for AI, and moldable software for users.
It turns out giving AI agents access to the runtime state of your program makes for really fast feedback loops, but embedding existing options in a world where shipping binaries for each platform is commonplace is tricky.
Embedding the real TCL is tricky because it comes with its own event loop (in 2025 you alreay have one), a GUI framework (you have a web framework already, or develop on mobile), and has access to the filesystem (don't forget to delete all commands with file system access!).
Feather just doesn't ship with those - expose only what you need from your application.
A WASM build comes out of the box and clocks in at ~120kb plus 70kb for connecting it to the browser or node.js.
And if embedding becomes easy, you can put a REPL everywhere: in mobile apps, in desktop software, as a control plane into web servers.
I want to imagine a world where all software is scriptable just like Emacs and nvim, with agents doing the actual work.