Earlier quoted context omitted.
But, it's still running on my desktop/laptop. I don't trust them to run on my machine. But, I guess I could run one VM with a desktop to contain the desktop app. Or, just keep using CLI agents.
Do you also run your browser in the VM? Why would an agent be less trusted than any other piece of software?
ZCode – Harness for GLM-5.2
321–330 of 382 posts
Re: ZCode – Harness for GLM-5.2
#322The plans on first glance is the same as Anthropic’s. I thought GLM was supposed to be cheaper. Am I missing something?
Re: ZCode – Harness for GLM-5.2
#323Z.ai documents integrations with nearly all the popular CLI-based agents: https://docs.z.ai/devpack/tool/others If you're already used to your TUI coding agent, you don't need the desktop agent. Although it is nice that it is there for folks who prefer the Codex App/Claude App UI approach.
Re: ZCode – Harness for GLM-5.2
#324Earlier quoted context omitted.
This is precisely what I've been working on targeting with https://dirge-code.github.io/ I've written up an explanation of what trips small models ups and how the harness can address that here https://yogthos.net/posts/2026-06-08-dirge-code.html
Very interesting work! I put some effort into getting it to work with models my hardware can actually run well and they just fall over immediately. gemma4 12b runs like molasses on my 2080 super but it was the only model able to, with your harness, actually do anything useful. It was the only useful thing I've gotten any model runnable with my hardware with any harness I've tried, very impressive! I suspect smaller m…
I find I tend to view agentic coding similarly to a genetic algorithm. The model is the mutator function, and the harness along with the tests acts as the selection function. Each round the model generates some plausible code, it gets tested against the constraints, the model gets feedback and iterates on it until it converges on something that's workable. So, the real trick is to make sure the environment is producing correct pressures to guide the model in the needed direction.
Another interesting project in this space I can recommend checking out is ATLAS https://github.com/itigges22/ATLAS
Re: ZCode – Harness for GLM-5.2
#325Earlier quoted context omitted.
I don't even know what I would do with a desktop app. I'm running these things in headless VMs, so I can run them with `--dangerously-skip-permissions` or whatever. I don't trust them, even without that flag, on my desktop/laptop.
Might wanna check out https://github.com/LuD1161/agentjail - policy guardrails for coding agents. shameless self-plug. I've been dogfooding it for the last 3 weeks now.
Re: ZCode – Harness for GLM-5.2
#326Earlier quoted context omitted.
This is precisely what I've been working on targeting with https://dirge-code.github.io/ I've written up an explanation of what trips small models ups and how the harness can address that here https://yogthos.net/posts/2026-06-08-dirge-code.html
Do you have benchmarks comparing against Pi? The blog post doesn't include any hard numbers. For example, so far I haven't seen any evidence that LSP integration improves performance for small models vs using grep via a bash tool.
As it stands, it's kind of subjective, you just have to try the harness and see if the model seems to be have better than with the other ones you've been using.
Re: ZCode – Harness for GLM-5.2
#327Earlier quoted context omitted.
This is precisely what I've been working on targeting with https://dirge-code.github.io/ I've written up an explanation of what trips small models ups and how the harness can address that here https://yogthos.net/posts/2026-06-08-dirge-code.html
This is very impressive!