Category Selected:

boxlang

Blog

BoxLang 1.17 Series Part 3 : Encrypted Config Secrets

Luis Majano |  September 08, 2026

Everyone knows the datasource password should not be sitting in plain text in a config file. Everyone has also, at some point, shipped exactly that, because the alternative was a pile of environment variable plumbing that nobody wanted to build on a deadline. x

Read More

BoxLang AI 3.4 Blog Series Part 3 : Batched Approvals

Luis Majano |  September 08, 2026

Here's a bug that's easy to miss until it bites someone in production: an agent turn asks for two tool calls at once, both need human approval, and only the first one actually suspends. The second one gets silently skipped. Not rejected, not queued, just gone. That's what happened before 3.4.0, and it's fixed now with batched tool-call approvals.

Read More

BoxLang 3.4 Blog Series Part 2: Revamped Human in The Loop HITL

Luis Majano |  September 05, 2026

HumanInTheLoopMiddleware used to do everything itself: decide which tool calls needed approval, present the request, and wait for a decision. In 3.4.0, that logic has been pulled apart into a real subsystem, and the piece developers will feel the most is that a human's "always allow this" now actually means always.

Read More

BoxLang 1.17 Series Part2 : BoxLang Check - Syntax Validation Your AI Agent Can Read

Luis Majano |  September 05, 2026

Every serious language has a way to ask "is this even parseable?" without running it. bash -n script.sh. node --check file.js. python -m py_compile. As of 1.17.0, BoxLang has one too.

Read More

BoxLang 3.4 Blog Series Part I: Gateways, One Interface, Any Platform

Luis Majano |  September 04, 2026

Every AI agent that touches something real eventually needs a human in the loop. Someone has to approve the delete, confirm the wire transfer, or just say "go ahead" before a tool call runs. The question BoxLang AI 3.4.0 answers is: approve it how? A terminal prompt? A webhook? A Slack button?

Read More

BoxLang 1.17 Series Part1 : Module Inception

Luis Majano |  September 04, 2026

BoxLang has always been an extensible language. As of 1.17.0, it is a hierarchically extensible one. Every module ecosystem you have worked in is flat. You declare a list of dependencies and something outside the language, a package manager or a build tool, resolves and downloads and orders them. The language itself has no opinion about the shape of the graph. It sees a list, not a tree.

Read More

BoxLang 1.17.0 Released: Module Inception, CLI Checker, Jar Loading and much more!

Luis Majano |  September 02, 2026

BoxLang has always been an extensible language. As of 1.17.0, it is a hierarchically extensible one. Modules can now contain other modules; aka Module Inception. Recursively. To any depth. Each nested module gets its own class loader, chained to its parent's, and BoxLang's own ModuleService discovers, registers, activates, and unloads that entire tree itself. No package manager. No build tool. No install ordering. Drop in one artifact and everything it depends on comes with it, already wired up and already isolated. Not only that, you can now package modules into a single jar.

Read More

BoxLang AI 3.4.0: Gateways, Human-in-the-Loop, and a Full Security Stack

Luis Majano |  September 01, 2026

BoxLang AI 3.4.0 is one of the biggest releases in the module's history, and it is built around a single theme: trust. Every agent you ship eventually needs a human to step in, and every agent that reads untrusted content is a target for prompt injection. This release gives you both a proper answer.

Read More

Introducing BoxLang AI Explorer: A Local Catalog for Every AI Pattern

Luis Majano |  August 14, 2026

Learning a new AI API usually means jumping between scattered documentation pages, guessing at imports, and copy-pasting code that may or may not still work. We wanted something better for BoxLang AI, so we built the BoxLang AI Explorer: a local, browser-based catalog of runnable BoxLang AI examples, organized by category and difficulty, each with guidance, source code, and sample output.

Read More

Community Spotlight: BoxLang Express Brings Node-Style HTTP to the JVM

Luis Majano |  August 12, 2026

If you've spent years in Spring Boot, Micronaut, or Jakarta EE, "web framework" usually means a servlet container, an embedded Tomcat or Netty, a build step, and a fat jar before anything answers a request. What if you could skip all of that and still be on the JVM?

Read More