Jaseci Digest

Archives
Log in
Subscribe
July 1, 2026

Jaseci Digest #03: News from the Jaseci open-source ecosystem

Jaseci Digest · July 1, 2026
 

Welcome to Issue N.03 of Jaseci Digest, a biweekly roundup of what's happening across the Jaseci and Jac open-source ecosystem.

This issue's lead: building an AI agent is mostly scaffolding, not the agent. Building Agentic AI with Jac shows how Jac builds that scaffolding into the language, so the only code you write is the agent itself.

 
 

Featured

Agentic AI is easy when it's built into the language

What if building an AI agent took 10x fewer lines of code than Python? In Jac, the whole thing is just 7 lines.

A complete AI agent 7 lines of Jac
import from .tools { web_search, read_file, write_file }

# An agent: a function the model runs, calling tools.
def research(topic: str) -> str by llm(
    tools=[web_search, read_file, write_file]
);

with entry {
    print(research("the best coffee in Tokyo"));
}
✗  The usual way You write the agent and all the code around it: each tool's JSON schema, a dispatch table, the loop that runs while the model works, and the validating and retrying of its output. The same agent in Python runs to around 70 lines, and most of it is not the agent.
✓  With Jac That supporting code is part of the language. You describe the agent, and the runtime handles the rest. The whole thing is the 7 lines above.

The full article explores how Jac makes building real, capable agents this simple.

Read the article →
 
 

Tutorials

Jac Tutorial: Lesson 1

The Jaseci team just kicked off a video series that teaches Jac from the ground up. Lesson 1 is a hands-on introduction: install the toolchain, write your first program, and get a feel for how the language reads. It is the first of many, with new lessons landing regularly, so subscribe to the Jaseci channel to follow along.

►  Subscribe to Jaseci on YouTube

Watch Jac Tutorial: Lesson 1 on YouTube

 
 

Community

JacHacks SF is coming

JacHacks SF. July 26, 2026, 8:00 AM PT, Founders, Inc., San Francisco.

JacHacks heads to San Francisco for a one-day, in-person hackathon built around the future of AI programming, landing July 26 at 8 AM PT at Founders, Inc. It follows a strong run for the series, with JacHacks Spring drawing 300+ builders and 81 projects online this May.

Register for JacHacks SF

Join the Jaseci Discord

The fastest way to talk to the team and other builders. RFC chatter, debugging help, release questions, and a steady stream of show-and-tells. Worth joining whether you ship in production or are just curious.

Join the Discord
 
 

Articles

What 75 students shipped in one semester with Jac

Over one Winter semester, 75+ students in Michigan's EECS 449 shipped 17 full-stack AI applications, most of them in Jac. These were real, working products, not chatbot demos, from an adaptive scheduling assistant to a research terminal for prediction-market traders. They got there in a single term because Jac handles the interface, the logic, the data, and the AI in one language, so the teams spent their time building instead of wiring tools together.

 
 

Releases

jaclang v0.30.3: one self-contained binary, nothing else to install

The headline of the 0.30 series: jaclang now ships as a single self-contained jac binary, a Zig launcher with a bundled CPython. It runs without a separate Python installation or a package manager. Download the binary, add it to your PATH, and jac run and jac start work immediately. Serving and deploying are now built in as well, with the former jac-scale package folded into the binary, and Jac-native desktop apps run on that same bundled runtime. Heavier dependencies such as FastAPI, MongoDB, and Redis are installed per project, only when your configuration requires them.

Browse the archive
 
Issue N.03 · July 1, 2026
Jaseci Digest
© 2026 Jaseci Digest. Part of the Jaseci open-source ecosystem. Jaseci
Don't miss what's next. Subscribe to Jaseci Digest:
← Newer Jaseci Digest #04: News from the Jaseci open-source ecosystem Older → Jaseci Digest #02: News from the Jaseci open-source ecosystem
www.jaseci.org
Powered by Buttondown, the easiest way to start and grow your newsletter.