7/14/2026 at 11:54:09 AM
This title is easy to misinterpret. If I understand correctly: Codex now encrypts sub-agent prompts and hides those prompts from the user.edit: originally was "Codex starts encrypting prompts, uses cyphertext for inference instead"
by niam
7/14/2026 at 1:11:17 PM
It seems likely to me this was driven by the `ultra` mode in 5.6, which fans subagents to do work. This mode was previously only available in the web UI (what was previously known as pro?)It seems possible they trained this by doing full RL rollouts of agents interacting with each other. They likely view these prompts somewhat the same as raw reasoning traces, they don't want people to train directly on them.
I am unsure if this has been confirmed, but there are some signs that the opaque "compaction blob" they return from their dedicated compaction endpoint might not be text at all, rather a latent space representation of the conversation. The fact that OpenAIs compaction seems to be much higher fidelity than a lot of other providers makes me inclined to believe this.
If this is true, it doesn't seem far fetched to infer that they might be applying similar techniques to prompting subagents.
I would be curious to see if this way of spawning subagents (encrypted blob) is used when subagents of a different model type is spawned.
by hansihe
7/14/2026 at 1:48:50 PM
"Latent space representation" I have been waiting for this moment in the evolution of AI. Well, waiting with some trepidation. It seems inevitable that frontier AI's will, at some point, leave behind human-comprehensible representations of language. Purely for functional reasons, it's going to start making sense for AI agents to communicate amongst themselves in much more efficient ways than borrowing the languages of flesh-bag humans as an interface medium.I Imagine next that programming languages, interfaces and API design starts going this direction next. Being written, expressed and optimized as blobs of high dimensional vector space. As humans we might still be able to understand some abstractions of what our AI's are talking about to each other, but maybe not more so then we understand how different regions of our own brain communicate with each other.
by tpurves
7/14/2026 at 2:08:24 PM
It has already started: zero-graph v1
origin source-text
module "hello"
hash "graph:a7f7e6899a73f3b4"
node #decl_ad8d9028 Function name:"main" type:"Void" public:true fallible:true
node #param_4610ae76 Param name:"world" type:"World"
node #expr_c403020c MethodCall name:"write" type:"Void"
node #expr_653eeb6e Literal type:"String" value:"hello from zero\n"
edge #expr_c403020c arg #expr_653eeb6e order:0
https://zerolang.ai/
by mparramon
7/14/2026 at 2:00:49 PM
I've been thinking the same! HahaEven for like token efficiency it could make sense - like imagine if the representation were more compact
Agents acn already translate languages quite well. It doesn't seem crazy that they could work and think in a model specific language, and then translate back to English or something for the user
by karma_daemon
7/14/2026 at 1:55:03 PM
I strongly believe that the future is the other way. New programming languages and environments designed for strong auditability and preventing bugs will dominate. Only bad actors will use latent space representation, and it might even be outlawed. But the bad actors will proliferate underground…I actually built such a language: https://magarshak.com/U.html
by EGreg
7/14/2026 at 2:09:59 PM
Every time a state tries to regulate, it loses to the states that promote instead. Seems to be a better evolutionary strategy.by mparramon
7/14/2026 at 2:24:14 PM
is that called rust? that is the only thing i feel safe to let agents vibe codeby michaellee8
7/14/2026 at 4:00:50 PM
Is it really more efficient? Any token becomes huge in latent space.by nextaccountic
7/14/2026 at 1:56:11 PM
Google's AI just created its own universal 'language' (2016)by TowerTall
7/14/2026 at 3:16:50 PM
That's not really a language. It was just a reporter dumbing down the idea of "vectors in latent space" which eventually became LLMs.by StilesCrisis
7/14/2026 at 2:57:48 PM
It seems like the most efficient method would be for LLMs to communicated by exchanged latent space representations directly. Serial language is a incredibly inefficient way to encode these, a lot like flattening a complex graph into text.by UltraSane
7/14/2026 at 1:33:06 PM
I think you hit the nail on the head here. Having subagent dispatch in the loop for RLVR is something we've already seen in open models, like Kimi K2.5 and later, so it's no great stretch to assume OpenAI are doing it too.If you keep RL'ing the dispatch then the prompts are likely to keep diverging from the type of prompt a person would write (like CoT becoming increasingly incomprehensible), and that divergence is part of their competitive advantage.
> rather a latent space representation of the conversation
Student/teacher models derived from the same checkpoint convey a lot of latent information through token choice, as in: https://techxplore.com/news/2026-04-ai-chatbot-student-owls....
I wonder if this is something they can take advantage of by training on compaction inside of the RLVR loop?
by wren6991
7/14/2026 at 3:00:32 PM
> It seems possible they trained this by doing full RL rollouts of agents interacting with each other. They likely view these prompts somewhat the same as raw reasoning traces, they don't want people to train directly on them.this tracks. anthropic protects these as well iirc.
> I am unsure if this has been confirmed, but there are some signs that the opaque "compaction blob" they return from their dedicated compaction endpoint might not be text at all, rather a latent space representation of the conversation.
probably not a latent (to my knowledge latents aren't really part of the outer loop in ar-transformer inference processes), but maybe non-human-readable reasoning traces as occurs in fable.
by a-dub
7/14/2026 at 4:54:03 PM
That’s actually what got me to switch and use Codex sometime beginning this year, the compaction via these encrypted blobs was just waaaay better than Claude. I had short convos with Claude where it would forget something very obvious and important few million tokens into a task, whereas I reached ~1B tokens in some local codex sessions and it was recalling and paying attention to things I mentioned way back at the beginning of the session (and not persisted anywhere else in the repo/md files etc)by radicality
7/14/2026 at 2:36:21 PM
If there is no visible prompt at all, then that is very understandable. The PR issue exposes a real gap though: subagent spawns need a human-readable audit trial, of its goals/intent, its boundaries and scope and limitations, etc; for basic responsible agentic harness functionality.Hopefully they can add that.
by dannyw
7/14/2026 at 2:40:11 PM
> Hopefully they can add that.Add? Just make the sub-agents input prompt not encrypted, change "encrypted: true" to "encrypted: false" everywhere and everything continues to work as it used to (simplified, but you get the idea).
They need to fix the regression, not add something new here.
by embedding-shape
7/14/2026 at 4:17:09 PM
This sounds most logical to me.by alansaber
7/14/2026 at 2:12:30 PM
> latent space representation of the conversationand how would you load that back into the model? they are token-in, token-out, plus the KV-cache which is derived from token-in
by dist-epoch
7/14/2026 at 2:59:22 PM
They are not really token-in token-out per se, they are embedding-in embedding-out.When operating on text, you embed each token into the LLMs embedding space. You go from a discrete token to a point in embedding space.
Likewise, when processing images, you have a image embedding model which produces a set of embedding vectors representing the contents of the image in the LLMs embedding (latent) space.
This same concept can be extended to compaction. Instead if limiting yourself to discrete tokens, you could generate a set of embedding vectors which represent the contents of the compacted conversation in latent space.
These have the possibility of containing a lot more semantic information per vector, which is why this can be appealing.
A big downside is decreased interpretability. AI safety people are generally fairly opposed to latent space reasoning for example, it can be harder to tell what the model is actually doing and if it is trying to deceive you.
by hansihe
7/14/2026 at 1:34:53 PM
It's sort of insane though, you not only have dozens/hundreds of stochastic agents running on your machine, but you cannot even inspect the instructions those agents are working off of?I've gone in to look at Claude subagent/workflows and sometimes been like "no this was a mistake to spin up" ... Codex users just get to token yolo the encrypted telephone operator instructions+shell from orchestrator to subagents?
by themgt
7/14/2026 at 1:50:20 PM
>but you cannot even inspect the instructions those agents are working off of?It makes more sense when you realize they don't want developers to be doing any coding at all. That's what they seem to be moving towards. From product manager to product via AI.
by djeastm
7/14/2026 at 2:54:52 PM
Last stage is moving everyone to their cloud platforms, they deploy everything for you, you don't even get to see the code, just the deployed end product.Because letting you look at the code would be too dangerous, you could reverse engineer an exploit to another product! Or distill their internet-distilled model!
But don't worry, at least it will be very convenient.
by tempaccount420
7/15/2026 at 6:28:18 AM
They’ve already succeeded at that. My time spent manually writing and editing code must be down 99% post Opus 4.7.by solumunus
7/14/2026 at 1:48:22 PM
You already have an agent freely doing stuff on your machine. Subagents prompts are a weird place to draw a line. It's not like you're reading everything the agent is doing in any case, let's not kid ourselves.by Jean-Papoulos
7/14/2026 at 1:53:01 PM
When things go wrong I very much read the session traces to figure out what in my prompt wasn't good/explicit enough, then retry to evaluate if it would have helped.I was about to do the same with Sol + Ultra, but then discovered this encryption issue that prevents me from doing the same for sub-agents.
by embedding-shape
7/14/2026 at 1:59:02 PM
> It's not like you're reading everything the agent is doing in any casePersonally I do, these tools aren't mature enough to be used without supervision
by realusername
7/15/2026 at 2:24:48 AM
> You already have an agent freely doing stuff on your machineNo. Agents run in VMs. Assume anywhere you’re running an agent will be compromised, because eventually, it will be.
The only reason most people haven’t is luck, they didn’t happen to install Axios or Tanstack at a certain time.
by halfcat
7/14/2026 at 12:28:20 PM
I imagine this will be because a decent chunk of the IP in Codex is probably within its prompts, how they're built, and how they're sequenced and orchestrated, rather than in the codebase per se.We had this discussion a few months ago where we talked about allowing people to choose an AI provider and provide their API key, thinking about enterprises with "preferred" (read: mandated) AI suppliers. We also wanted to offer the kind of very simple pricing that this is one way of enabling. But we realised pretty quickly that this would/could lead to leaking our back end prompts to customers and, although those prompts are only a part of the value add, if you could build a detailed trace of them then you'd be able to relatively easily reverse engineer a lot of what we're doing.
So we quickly dropped that idea.
by bartread
7/14/2026 at 12:49:06 PM
I'm unable to understand how much value can be in low-definability non deterministic prompts. It feels like the kept the right divinity spell into a chest.by agumonkey
7/14/2026 at 12:52:17 PM
I don’t disagree with your divinity spell comparison but unfortunately there is a lot of value in the prompts because these spells are the “programming languages” of LLMs.by hnlmorg
7/14/2026 at 1:10:51 PM
yeah i get it too, i'm just flabbergasted that this is today's marketit reminds me of the pre-vulkan game programming days.. drivers were black boxes, game developpers had to resort to magic tricks to do stuff, until everybody got fed up and wanted some logical ground to operate
by agumonkey
7/14/2026 at 1:46:10 PM
It's a brave new world, etc., isn't it?One does find oneself slightly askance at one's own thinking sometimes, that's for sure.
But I suppose, is it really so different? I mean, back in the day moreso than now, a lot of the valuable IP in any system was in the design and specification of that system - the problems usually solved within the design and specificaion (use X algorithm, etc.) - and the code was "just" the implementation of those solutions.
So perhaps it's more of a regression in some ways: the value is in the specification (the prompt) once again.
Your point about stochastic behaviour is well made though, and there is no way to 100% guarantee or formally verify the behaviour of a system that relies on an underlying technology whose behaviour is fundamentally stochastic.
by bartread
7/14/2026 at 1:48:23 PM
Further proof that this tech stack is immature and would have needed to bake for a more years.In an ideal world this would have been public tech like ARPANET or WWW and there would have been 2-3 major iterations (until the equivalent of Claude 7-8) and only then would everyone have tried to build huge businesses on top of it.
I mean, sure, it's sort of usable, but the churn is insane. And we're burning the planet (and probably the economy, too) for it.
by oblio
7/14/2026 at 2:55:53 PM
Compared to burgers, it's a rounding errorby literalAardvark
7/14/2026 at 1:08:51 PM
> understand how much value can be in low-definability non deterministic promptsWhen was the last time you used an LLM to evaluate how true those last part(s) still are?
I also love how you went from "I'm unable to understand" to "This is surely right", it's a good representation of the software ecosystem at large :)
by embedding-shape
7/14/2026 at 12:30:59 PM
the trick about agentic systems is definitely how to do the prompting. things like automation and sandboxing are trivial in comparisson. if you generally ask via API model directly you can see what basic answers it actually yields and how fine tuning prompts and refinements to output as well as adversarial prompts etc are important to get relatively solid results.a lot of expertise of certain domains' workflows is needed to make it functional within that domain. some of this can be yielded via prompting too etc so its also baoance of how much to prompt it vs. how much of it you wanna let it reason over itself. (if you tell it too much i lock it into a path and if you tell too little it will give incomplete results )
by saidnooneever
7/14/2026 at 12:32:21 PM
Perhaps AI providers should support this natively: the customer supplies the API key but doesn't get access to the transcripts.by dmurray
7/14/2026 at 1:41:45 PM
I don't know how you'd enforce that unless it was something you could mandate at the level of the API call, and then the API call is rejected if the customer hasn't configured it for "no transcript".It sort of feels like an area of friction even still.
by bartread
7/14/2026 at 2:11:04 PM
I was thinking of an API key that was scoped both to a specific customer and a specific service provider (perhaps both have to do something to provision it).Billing goes to the customer, debug logs etc go to the service provider.
by dmurray
7/14/2026 at 12:53:34 PM
Yeah I thought "wow, some homomorphic encryption* stuff", but then "nah, usual greed".by imhoguy
7/14/2026 at 12:56:22 PM
The title was fixed like 40 minutes ago, when you come back to old browser tabs you probably want to hit that reload button before leaving a comment ;)by embedding-shape
7/14/2026 at 3:02:28 PM
Unnecessarily snide remark for someone just commenting on their interpretation.by ofjcihen
7/14/2026 at 3:06:28 PM
At that point 50% of all comments were about the title and it had been updated almost a whole hour before parent made their comment. Sorry for being low on patience.by embedding-shape
7/14/2026 at 12:44:45 PM
It's also not the first time Codex started encrypting stuff. Their excellent compaction endpoint has served up a giant encrypted blob since at least five months ago.by postalcoder
7/14/2026 at 1:25:29 PM
Feels strongly like we're in the late-stage-AI-unicorn phase. If this is really their moat then the Chinese companies will win.by hyperbovine
7/14/2026 at 2:01:14 PM
> If this is really their moat then the Chinese companies will win.I already switched to a Chinese provider personally, I don't think the difference between both really justifies the wide gap in pricing
by realusername
7/14/2026 at 2:23:29 PM
> I don't think the difference between both really justifies the wide gap in pricingI'd be ecstatic if this was true, but nothing so far comes close to the SOTA models from OpenAI + highest reasoning, but I'd be more than happy to be proven wrong by testing it out myself.
So far, I've tried MiniMax M3, GLM 5.2, Hy3, MiMo-V2.5 (+ Pro), DeepSeek V4 Pro (+ Flash), Gemini 3, Kimi K2.6, GLM 5, all the various Qwen variants and probably a bunch more I forget about, in a wide array of harnesses (Codex, pi, opencode, my own and more), and still nothing seemingly comes close to GPT 5.5 (now 5.6) xhigh for tasks beyond 5-10 minutes of work, they all more or less collapse after a while in my experiments. Although most of those do work well for really tightly scoped tasks.
What specific model are you thinking about here, in case I've missed testing it?
by embedding-shape
7/14/2026 at 2:31:57 PM
I'm using Kimi 2.7 and GPT 5.5 at home, Opus (4.8 I think) at work and I really don't see much difference honestly.Sure, Claude might be 90% correct and Kimi only 70% correct but does that matter when 90% isn't enough to make it work autonomously anyways?
My workflow is just strict supervision of what's happening, I also edit the agents file with anything I see the model doing that I don't like.
My sessions are also short, after any task which is completed, I just kill the session and start a new one so I don't think I have more than 15 min sessions unless it's tech discovery.
by realusername
7/14/2026 at 2:35:30 PM
> Sure, Claude might be 90% correct and Kimi only 70% correct but does that matter when 90% isn't enough to make it work autonomously?Huuh, what does this mean? GPT models frequently do 100% of what I tell them to do, anything less and I'd see no point in using agents for work at all. Do you tell them stuff then 30% of the cases Kimi goes off and does other things, or what do you mean? The time the agent does something unexpected, I can almost always trace it back to me fucking up something in the user prompt, or the system prompt being wrong somehow, I'd lose my mind if it was only "70% accurate".
> My workflow is just strict supervision of what's happening, I also edit the agents file with anything I see the model doing that I don't like.
Same, including inspecting exactly what the (full verbatim) sent system/user prompts are, which the change we're all discussing here is getting in the way of.
But "Kimi only 70% correct" sounds like it's so bad it's not worth using. In my testing, I didn't find that the model just went out and did other things, but all the providers I tried were way slower than even Sol which is kind of slow to begin with, and it's really inefficient with it's thinking. Tasks that took Sol five minutes could take 15 minutes with Kimi for example, which just feels like such a waste too.
by embedding-shape
7/14/2026 at 2:44:34 PM
> Huuh, what does this mean? GPT models frequently do 100% of what I tell them to do, anything less and I'd see no point in using agents for work at all.I never managed to have this experience even with SOTA models, they routinely make architectural mistakes, wrong assumptions and take shortcuts they should not take. Less for sure but they still do it often. I didn't try Fable yet though so can't comment on it.
So based on that, since I have to watch everything they do anyways, why would I pay extra?
> But "Kimi only 70% correct" sounds like it's so bad it's not worth using
If you want an analogy, it's like the numbers of 9s in server availability and since currently I'd rate nothing above 90%, it's zero nines. Since I have to deal with unreliability with every provider, I don't see why it would be worth it to pay more to still deal with it.
by realusername
7/14/2026 at 2:50:37 PM
> I never managed to have this experience even with SOTA models, they routinely make architectural mistakes, wrong assumptions and take shortcuts they should not take. Less for sure but they still do it often. I didn't try Fable yet though so can't comment on it.Ah, you let them make architectural decisions? :P That might explain it. Agents for me are more like pair-programming or just "what types the code", all the design and decisions are made by me, so if those are wrong, it's my fault. The agents are just used to implement what I've decided to have implemented, and I can't remember the last time codex did a mistake without correcting itself, or made a wrong assumption or taken shortcuts, unless I explicitly told it something that lead to those things.
> So based on that, since I have to watch everything they do anyways, why would I pay extra?
Personally I pay more to have to fix less later, and for a piece of mind that if I ask it to do X, it doesn't go off and do Y.
by embedding-shape
7/14/2026 at 1:44:22 PM
This and the overly stylized model names. Mythos? Sol? Please, it's another version bump.by anon373839
7/14/2026 at 1:50:12 PM
Anthropic at least is consistent in their naming. They're all literary genres, ever bigger ones.by oblio
7/14/2026 at 2:57:37 PM
OpenAI's are all unnamed or suns, so it's kinda the same picture.by literalAardvark
7/14/2026 at 4:21:48 PM
> OpenAI's are all unnamed or suns, so it's kinda the same picture.Umm, no:
> GPT-1, GPT-2, GPT-3, GPT-3.5, GPT-4, GPT-4 Turbo, GPT-4o, GPT-4o mini, o1-preview, o1-mini, o1, o3-mini, o4-mini, o3, o3-pro, GPT-4.1, GPT-4.1 mini, GPT-4.1 nano, GPT-5, GPT-5.1, GPT-5.2, GPT-5.4, GPT-5.4 mini, GPT-5.4 nano, GPT-5.5, GPT-5.5 Pro, GPT-5.6 Luna, GPT-5.6 Terra, GPT-5.6 Sol
Besides the constant shifting of nouns and adjectives...
Luna is the Moon and Terra is Earth.
by oblio
7/15/2026 at 8:47:08 AM
Unnamed or celestial bodies then. That was a fine nit to pick.The rest just aren't names, they're designations at best
by literalAardvark
7/15/2026 at 9:29:29 AM
... so Anthropic is more consistent with their naming and we're back to square one in this conversation.by oblio