As this post gradually sinks downwards on the HN front page, I'd just like to say thanks to everyone who've made all the lovely comments, it's great to get some feedback to show I haven't been wasting my time building this!<p>And as I said, this whole project was 100% done by me in my spare time, with zero money behind it, and no real plan for what happens to it now!<p>If you like it, please spread the word, as I don't have a marketing budget! If it manages to get a big enough userbase then hopefully I'll be able to figure out some way to make it a full-time gig, as it's been really fascinating to build!
This looks really interesting and a unique take on the AI agent orchestration. I think we need a bunch of experiments in this area as it's clear we are entering a new paradigm and the tools for it are lacking. The session tree in particular has merits.<p>I've got my own attempt with OrcaBot (short for orchestration of bots). It's also been a 6 month solo build experiment. I'm not trying to plug.. just that I'm also neck deep in Steve Yegge's Stage 8 AI-assisted coding chart and understand how much thought and effort went into this.<p>Thinking about where this is all going with talking to AI like fully autonomous employees similar to @Claude can you see a comms app type approach that combines something like slack with your tree/thread structure? It's somewhat orthogonal to your "inspect everything" but could intersect by bringing click through/open in options...
TBH I'm not coming from the same angle as all the gas-town fever-dream agent swarming stuff. I'm much more on the hands-on coding side, I tend to do one thing at a time and still do the git commits myself. So that's the UX I'm dogfooding..<p>However I see all those people out there trying to build these huge agent orchestration schemes, and if juggler's extension system can do that (or could be made to do that with a few tweaks) I'd be really interested in helping that to happen
I think I'm more on your side on that rather than letting agents go wild like Steve Yegge/Pete Steinberger do. In fact OrcaBot quickly adapted into a knee jerk reaction to OpenClaw because I saw that as inherently dangerous.<p>But with regard to Juggler and orchestration, have you seen "claude agents" (started in the terminal as claude agents instead of just claude). I ask because your tree like approach has similarities to how claude agents manages claude agents/subagents doing tasks with the ability to drill down in to each at a time which is why for me its not such a leap from what you already have.
I'm also on the hands on side. The mistake that I see a lot of people making is "I can build so much now". But that doesn't mean you're building the right things. And if you're hands off you aren't really thinking about what you're trying to build, at least not deeply. I'd love to see tools that embrace optimizing for that.
This looks nice, and I like the more opinionated take on how "communicating" with an agent should work.<p>The post talks a lot about what this is and how it works. I'm curious, from your usage of it, how does it change your way of working with the LLMs? How does working with it go differently from Claude Code?<p>Specifically: Everything is a tree. That's interesting, but how do you end up using it? Attack the same problem different ways?
I've mainly used the tree stuff when tackling a large plan - tell the LLM to do things using sub-threads, so the parent gets the summaries and orchestrates them.<p>But TBH for most smaller tasks I tend to create a conversation, do a linear task, and bin it.<p>Because a plugin can also use the sub-thread system, maybe people will come up with some interesting uses for them that I haven't thought of, my own use tends to be quite simple!
I see. That seems pretty similar to plan mode + "implement with subagents". The display for that in terminal apps is pretty bad, but it's low friction.<p>One more question around yDoc and remote access if you don't mind. Do you have thoughts on a tool like this for "LLM pair programming" or just general collaboration?<p>Working with teams on smaller projects with these tools is really hard because anyone can build anything. If I'm going to type up a bug or request to send to a team member to build I might as well send it to the LLM instead. A multi-user environment in a tool like this could be interesting. Seeing team members sessions in real time could be neat.
TBH I've found myself using juggler's tabs like a kanban board.<p>It'll certainly let multiple people share the same live session, so that tab list would act pretty much like a live shared kanban board. If you're all happy working on the same folder at the same time, then that would work! I guess that just by adding something like per-tab worktrees it could actually be a pretty good team server.. hmm.. Hadn't really looked at it like that yet, but that' interesting
The first orchestrator I built was a kanban board that spawned a vscode session per task with a plan file in it. Nice contained way to do a chat session, you can review the files and make edits, and close it once it's done. Very slow and heavy though. So that way of working resonates with me.<p>For some more unsolicited feedback: if that's how you use it why not pitch it that way/ make that way of working more obvious? Bug tracking and todo's jump to mind for me. For example: I want to write a prompt to fix this bug at some point but I need to think more about it. Right now I just need a place to jot it down for now so I don't forget.<p>Re: collab - managing edits and other state (builds/lints/test processes) is definitely a tricky problem. "Frictionless" worktrees is an interesting idea. That often seems like the "right" solution for how I'm working but it's too annoying to do for smaller changes. Doing that well would be a reason for me to give this a try.
ACP support would be a big deal and would make this a real contender for me. It looks super nice, but the idea of re-writing my Pi plugins is a real blocker.<p>I’m generally happy with my agent and want to keep that, but I do think the UI could be better and this looks like a neat step that way.
Agreed, ACP should be a minimum requirement on new agentic tooling. Hope this gets it, then I can try using my niche agent.
Cheers, I'll put ACP on my list of things to investigate
I guess there are 2 sides of ACP that are valid then. What was asked is for Juggler to act as a ACP client. I, on the other hand, would appreciate it to be a ACP server, so that I can interact with it from my editor when I’m on my machine and from the web when on the go or for more advanced functionality. That’s my current approach with opencode.
@julesrms thank you for lending more credibility to the idea that agent conversations need to be natively branching. It's crazy that we're almost 3 years in on this LLM joyride and we still don't have the ability to do, like, reddit/slack-style "aside" convo threads.<p>~~edit~~<p>wait, are you doing that? Love JUCE btw
Can you go more in depth on why LLM conversations should branch reddit-style? That doesn't seem immediately clear to me, and I'd be afraid that the different branches would step on each others toes? (also I'm assuming what you're describing here goes beyond the "fork" feature found in many agent harnesses).
An agent like claude might run a subagent (e.g. to fetch and summarise a web page, or explore a code question) as if it's a tool, so you can't really see what's going on inside it. Juggler makes these sub-threads part of the overall structure, so you can navigate into them.<p>Another really elegant thing that pops out of subthreads is that to do a compaction, you simply move the entire conversation into a subthread, and let the subthread summarise itself (which they do anyway). So we get compaction as part of the architecture, and you can also dig into that old thread if you need to revisit any of it
I know! But 3 years is a very short time for a whole new category of tools to find the best design. It's incredible how quickly a lot of the big agents were dragged into existence, I'm amazed they worked at all..
This looks cool! I'll check it out. Out of curiosity: I assume you've also used agents to help build this, and on the site you mention working on this for ~6 months. Most one-man projects I see that use ai seem to focus on creating and presenting a concept as soon as possible
(to a lot of people I think the main benefit of stuff like vibing is that you really quickly get something that you can have others test out).<p>On the site you also mention being pretty opinionated about the tools you use / build, which I imagine is part of the reason why you spend more time on this before releasing it. What was your experience using ai to build a larger project with a very specific idea / taste in mind?
I must have authored literally a million lines of C++ over my career, and done many talks about clean coding, etc.. But in this one I quite appropriately wrong almost zero lines by hand!<p>Surprisingly, I've really enjoyed the experience. I have friends who lament that they probably won't be hand-writing code much more, but although I've always loved the craft of coding, I discovered that a lot of the fun I get is just in the end result, not how I got there.
Really glad to see an harness other than Pi that seems to be non-vc-backed FOSS and by a competent maintainer<p>Edit: seems like the remote connection feature may not work...
Pi (Earendil) is afaik vc-backed. Accel, Balderton, etc see last section of <a href="https://earendil.com/posts/announcing-pi-and-lefos/" rel="nofollow">https://earendil.com/posts/announcing-pi-and-lefos/</a>
I'll try to live up to the 'competent' bit!
> Because it's a CRDT behind a local web server<p>I think that’s the secret to stability. I see too many projects that try to embed the harness into their UI. I think that’s completely wrong because it leaves no interface for changing or reasoning about the system.<p>The harness needs a lot of love and it should be as small and as possible (at least somewhat). I dream of a world in which we have some standard interfaces here, including for the UI.
Totally. I spent a <i>long</i> time on the architecture of this thing, must have redesigned in 10 times to evolve it to this point. It was a really interesting challenge, but seems kind of obvious in hindsight..
I always like testing out new things to put into my workflow. the first thing I will say is that its a welcome change to have an app 40 MB rather than over 400
Nicely done! Would you consider adding an Agent SDK login for Claude for those who don't have an API budget and want to avoid potential issues with Anthropic's capricious policies around CLI use in third-party apps?
It does! It'll automatically detect and use the claude CLI. That's my main daily driver.<p>[edit] sorry - misread your post. It basically does the exact same thing that the Agent SDK does, so is equivalent to using it (but being Go, I couldn't use it directly)
UI is clean. could install in Mac. Adding context files at the top is clean. It worked.
Currently I use zed, vscode (for UI). along with claude, codex, Hermes.
Not sure If I will continue to use. But I see it is a clean and good UI, and integrating to my exiting cli's. All the best.
Nothing to say regarding this release, but thanks so much for creating Tracktion (first DAW I ever used back in 2006) and JUCE (I love and use many audio plugins created with it)! Have a great day!
Could you include screenshots on your github page?
Great work, it is very funny that I did just the opposite :)<p>Got fed up with Zed, Cursor, and the other GUI agentic tools and created a console TUI agent for my own use.
Sweet! I was just looking for something like this, this past weekend. Lots of command line stuff, but not much in the way of GUI apps. Excited to check this out! Thanks!
Just wanted to add a follow-up to what I posted above..<p>In terms of who might be interested in this: I've watched amazing communities spring up around open agents like Opencode and Pi. People are getting into those because of their extensibility and being model-independant. They're great projects, but like many people I know, I really hate being stuck in the terminal for this kind of tool. I also had some ideas around what an agent's UX could be like if every item in the context was a plugin (with its own custom UI).<p>So I guess if you're a claude/codex user but want to escape the terminal (and let's face it, their GUI apps are also basically the same UX as a terminal but with nicer fonts), I'm trying to do something different here, would be really keen to hear what the enthusiasts think of it!
Have you looked at Kilo code too. It is also model-independent but not terminal based. <a href="https://kilo.ai" rel="nofollow">https://kilo.ai</a><p>PS: I agree that tree is a better approach than scroll chat, and other ideas Juggler has.
First of all, it's so cool to see you on HN and creating this. I'm not sure how much the HN community is aware of this, but JUCE is the standard for cross platform music plugin development and needs to work efficiently in hard realtime settings. Many of my favorite plugins are JUCE based (such as the Valhalla stuff) and I'm a huge fan. Tracktion is a great DAW as well that I got a lot of mileage of in my younger days (ended up with Renoise because I'm a tracker guy after all long term).<p>I mention all this to say someone like you picking up the desire to build an agentic platform really piques my interest. Right now I am using Opencode for most of the stuff I am trying to do at $WORK and it does a good job on the whole at having sufficient functionality. But the release pace is blistering and it does feel bloated - both in terms of functionality as well as system prompts.<p>Moreover, I observed all of the same issues you mentioned and certainly wanted more of a tree like experience as well as a more UI forward experience. In order to get the functionality I wanted (good worktree support, sandboxing, etc) I eventually just had to let go of using opencode's UI and embrace the TUI because it was the only thing I could embed into a workflow that let me set up all of that in a sane manner. But problems still remain with the "doom scroll" experience when to your point clearly a tree based experience would be better.<p>I was ready to just settle with my cobbled together opencode flow and maybe migrate to Pi later on and just accept i'd have to roll my own GUI harness for my nontechnical team members. But seeing what you've put together so far (and knowing it's you who wrote it so I'm probably going to just see a step function level better quality in architecture/efficiency) is going to make me reassess in a good way. Some things that I'll be considering:<p>- Worktree support<p>- Sandbox support<p>- Skills/subagent handling<p>- Hashline based editing (feel like this is a huge part of why
people get better results from pi/omp over opencode/codex/claude code)<p>- Ability to customize tool calls + have rich embeds<p>- Web UI support (if i'm building this out for team members, native GUI can get messy and web client is ideal)<p>- Long horizon efficiency (IE i regularly get to 200k-400k context length sessions; while the model handles it fine, opencode gui will get laggy while the tui keeps chugging along)<p>For a lot of this stuff, it's less critical that all of this works perfectly out of the box and more critical that the architecture makes it easy to build (ie as with Pi ecosystem). What I'm after long term is something a bit like <a href="https://github.com/ColeMurray/background-agents" rel="nofollow">https://github.com/ColeMurray/background-agents</a> in capability but without the overly tight coupling and design decisions that product has made.<p>The way I want to get there is to find the right base (whether that's Pi, OpenCode, or your project Juggler) and build the background agent harness layer. Previously it was just Pi and OpenCode and neither was really perfect (GUI story was probably the weakest for both) but it's great that I have another option to diligence that might actually be a better fit for what I'm trying to do.<p>Excited to see how this develops and kick the tires on it myself. The tree paradigm feels like the killer feature to me; not sure of anything else besides pi/omp that has it.
Couldn't agree more!<p>I've got things like worktree/sandboxing/skills on my TODO list.<p>I'd heard of hashline based editing - I will dig into that, and it's probably easy to add, though TBH I've not had any hassle with the editing tools so far.<p>If you get stuck into customising tool calls + their UIs, would love to hear how you get on, as that's one of the big goals for this. I've implemented all the built-in tools as plugins so hopefully it'll cover everything you need.<p>In terms of long-horizon stuff, yes, I also often hit 3-400k and haven't had any issues, but let me know if you spot anything untoward
Looks cool, I am also trying to figure out how to enhance the CLI user experience but on web with cloud gpus
Why not use JUCE for UI? :)
An LLM conversation contains a massive mess of markdown, code, HTML, images, god-knows-what else, it needs to reflow and animate. Neither JUCE or any other non-HTML UI framework would be realistic for that!
> Wails for windowing (no Electron)<p>Awesome.<p>> AGPL<p>Even more awesome.
Hey Jules! This looks awesome, excited to check it out :) Hope you're doing well! Tom
For running headless is it possible to not require installing libwebkitgtk-6.0.so.4
I thought "Wails" was gonna be short for "Wuby on Wails" lmao<p>Cool project actually, but I noticed the author said "No Electron" as if Electron is synonymous with JavaScript.<p>My biggest concern about it actually is using Go to render web front-ends in HTML/CSS hahah so I'm not sure "No electron" is selling me.
"No electron" is more about avoiding bloat and dependencies.<p>I come from a hardcore, real-time C++ background and the idea of a product not being a single self-contained binary is just too far for me to go!<p>(But I don't think the choice of JS back-end should make the slightest difference to anyone using this. I could swap electron in there in the future and probably no-one would notice)
Does it support sandboxing?
Having now given it a quick spin, I like the UI concept and could definitely see myself working with this. I ran into a bug(?) almost immediately though, I hooked up Deepseek 4 Pro, gave it a small task and got this<p>```
LLM error: POST "<a href="https://api.deepseek.com/v1/chat/completions" rel="nofollow">https://api.deepseek.com/v1/chat/completions</a>": 400 Bad Request {"message":"The `reasoning_content` in the thinking mode must be passed back to the API.","type":"invalid_request_error","param":null,"code":"invalid_request_error"}
```<p>I'm unsure about putting my Anthropic key in there as I've lost track of what they ban you for or whether that eats money from outside of my subscription.<p>Oooh, and nicer support for codefences would be good.
Jupyter-rtc is built on y.js too.<p>There's a sqlite CRDT: cr-sqlite,: <a href="https://news.ycombinator.com/item?id=41921992">https://news.ycombinator.com/item?id=41921992</a><p>vlcn-io/cr-sqlite: <i>Convergent, Replicated SQLite. Multi-writer and CRDT support for SQLite</i> <a href="https://github.com/vlcn-io/cr-sqlite" rel="nofollow">https://github.com/vlcn-io/cr-sqlite</a><p>Notes on sandboxing agents: amla sandbox, agentvm, <i>bwrap</i> at least; debugging mcp servers, and signing agent traces in a standard format: <a href="https://news.ycombinator.com/item?id=48893850">https://news.ycombinator.com/item?id=48893850</a><p>--<p>Can juggler: Design and verify a guitar effect pedals and a wavetable synth with JUCE on a low power chip?<p>JUCE on embedded controllers; Rust embedded RTOS-like features, a DSP and low power draw:<p>> <i>Ambiq Apollo4 Plus | ARM Cortex-M4F | ~4–10 µA / MHz | more efficient than an RP2040 Pi Pico. The hardware FPU handles audio math at a fraction of the power footprint.</i><p>> <i>STM32U5 Series | ARM Cortex-M33 ~110 µA / MHz | energy-saving modes, math accelerators (Cordic for sines/cosines), audio peripherals</i><p>> <i>STM32L4 Series | ARM Cortex-M4F | ~100 µA / MHz | mature, ultra-low-power, robust I2S audio support, sleep state</i><p>grame-cncm/faust: <i>Functional programming language for signal processing and sound synthesis /</i> [that compiles to microcontroller DSP code, LLVM IR,] <a href="https://github.com/grame-cncm/faust" rel="nofollow">https://github.com/grame-cncm/faust</a><p>Then a Rust-based OS for microcontrollers; to isolate devices and device drivers from other processes;<p>I'd like to learn this too (so this is worth researching)<p>Rust packages for DSP:<p>embedded-hal, embedded-io, rand_core<p>Navigating the Embedded Rust Ecosystem <a href="https://www.theembeddedrustacean.com/p/navigating-the-embedded-rust-ecosystem" rel="nofollow">https://www.theembeddedrustacean.com/p/navigating-the-embedd...</a><p><a href="https://google.github.io/comprehensive-rust/bare-metal/microcontrollers/other-projects.html" rel="nofollow">https://google.github.io/comprehensive-rust/bare-metal/micro...</a><p>hubris > Flash instructions already mention an STM32 F but not yet U or L:
<a href="https://github.com/oxidecomputer/hubris#flash" rel="nofollow">https://github.com/oxidecomputer/hubris#flash</a><p>Task: Add support for STM32U and STM32L to hubris<p>"Navigating the Embedded Rust Ecosystem" <a href="https://www.theembeddedrustacean.com/p/navigating-the-embedded-rust-ecosystem" rel="nofollow">https://www.theembeddedrustacean.com/p/navigating-the-embedd...</a><p>The micro:bit has a speaker and something like a DSP and rust support, though it's not going to run JUCE and BespokeSynth ;
kk
Just rtic, cortex-m-rt, and nrf52833-hal (for micro:bit v2) might be sufficient but there's already microbit_bsp:<p>microbit_bsp is a board support package (BSP) library for the micro:bit v2 and newer:
<a href="https://docs.rs/microbit-bsp/latest/microbit_bsp/" rel="nofollow">https://docs.rs/microbit-bsp/latest/microbit_bsp/</a><p>Another task; Develop and test a board support package for low-power chips for hosting effects from JUCE compiled with or like Faust.<p>But then contain agent sessions;<p>e.g. Hubris has no shared memory so audio streams must be shoveled over message passing<p>--<p>Back to agent sandboxing;<p>It looks like WebKitGTK uses bubblewrap on linux unless running in a flatpak, because flatpaks don't have permission to create namespaces so bwrap can't run.<p>Bubblewraplauncher.cpp:
<a href="https://github.com/WebKit/WebKit/blob/main/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp" rel="nofollow">https://github.com/WebKit/WebKit/blob/main/Source/WebKit/UIP...</a><p>FlatpakLauncher.cpp:
<a href="https://github.com/WebKit/WebKit/blob/main/Source/WebKit/UIProcess/Launcher/glib/FlatpakLauncher.cpp" rel="nofollow">https://github.com/WebKit/WebKit/blob/main/Source/WebKit/UIP...</a><p>CF workers support nested agent isolates since 2026-03: <a href="https://blog.cloudflare.com/dynamic-workers/" rel="nofollow">https://blog.cloudflare.com/dynamic-workers/</a><p>dloss/awesome-agent-sandboxes: A curated list of sandboxing solutions for AI agents <a href="https://github.com/dloss/awesome-agent-sandboxes" rel="nofollow">https://github.com/dloss/awesome-agent-sandboxes</a>
Interesting. Just opened it up to use, while I had a codex terminal session running - my first instinct was to want to see my pre-existing open session in the GUI instead and be able to drive it in either spot. Is that something I can do?<p>Also when I opened a new session (in the Juggler GUI) at my root where all my projects live, my instinct was to navigate to a project directory first or to have it open there. Not sure how to do this, without changing the global setting for my projects root. That's how I think through claude code/codex coding sessions via the terminal wondering if that mental model is wrong.<p>I asked which skills it could access, and it turns out it couldn't access any of my global skills already - I thought that part would just work since it accesses my codex subscription. is that something you plan to add.
No, it talks directly to the GPT API, it doesn't control the codex app in any way.<p>I've kind of followed the claude model where you have to give it a project folder, and at the moment I've made it so that it has one project/session per window.<p>I'm pondering whether to let a window contain tabs which each have a different project folder.. this would be easy to do, but feels somehow messier. Opinions welcome on that.<p>And yeah, I need to make it scan for skills - it's probably an hour's work to implement that, just haven't had time to do it yet! Probably will be done this week
[flagged]
[dead]
Please ask your LLM Agent to replace all that JavaScript code with SwiftUI, or at least C++ with native graphic libraries for real native GUI performance.