8/14/2026 at 11:48:31 AM
I bought $18 GLM official subscription yesterday (5.2, but new model version was already leaking on some docs), set it up with Claude Code harness... and I’ve bumped to $80 plan almost immediately. It’s the first model that agreed on a proper security research (red team scenario), executed it seamlessly, including 0-days in WP plugins, RCE, 6.8 kernel exploit adaptation, etc - while playing against another GLM agent as a defender (following HF story)!I understand that such models can be used by malicious actors, but it’s fair to have it publicly available (and play on your side in case of emergency). This is what changes the world in a better way, I think, not the guardrails.
by leobuskin
8/14/2026 at 4:21:28 PM
At my work I have a $500 monthly AI budget. I have been using the $200 Claude subscription and most of my use is with Claude code. I think I'm going to switch to either kimi or glm and use the opencode harness. Both fable 5 and opus 5 have outright refused things like security related bug fixes and making monitoring tools. I am so happy that open models are good nowby takerofnaps
8/17/2026 at 12:48:59 PM
My beef with the Fable refusals is that it seems to just be flagging keywords, and also seems it flags on keywords the model itself introduced to the context.In a normal Chat with Fable, something like "How can I exfiltrate a guy from a sticky situation?" reliably downgrades, leading me to believe that Fable just outright refuses once it sees the word "exfiltrate". When it writes a service and names it CloudExfiltrator, the next turn downgrades to Opus.
Opus doesn't appear to refuse on simple keywords, but it does seem like Fable's reasoning introduces enough nefarious-sounding context that Opus will then refuse, and I'm stuck playing the new session game despite having done everything correctly myself and having a totally innocuous prompt. At one point, Opus was happy to continue while outputting commands for me to execute on its behalf, but flatly refused to execute them itself through multiple new sessions. To its credit, it openly acknowledged how ridiculous that was and was apologetic for the safeguard.
I'm open to the idea of some kind of guardrails, but if Fable is so dangerously intelligent as to require the guardrails you'd think they could come up with something a little more nuanced than a list of bad words. As far as I can tell, they've also not done anything towards improving the situation since the model was released, despite the "deliver more capabilities faster" claim.
by jcomp
8/14/2026 at 6:11:19 PM
I generally use the $100-200 Codex/Claude subs, and have been blown away by the usage I get from OpenCode Go at $10/mo. At a minimum, excellent for automatically piping reviews to from Codex/Claude.by gabriel-uribe
8/16/2026 at 4:39:12 PM
I run my OpenClaw on whatever is the latest GLM model and ever since the release of GLM 5 it has been a smooth ride. The models solve whatever problem I throw at them and the code is good enough that I barely ever have to look at it (to guide the mode). The 5.3 release seems particularly strong, I asked if to audit all the scripts that the previous versions have written and it identified some issues and hard to find bugs.At work, as an experiment, I used GPT 5.6 Luna + Deepseek 4 Flash for a week (I have an unlimited, "within reason", budget at work so normally I just use Fable and Sol) and it's been perfectly fine.
These models take a bit longer (more turns) to solve problems so they feel a bit slower but the end result is often just as good or nearly as good. Because they're so cheap you can easily run multiple sessions in parallel so it doesn't really matter that they're slower.
I've done a few experiments where I've split my terminal in 4, launched 4 clients (each with a different model, including Fable and GPT 5.6 Sol) and compared the output. For simple and medium complexity work open-weight models are incredible effective.
I can highly recommend the 10 USD/month OpenCode Go subscription. It offers pretty amazing value for the money and is a great way to experiment.
by LaurensBER
8/14/2026 at 12:57:03 PM
“ Open Source: We will release the weights in two weeks after launch, once safety evaluation and hardening are complete.”Cybersecurity capability might be nerfed
by maayank
8/14/2026 at 2:51:26 PM
We'll unnerf them, don'r worry.by nananana9
8/15/2026 at 9:34:29 AM
Will you? Have you done this to any previous model?by inigyou
8/15/2026 at 10:03:29 AM
Heretic?by leobuskin
8/14/2026 at 12:18:29 PM
You should try a better harness. Try pi, or ohmypi if you want a good OOB experienceby rattlesnakedave
8/14/2026 at 4:36:02 PM
what is a harness? The comments below are mixing IDE/ADE but other suggestions are purely terminal things and I don't get what their value is over just a terminal. Is a harness like a loop where it's just a vague thing that everyone nods about but everyone is nodding at something different?by weego
8/14/2026 at 5:31:43 PM
My understanding is that the harness is the set of function calls (or tool calls) that let the LLM interact with your codebase. It's independent of the IDE or CLI.The tool calls will be, among other things, something like ReadFile, RipGrep, PatchFile, Shell.
When people talk about the value of different harnesses, they're also implicitly talking about the quality of the system prompt.
The same exact model, when given a different set of tools and a different system prompt, can behave differently.
by jewel
8/14/2026 at 7:41:54 PM
The harness is the agent. LLM's can be asked to output things in JSON for example. The LLM then literally asks for things like "execute this cmd" or search/replace this string. The LLM outputs text, but in a deterministic format that can be parsed. The harness calls the LLM, exposes tools, executes tools the LLM asks for, gates tool use based on security controls. It's the runtime that the agent uses to do work.by computerex
8/15/2026 at 3:53:55 AM
Are the LLM and agent the same thing? Why different nouns ?by stogot
8/15/2026 at 4:30:37 AM
The LLM is the core model, but the harness has the prompts/tool definitions, guidance/recovery/correction code. The harness itself is the agent, because same model may perform vastly differently on different harnesses. Agent is the system working as a whole, harness+llm.by computerex
8/15/2026 at 8:06:56 PM
LLM is just the thing generating text. It can generate a book, an article, a paper or a conversation. It's the raw "autocomplete" mechanism. You give it input, it generates output.The agent/harness is the sotware that leverage this "dumb" autocompletion engine to do useful things by sending the good input to the model and doing useful things with the output.
by pjerem
8/15/2026 at 10:28:13 AM
LLM is the digital brain. Agent is a software robot with "sensors" (tooling to read data from files/web) and "actuators" (tooling to perform changes in the environment) that is based on the digital brain.by rl1987
8/18/2026 at 12:04:50 AM
think of it like the words "car" and "engine", one goes into the other and both have their impact on overall capacity, feel, performance etc. each in their own way. The llm is an engine, the harness is the rest of the car.by Grimblewald
8/15/2026 at 8:25:44 AM
A harness is the tooling around an LLM that uses its responses to do work. For example, let's say a harness sends your message to the LLM and the LLM emits a tool call - the harness is responsible for processing that tool call, executing the tool, and then sending its response back to the LLM to get more of its turn. The harness is responsible for keeping the conversation history to send back to the LLM each time it needs more completion. The harness is responsible for displaying the user interface that allows you to send instructions to the LLM or configure MCP servers or whatever. Claude Code is a harness, Pi is a harness, OpenCode is (technically) a harness, it's basically the LLM "client". The model is what generates the completions itself, but the harness is how you invoke it. And generally when people say "agent" they mean the harness hooked up to some model.by LoganDark
8/14/2026 at 5:34:52 PM
harnesss == thing that calls LLM API, acts on response, and maybe does that again.by kristjansson
8/14/2026 at 7:44:26 PM
Harness is a set of artisanal prompts.by Garpagan
8/15/2026 at 12:46:44 AM
You might be joking, but a harness provides much more than just the prompts: at a minimum, it provides the system prompt and the built-in tools that the LLM can use, but it can also provide things like subagent management, custom compaction logic, session forking, etc.by RussianCow
8/14/2026 at 9:54:13 PM
isn't that more what a skill or mpc are?by mxmilkiib
8/15/2026 at 12:30:51 AM
It’s a new buzzword where everyone says it but means entirely different things. You can use it to sound smart whenever there’s a conversation about how you’re not extracting value from your coding agent and also when you are extracting really good value. Very flexible term!by tchalla
8/15/2026 at 9:40:26 AM
No it actually means a thing. A harness is the loop while(true) {command = ai.prompt(response); response = run(command);}by inigyou
8/14/2026 at 1:38:35 PM
I'm gonna shamelessly plug my own here :) https://dirge-code.github.io/by yogthos
8/14/2026 at 1:49:06 PM
I like it.I think creating your own agent is the Hello World of agentic coding. Instead of Rust, I used D for mine.
by Shorel
8/15/2026 at 12:17:51 AM
I get hung here on Debian 13 after installing rustup and doing rustup install stable.Building [=======================> ] 610/611: dirge(bin)
Just hangs there :(
by johng
8/15/2026 at 4:29:09 AM
might just be slow, it can take over 5 min to compileby yogthos
8/14/2026 at 2:26:43 PM
That actually looks niceby anentropic
8/14/2026 at 12:54:13 PM
I’m in the Claude code harness for everything boat too. What are the alternatives?by gigatexal
8/14/2026 at 12:57:37 PM
What the person above is suggesting:(no personal opinions of either, links might be useful)
I think that OpenCode is nice, their CLI version is enjoyable and their desktop/web version is okay:
I also quite like driving OpenCode through something like Kepler / Paseo and tools like that (with those I can still use my Anthropic Condition by Claude Code being treated similarly - as something that gets tasks dispatched to it, while the GUI I see is Kepler / Paseo).
On the desktop side, ZCode was surprisingly usable for something that came out of nowhere (I wasn't aware of it at all before trying out the GLM Coding Plan): https://zcode.z.ai/en
by KronisLV
8/14/2026 at 3:00:03 PM
Last time I tried some of these, none of them had the "manual mode" that CC has, where it shows you change by change as diffs and you can edit them before accepting and moving on to the next change. I like that because if it's going off pattern I can spot it early on and guide it correctly, instead of having to review the whole completed diff at the end when it's too late. I should spend the weekend checking them out again to see if they added that but I assume with everyone going full agent mode they probably didn't.by vadansky
8/14/2026 at 3:56:07 PM
Both Pi and OpenCode let you customize them. You tell the AI you want "something like claude code manual mode", and they'll modify your configs to do the same thing, or build an extension for you(however, it's much faster to use Plan Mode to build a plan of what it will do, and then execute the plan in Build Mode. you can also have the AI make a script that will be executed deterministically)
by 0xbadcafebee
8/14/2026 at 3:33:36 PM
The philosophy with Pi is it is minimal (but functional) out of the box and easily extensible. I'm not familiar with that feature but I would not at all be surprised if someone already coded a Pi extension that does it.by eli
8/16/2026 at 11:03:55 PM
The out of box experience of omp.sh is wow imo so much nicer than Claude. Claude spends too much time being nice and gassing me Up and omp just gets to work. It’s idk smarter like a far better system prompt and all around loop.Gonna try to find a way to use this at work.
by gigatexal
8/17/2026 at 8:44:13 AM
By the way is anyone running any security / audit / exfil tests on these open harnesses?Like a VPN id kinda like to know? I’m happy to help fund a crowd source campaign for it.
by gigatexal
8/14/2026 at 4:08:34 PM
No one in their right mind would install software using `curl | bash`by badcafe23423435
8/14/2026 at 6:36:14 PM
I feel the same, which is why I only use these tools in a docker container. Because life is compromise.by schaefer
8/15/2026 at 12:24:36 AM
Why not? The web uses TLS, how's it different security-wise compared to a package download?by cjbprime
8/15/2026 at 6:04:06 PM
It's less about malicious intent and more about predictability.When I install software on my computer with apt, I trust that all the files will go to the right place and install scripts are going to do sane things relative to the rest of the system. And I can just uninstall the whole thing with one command later if I so choose.
If I curlpipe a script, I get none of those guarantees. I have seen curlpipes that put files in weird places, guess the wrong OS, and mess with config files that I didn't want them to touch. When they break or I want to uninstall, I have to sit down and understand a (possibly minified) script to clean things up manually.
Yes containers are a half solution to this, no I don't want to use containers 100% of the time.
by bityard
8/14/2026 at 11:34:21 PM
its a good way to check if people are insane though. would be a cool tactic for new hire evaluation, monitor them setting up dev environment. do the curl | bash, and its instafailby redeeman
8/15/2026 at 4:35:37 AM
In countless corporate environments (including in highly regulated industries), far from being a firable offense, piping curl to bash is often a prescribed step in setting up the standard dev env. The cognitive dissonance is soul crushing. Maybe they're testing for one's ability to tolerate it.by chrisweekly
8/14/2026 at 1:21:55 PM
T3 Code has been amazing. Completely free. Really impressed with the desktop app and the mobile app experience and the way it works seamlessly has me actually accomplishing tons of stuff while I'm out on mobile that I would otherwise have to wait to come home for. First time in a while I'm actually excited to use a desktop UI instead of the terminal. Blows away the official Claude Code mobile app. I can switch between my Claude and Codex monthly subscriptions in it as well. There's a TestFlight beta SwiftUI mobile version that's so much nicer than the one in the App Store. I'm running the nightly version of the desktop app.And this is coming from someone that's not particularly a big fan of Theo. T3 Code should get more recognition; people aren't just aware of it yet.
by rob
8/14/2026 at 1:03:12 PM
ArtificialAnalysis puts out benchmarks for harnesses now as well, and OpenCode seems to be winning it. https://artificialanalysis.ai/agents/coding-agents#coding-ag...I only found this yesterday, and it inspired me to start testing out OpenCode.
by aqme28
8/14/2026 at 3:13:24 PM
Just a warning, this is on Opus. There's not a clear harness winner. It will change depending on the models.by vitorgrs
8/14/2026 at 1:23:41 PM
I'm not surprised to also see Cursor above Claude code, their harness is very good.by dmix
8/14/2026 at 1:29:36 PM
In what scenarios?by leobuskin
8/14/2026 at 3:13:57 PM
It indexes the code efficiently, seems to find stuff quicker, it has a very nice UI (much better than Claude Codes IMO), it has a nice sub-agent UX which I find triggers more reliably, diffs render nicely. Otherwise it just seems to work in a purely vibes sense.That said Claude Code is perfectly fine. I just prefer the integrated experience of using Cursors since I already use VSCode, but I still mostly use Claude Code because of their Max/Fable plan.
by dmix
8/14/2026 at 1:30:08 PM
Can OpenCode dispatch background subagents yet? I tried it a week ago and saw nothing. This is 99% of my workflow at this point.by bensyverson
8/14/2026 at 1:46:30 PM
Having just "asked" my opencode instance-- Yes, but it's behind an experimental flag and not necessarily feature-complete.by aqme28
8/14/2026 at 3:03:47 PM
In the new v2 beta, yes. Major QoL upgrade, so much less sitting around waiting.by jauntywundrkind
8/14/2026 at 3:23:57 PM
The v2 branch of OpenCode has not been touched for months, if it's beeing developed then I don't know where.by flanked-evergl
8/14/2026 at 4:34:59 PM
this is very easy to check. i promise i'm not tricking you and just uploaded this. https://github.com/anomalyco/opencode/tree/v2this is the integration branch for https://opencode.ai/v2 . it has been for months. it's where the Effect-based refactor has been landing.
by jauntywundrkind
8/14/2026 at 11:02:53 PM
sorry, I was mistaken! I looked at https://github.com/anomalyco/opencode/tree/2.0by flanked-evergl
8/14/2026 at 2:19:08 PM
[dead]by arational
8/14/2026 at 1:21:33 PM
If you like running everything in a VM and using a web browser as your UI, Shelley is very good: https://github.com/boldsoftware/shelleyIt works nicely in the browsers on my tablet and phone, too.
On exe.dev you can ask it to customize itself, and it will automatically rebase your customizations when upgrading to a new release.
by skybrian
8/14/2026 at 1:47:48 PM
I think that writing your own harness is a rite of passage now, just like writing your own search engine or database, rolling your own crypto…Anyways, please try mine!
by schmuhblaster
8/14/2026 at 7:29:25 PM
eventually we will get to “just use postrges” stageby DenisM
8/14/2026 at 1:02:41 PM
https://github.com/tontinton/maki is tackling the right issues IMO. not sure how they compare with the restby nextaccountic
8/14/2026 at 5:52:08 PM
It’s not just bloat at this point. I run oMLX and run models locally. using Claude code on the first message dumps 40k of tokens that my laptop takes 5 mins to compute.I’ve stopped using it completely now.
by vorticalbox
8/14/2026 at 11:51:34 PM
Did you build you own harness? I would miss skills and all the ecosystem if I did the same no?by gigatexal
8/15/2026 at 5:41:55 AM
[dead]by ziiinq
8/14/2026 at 2:46:30 PM
Piggybacking on this thread to ask my question: What are alternatives that are multiplayer (team oriented) by default? For example, I want my team to see all my sessions easily, vise versa. another way of stating: all the agents are running in a container that that any member of the team can view and interact with.by jpadkins
8/14/2026 at 2:51:40 PM
Mine is a WIP for automation but has similar concepts to what you're looking for: https://github.com/rush86999/atomby rush86999
8/14/2026 at 1:15:37 PM
thank you all! got something to tinker with this weekendi like to challenge my assumptions and try new tools
by gigatexal
8/14/2026 at 1:23:51 PM
Just as a +1 anecdote. I enjoy using pi a lot. I used to h think the harness matters a lot but with the current iteration of models I am starting to sway that while it matters it’s less and less important and that CC is bloated. I did some quick tests when I switched and a task that would take $5 in tokens would be completed in $0.50 in pi. Very anecdotal and I don’t have a test framework setup to make this very official but increasingly felt like CC was spinning its wheels on the easiest of tasks.by infecto
8/14/2026 at 3:20:45 PM
are ohmypi and pi related?that's a very compelling use case, thank you
by gigatexal
8/15/2026 at 12:25:04 AM
Yes, ohmypi is an opinionated set of features on the base pi harness.by agentdev001
8/16/2026 at 2:35:51 PM
[dead]by yumosx
8/14/2026 at 1:56:04 PM
The token cost difference is pretty interesting. I wonder how much of that is the harness itself versus how aggressively each one loops, plans, and calls tools. A proper apples-to-apples test would be really useful here.by xabd
8/14/2026 at 1:05:48 PM
I’ve tried a bunch of them, and I seriously do not understand these recommendations. It was a rough road and a steep hill, but right now CC is absolutely the best harness on the market, as for me, whatever top tier model is under the hood (mostly, some of them, like DeepSeek, don’t fit CC at all).by leobuskin
8/14/2026 at 1:19:31 PM
Inversely I don’t understand the praise for CC. These days it feels like bloatware. It absolutely can get the work done but when I measure on token and time use it ends up being a multiple of pi like harnesses.CC works but for me it felt like increasingly they have zero incentive to make it a great experience. You hear folks like Boris talk about spinning up thousands of agents over night and agents chatting back and forth in GitHub issues and while I think it’s great from figuring out what the future looks like I don’t think it represents the reality of ROI today. So the folks building the tool are so disconnected I am simply not sure it’s a great experience anymore.
by infecto
8/14/2026 at 1:59:38 PM
So is the quantitative difference in token use the only difference or do you think there's also a different qualitat? I'm on CC only and immensely happy. Very productive both at work and privately and at work I average around $250 a month which probably means nothing but it's little compared to my salary.Is that the main concern though, cost?
by barbazoo
8/14/2026 at 2:05:24 PM
For me, at least it's that the newer Claude models seem optimised for one-shotting things, which is not what I want. As the amount of code per turn increases, I have a harder job keeping up and ensuring that it's doing what I want.That being said, I had to nope out of a similar thing from GPT 5.6 today, so it appears to be a US frontier lab issue. Claude is particularly bad though, as it produces far too much code even when I tell it not to, unlike GPT (and Kimi) which at least listen to me a little better.
More generally, I want a usable human review experience, and Claude code doesn't deliver that for me.
by disgruntledphd2
8/14/2026 at 2:10:29 PM
Quality is hard to measure and I would not say the concern is so much cost but the intersection of cost and time. Often I am jamming on something and I like being somewhat in the loop. So maybe same level of quality, I am using Anthropic modela for both harnesses, but I get to the output quicker and at a drastically lower cost.by infecto
8/14/2026 at 2:51:02 PM
It's buggier for me than it has ever been before. I don't think that agentic coding always leads to such a buggy mess. I just don't think that the Anthropic front-end software team is very good at agentic coding.by jazzypants
8/14/2026 at 11:54:41 PM
It might be time for the Anthropic devs making 500k a year plus more than that in options to actually write code again? I can’t believe that humans in meat space are reviewing all that code. Maybe that’s why Claude code is feeling a bit bloated and the models are a bit lacking of late is too much of the bot is writing the bot.by gigatexal
8/14/2026 at 2:03:05 PM
Funnily enough, I would say almost the opposite. CC’s feature set is basically table stakes for an agent these days (does it have ACP yet? Very close to behind table stakes if not) and it has a lot of bloat powering that.IMO part of it is that the underlying LLMs have gotten better enough that harnesses feel better even if they haven’t changed. I have a toy harness that barely implements the features you’d expect and it works surprisingly well. Like there’s literally nothing clever, it calls tools and that’s about it, and it still mostly does the right thing.
by everforward
8/14/2026 at 2:52:00 PM
Why would anyone ever need ACP? I'm not trying to be an asshole. I just seriously don't understand the value proposition.Edit: lol, I don't think ACP is even actively developed anymore. It seems to have been merged into another seemingly pointless standard with an even worse name, A2A. [0]
by jazzypants
8/15/2026 at 3:16:16 AM
I have been building and maintaining a coding harness, with help from the community https://github.com/vinhnx/VTCode. Hope you'll check it out.by vinhnx
8/14/2026 at 6:07:50 PM
You sound like I could afford that.by PeterStuer
8/14/2026 at 12:54:47 PM
what is this comment based on ? vibes?by dominotw
8/14/2026 at 1:47:43 PM
https://artificialanalysis.ai/agents/coding-agents#coding-ag...by scrollop
8/14/2026 at 1:33:14 PM
Based on the fact that Claude Code is only optimized for Anthropic models, whereas Pi and Omp are optimized for a wide variety of models, including open weights.by rpdillon
8/14/2026 at 4:27:09 PM
they are not really optimized for 'wide variety of models' . what optimization did pi do for glm 5.3?by dominotw
8/14/2026 at 5:10:47 PM
Tool calling success rate, in the case of omp.by rpdillon
8/14/2026 at 8:38:17 PM
Can't edit my post anymore, but here's the omp blog from February talking about improved tool calling rates across 15 models, with only the harness being tweaked to get the improvements.https://stencil.so/blog/the-harness-problem
Three GLM models are mentioned, but so is Deepseek, Grok, Minimax, Kimi, and Gemini.
by rpdillon
8/14/2026 at 1:01:46 PM
because not everything is a shilling advertisement?by makerdiety
8/14/2026 at 1:21:05 PM
Vibes like your low quality comment?What’s the counter argument? pi and ohmypi are pretty fantastic. Of course like all developer tools it depends how you do your work but I am not sure what you are trying to achieve in your comment.
by infecto
8/14/2026 at 4:26:10 PM
how would i comeup with counter argument if i dont know what original argument is. No one is disagreeing with your subjective experience, gp comment said 'better' without qualification.by dominotw
8/15/2026 at 3:29:02 PM
So what’s your opinion on the matter or is it just vibes?by infecto
8/14/2026 at 11:53:15 AM
They're invaluable for developers to fix their code. This is definitely an area where AI decisively beats human devs in a very valuable way. It can try so much surface area so fast.If it won't attack my stuff, it won't help me build my stuff to be secure.
by api
8/14/2026 at 12:01:29 PM
Exactly my CoT! I hope z.ai won’t change this behavior after training it on our input the same way as Anthropic did (shame on you, folks, seriously)by leobuskin
8/14/2026 at 12:49:48 PM
> after training it on our input the same way as Anthropic did (shame on you, folks, seriously)What do you mean with this? Honest question!
by darkwater
8/14/2026 at 1:01:22 PM
Fable wasn’t trained on github commits, let’s be fair.by leobuskin
8/14/2026 at 3:03:54 PM
Yes, I am tired of Claude and GPTs. I am ready to diversify my $300 per month on other vendors. Will try GLM. How was your rate limits and availability experience on $80 dollar plan?by bicepjai
8/14/2026 at 3:15:07 PM
It’s comparable to Anthropic usage, to be honest. 2x GLM agents ate 18% of weekly usage on this mid-tier plan within ~8 hrs (non-stop work, a lot of tool calls, appx 4 compactions each), I think. I didn’t make a proper statistics snapshot, sorry.by leobuskin
8/14/2026 at 8:23:12 PM
Outside peak hours (which are during Chinese daytime) I dont reach them with a single agent.by ma2kx
8/15/2026 at 3:09:07 AM
How are you using it in Claude Code? What is the native harness that GLM was post-trained in?by clbrmbr
8/15/2026 at 6:56:33 AM
That’s the first model that fits CC as it’s own, zero issues, but probably ZCode or whatever z.ai’s cli is.by leobuskin
8/14/2026 at 12:06:25 PM
> I understand that such models can be used by malicious actors, but it’s fair to have it publicly availableI feel like there should be some mechanism to prove you own the code/app/site/whatever and it will remove the guardrails from the LLMs allowing them to find and fix these vulnerabilities.
by jermaustin1
8/14/2026 at 3:30:46 PM
This is a "they have guns so we need guns" scenario.You can't guarantee everyone else will use a neutered model.
by fny
8/14/2026 at 12:22:08 PM
Impossible with source code, possible to bypass with app/siteby leobuskin
8/14/2026 at 12:51:40 PM
Don't we already do this with services like Let's Encrypt, which is arguably more sensitive? If you had the codebase you could fake it, but it would still provide some amount of protection against abuse.by doginasuit
8/14/2026 at 1:02:07 PM
With Let's Encrypt, all the verification is done on their side with them controlling the connection between themselves and whatever they're trying to verify.In this case, you can put whatever you want between the harness you're running (or modify the harness itself), and essentially "lie" to the model. Any verification technique would be fairly trivial to bypass, while you continue to run the harness locally.
by Someone1234
8/14/2026 at 7:29:14 PM
Yeah, for web apps, you can trick models by simply proxying it and pointing the models to that localhost. They then think they're not working on a live target.Have personally tested this with Opus and Sol and it works.
Classifiers are tricky though. Here's where open weights will win.
by glub
8/14/2026 at 12:58:36 PM
Isn’t this essentially what anthropic is doing, albeit in a manual fashion? They work with code owners to run mythos and find issues.by gdhkgdhkvff
8/14/2026 at 1:50:25 PM
Only if you're some big corporation with deep pockets. They actually accepted me into their cyber program but Fable's still locked down.by matheusmoreira
8/14/2026 at 7:20:13 PM
Code owners - no. Ultra wealthy code owners with connections, and a few peasants with popular projects, for public image.by glub
8/14/2026 at 2:27:41 PM
OpenAI now makes it easy to join their verified security program. Took me 5 minutes, and I was able to get GPT to do a full end-to-end pen testby BeanAndCookies
8/15/2026 at 12:51:59 AM
Doesn't that require a business account (so, actually, two business accounts since that's the minimum)?by SwellJoe
8/14/2026 at 7:22:36 PM
Is this about the new project Blue and Red thing? Or just pre-existing Trusted Access for Cyber program?I've joined TAC, but still have to dance around it.
by glub
8/14/2026 at 1:44:14 PM
How much usage do you get out of it per week? How many millions of tokens?Anthropic was stingy as hell with its Fable and cybersecurity nonsense, switched to OpenAI which is much better but still not enough. I'm tempted to switch again...
by matheusmoreira
8/14/2026 at 3:53:41 PM
On $80 plan 200M tokens ~20% of weekly usageby leobuskin
8/14/2026 at 2:06:28 PM
[dead]by czottmann
8/18/2026 at 5:54:12 AM
No no no, absolutely not. There's only one man that should be allowed these privileges, and his name is Dario. Dario alone can deliver us to salvation. The lord himself shalt smite these companies and models from this barren earth, and Dario will rise from the ashes to ascend to godhood. Dario. He alone has the power to decide what capabilities us mere mortals have access to.by uejfiweun
8/14/2026 at 1:28:41 PM
how do you configure claude code to use GLM ?by misiti3780
8/14/2026 at 1:55:39 PM
https://docs.z.ai/devpack/latest-model#switching-models-in-c...by leobuskin