#codex-discussions

1 messages · Page 10 of 1

boreal holly
#

Gotcha, Switch works just as well!

exotic cave
#

How to set agents model and reasoning level?

#

In the CLI.

desert junco
exotic cave
#

Does this control subagents?

desert junco
exotic cave
#

I explained it wrongly. How can i be sure that the subagents spawn with the main agent reasoning and model?

steady vigil
#

something new in 106? Didnt notice this before

desert junco
nocturne folio
#

gpt4.5 is now a year old

sleek spoke
simple star
#

106 is out??

kind jay
#

Why don't they use codex to port codex app to windows?

simple star
#

They are

#

But they probably run out of tokens

orchid plume
#

from what I understand though, I've heard it's something to do with them not being happy with the sandbox for Windows

dense mason
#

is it just my codex that got really slow after the latest update?

orchid plume
#

I did get the Codex app on the Microsoft Store to work in the end (no longer show the "update required" notice), but either it's an old version or the Windows version of the Codex app is missing stuff. In the UI there was no automations section. I could not find a way to access the Settings UI either (like change the theme from light to dark etc). Converting the .dmg image is still superior

sleek spoke
orchid plume
#

well, codex did, I'll get it to explain what it did, one moment

orchid plume
# sleek spoke how did you get it to stop showing update required?

this is what it said it did:

â€ș Ok it's working now, what was the final fix

‱ Final fix was a 2-part workaround:

  1. I blocked ab.chatgpt.com in C:\Windows\System32\drivers\etc\hosts so the app couldn’t fetch the remote experiment assignment that kept forcing the sunset gate.
  2. I patched Codex’s local LevelDB Statsig cache to set gate 2929582856 (the “Update required” gate) to false.

  Before the host block, the app kept rewriting the cache back to true on launch; after blocking ab.chatgpt.com, the local override stuck and the app opened normally.
#

I'm going to guess "ab" is related to something to do with A/B testing, and it could be that for accounts which were invited they get the expected value from ab which then doesn't say "update required"

sleek spoke
#

LOL, brilliant

#

Codex hacking itself open

orchid plume
#

yeah, it was interesting, not sure if I'd go as far as to say "hacking" but at least it allowed me to briefly check out what I might be missing

#

if this is the current state of the actual Windows app then I'm not missing a lot

sleek spoke
#

interesting, thanks

steady vigil
brittle stratus
#

anyone wishing for undo/rewind in codex cli? âȘ âȘ âȘ

torpid trout
#

No please
Either use git or nothing

#

Undo in app is so catastrophically bad I don’t want that same garbage in CLI

stray swift
# kind jay Why don't they use codex to port codex app to windows?

People outside OpenAI have done that from the Mac .dmg file. But it's badly sandboxed. Someone in this channel reported that a Codex produced that way rendered their personal machine unbootable, by screwing with registry settings. So best to wait until it's professionally sandboxed, unless you really know what you're doing.

brittle stratus
#

Also, I am not using the app, can you tell me why is it so bad? Is it actively hurting your efforts even without using it?

torpid trout
#

It’s just extremely buggy in the to back feature - I had used it onxe and it created an irreparable total mess of past and present code.

boreal holly
boreal holly
brittle stratus
torpid trout
#

Git is already helpful.

I don’t feel an AI should manage git or do what it does. Not right now at least

Keep fancy „click behavior“ in app app or use gitkraken

#

GK for example does an amazing job at visual git

brittle stratus
#

But it's still quite helpful

#

The problem is with multiple edits in a timeline. I think we can easily replicate what Claude Code is doing, which is different than simple Git patches

hard tulip
#

so did anyone figure this out

#

the link goes no where

cedar skiff
#

does reinstall work?

boreal holly
# brittle stratus i think Antigravity suffers from similar issues

I already posted a comment on the issue about a viable alternative. Basically in order for undo to work properly, it has to apply the negative of every single patch ahead of the one you're rewinding to and reapply the forward patches, assuming the agent didn't use stuff like sed to edit a file where a patch would be applied. If it's undoing all patches up to a certain point there's no forward pass. But that also falls apart if you move a thread into a different worktree or something. It's a really brittle way of doing it. But if you treat every single code change as a commit with a stable identifier you can rebase anything, including sed edits by the agent, and eventually squash the changes if you don't want a noisy branch. I just think Codex rolling its own separate version control on top of git is a little funny

hard tulip
boreal holly
# hard tulip nope

maybe npm i -g @openai/codex@latest, go to where the codex binary is installed via npm, copy it into %APPDATA%\local-roaming(or whatever windows does)\Codex\codex

orchid plume
lapis solstice
orchid plume
#

strange, not had that situation

lapis solstice
#

let me try to reinstall

orchid plume
#

this is what you should see if you manage to bypass the update required notice on the Codex app in the Microsoft Store

hard tulip
mild pendant
#

work with Codex

high girder
#

are you guys using an official release of codex for windows or a port?

hard tulip
orchid plume
# high girder are you guys using an official release of codex for windows or a port?

this is from the Microsoft Store, it's an app there. However by default it looks like it's either deliberately locked out so people can't use it (update required notice) or possibly is genuinely not up to date. I have a feeling it's the former and only those invited can actually use it. However this update required notice can be bypassed

hard tulip
orchid plume
#

strange, that's what Codex claims it did

#

I'll ask again for more detailed info

high girder
#

Oh, I'll just wait a bit more then. My port works still, so I'm not worried

orchid plume
#

yeah honestly I'd suggest the .dmg port option right now because it has more functionality

orchid plume
# hard tulip I did both of thoes things and its still not working at all. and the Codex’s Lev...
‱ Here’s a slightly more technical version:

  Technical workaround that fixed it for me:

  - Root cause: Codex desktop checks a Statsig gate (`2929582856`) in webview bundle (`index-*.js` via `useGateValue("2929582856")`). If true, it renders
  the “Update required” screen (`appSunset`) and link to `https://go/codex-desktop`.

  - Local cache path:
    %LOCALAPPDATA%\Packages\OpenAI.Codex_2p2nqsd0c76g0\LocalCache\Roaming\Codex\Local Storage\leveldb

  - Keys involved:
    - `_app://-\x00\x01statsig.cached.evaluations.2173843016`
    - `_app://-\x00\x01statsig.cached.evaluations.3625394933`
    - `_app://-\x00\x01statsig.last_modified_time.evaluations`

  - I parsed the cached `outer JSON` (`source`,`data`) and inner `data JSON`, then forced:
    `feature_gates["2929582856"].value = false`
    (also set `rule_id = "local_override"`), wrote both keys back.

  - Problem: app kept overwriting cache from network on launch (`source` flipped back to `Network`, gate true).

  - Final step that made it stick:
    add `0.0.0.0 ab.chatgpt.com` to hosts + `ipconfig /flushdns`,
    then patch the two cached eval keys again and relaunch.

I hope that helps and works

jade crater
#

After reinstall ...

jade crater
lean lark
#

In other news, I'm stuffing my face with Fritos while Codex is writing new code to my extensive specs. This feels so wrong. I mean, I'm gonna review the code and do my part n all, but ... I'm feeling like such a slacker at this moment. Just sayin...

quaint hazel
#

Apparently there is a 120s timeout on MCP calls, any way to make those infinite?

For context I created a swarming skill that loads Codex MCP into Codex for infinite agent spawning

boreal holly
quaint hazel
#

Legend

#

@boreal holly where to add that? Getting an error when adding it to the top-level

boreal holly
#

you gotta put it under each mcp_server config

quaint hazel
#

Aaah niiice!

lavish geode
#

I noticed usage limits got abnormally consumed, 75% of my weekly limit consumed in one day while working on just one project

boreal holly
lavish geode
boreal holly
lavish geode
#

Btw i added instructions in agents.md to check for ripple effects each time the model is doing big change, but I don't think this is why all these tokens got consumed in one day đŸ€”

high girder
#

If you're scanning a lot of dense context files, then the continual context window filling up and compacting could result in a ton of usage, it really depends on what you're working with.

boreal holly
steady vigil
#

codex app is such a let down. It started great now its suffering from terrible performance problems.

lavish geode
# boreal holly Helps to know: 1. Platform 2. Codex flavor (GUI, TUI, Exec, Cloud, etc.) 3. Auto...

I use Codex gui app on mac and run local not cloud projects
Automation was official one existent in automationa tab i used it and just added a line to check for ripple effects, but the automation isn't the problem it runs 10 mins per day and doesn't consume alot

What i notice is my day long usage consumed abnormal tokens
Idk whether the ripple effect customization in agent.md caused this big consumption or not, i noticed alot of context compaction today yeah but this wasn't what i used to

boreal holly
latent tiger
#

not strictly codex related but this could become a problem for OAI as well for refusing certain guardrail removal

lavish geode
lean lark
latent tiger
#

I suppose in the next 6-8 months it will probably catch up to competitor frontier models

exotic cave
latent tiger
#

Yeah for sure

#

DeepSeek v4 is dropping any day now too the US competition is going to heat up like crazy with this fed agency ban

exotic cave
#

Anthropic forgot it's the capitalism rules, you can't supply there will always be someone who will... Though US gov dodged a bullet with Anthropic, their models are crap at following instructions, look at IFBench Cluade is a joke.

latent tiger
#

I hope the OAI team leaps on this opportunity to fill Anthropics position lol

#

Speedrun gpt 6!

quaint hazel
#

Anyone know when the app gets an update?

spiral gorge
spiral gorge
spiral gorge
earnest rock
#

Hi all, I used the Codex app for the first time last week due to the 2x rate limit increase. When I began it felt like I had a lot of usage available, I ran many prompts using 5.3-Codex on high reasoning. It seemed like every request only consumed .5-1% of my usage.

After my limits reset it seems like I consume way more of my weekly usage, like 2-3% after a request even when setting to low reasoning.

Is there any guidance for optimizing the model/reasoning to make sure I can get the most out of it? Does using 5.1-Codex-Mini at medium reasoning provide more usage than 5.3-Codex at low reasoning?

final ruin
#

Hello, has anyone used Codex for their Obsidian Vault? I am not sure how I feel about giving it complete access. There are personal things in there.
I have disabled the toggle for using my data for training, but afaik openai still keeps data on their servers for up to 30 days.
Does anyone have any opinions about that? Does it really matter?
Please ping me to see your responses

cedar skiff
#

The sub-agents get their own names o.0

sleek spoke
potent mason
potent mason
potent mason
final ruin
ivory zodiac
#

1 prompt can use few tokens, another can use many

#

the best way to "optimize" token usage is to provide clear, high quality prompts with minimal ambiguity.

simple star
#

I cant wait for spark to increase context and accept images

severe mist
#

How do I use GPT-5.3-Codex-Spark

#

I see it in my usage tab but VScode doesn't show it as an option

final ruin
ivory zodiac
severe mist
#

I dont have pro

ivory zodiac
#

i believe they are going to start letting plus accounts in soon though

severe mist
#

😭

#

why they bait me like this

ivory zodiac
#

got em

severe mist
#

"look at all this spark usage you have! pumpkinhehe"

ivory zodiac
#

i think its a transitionary period

final ruin
#

Is Spark just a quicker model?

ivory zodiac
#

well no

#

its not just a quicker model

severe mist
#

isnt it slightly better and also faster

ivory zodiac
#

1000 tokens per second

#

or more

#

1200

#

it literally writes walls of text instantly

#

and no its less accurate and therefore needs to be used in a particular way

severe mist
#

the code outcomes they showcased, spark looked better while also being much faster

ivory zodiac
#

it is not better

severe mist
#

dang

#

cherrypicked then I bet

ivory zodiac
#

everything in life is tradeoffs

#

no they were just easier tasks

#

they were using it to its strengths

severe mist
#

they did a snake game and spark visually looked and played better

ivory zodiac
#

just variance.

severe mist
#

I suppose, yeah

ivory zodiac
#

LLMs are like slot machines

severe mist
#

with music gen I called it "mining for diamonds"

#

wish openAI would try to do musicgen

#

since all the ones focused on that sold out to UMG/WMG

#

(to become walled garden enviorments where UMG/WMG owns the output)

#

I'm still upset about it. I loved working on music with AI

minor niche
#

how do i fix this?

"Failed to apply patch to repo /workspace/d1-template. This can happen if the setup script and agent modify the same files."

craggy cloud
#

its popped up in my dashboard too, and can confirm it shows on cli too

#

(i am on plus btw)

#

■ {"detail":"The 'gpt-5.3-codex-spark' model is not supported when using Codex with a ChatGPT account."}

well had to try. lmao.

indigo raptor
#

My VS Codex has been stuck on this screen for a long time.

#

I tried restarting VS Codex a couple of times too.

potent mason
glacial shadow
#

If oai releases a statement saying exactly this, ill believe their statement and not read the axios anyways, its not a primary news source

boreal badge
severe mist
hard tulip
severe mist
#

👀

cyan wing
#

5.4 leak confirmed 👀

boreal badge
#

codex app only for mac - not fair

#

im on linux

hard tulip
boreal badge
#

🐁

hard tulip
boreal badge
#

yes

boreal badge
potent mason
#

Codex has been running for 1h+ on this one task lmfao

potent mason
hard tulip
#

an app isnt the same as a CLI

potent mason
#

Well I would assume an app comes out in windows before Mac but it seems these days Windows is neglected (specially for devs since most don't use it)

frosty zealot
#

When I'm in hte CLI, I wanna use the App, when I'm in the App I wanna use the CLI

potent mason
frosty zealot
#

I just feel like with tmux etc. and also ssh access I can be so much more efficient, the only thing I really like about the app is how easy they make using worktrees

#

Interesting so Anthropic stuck to their guns about no AI for miltiary use then OpenAI cheered them on, and as soon as they're out, OpenAI submitted a bid lmao

potent mason
#

This is a government issue not an openai one

frosty zealot
#

I thouight they were all banding together with some petition

#

or was that just the employees

potent mason
hard tulip
obtuse river
#

A worse AI means less harm less soon.

latent tiger
#

You think the CCP lets its AI labs deny them access to their latest models for malicious use? End of the day the us govt has weapons to truly oppress the American people if they wished to independent of any AI labs help. When it comes to national security and dealing with other countries that have the same level of AI access you cannot in good faith just restrict the military from using your model as they see fit in my opinion. Imagine a company that makes the best missiles trying to sell them to us govt but they’re like btw you can’t use them to strike in X Y Z specific scenarios and if you attempt to we have the ability to deactivate them. Apply that same logic to the AI models lol. I’m glad open ai was nimble and snatched the position though will probably accelerate progress now

latent tiger
feral geyser
supple perch
#

@boreal holly - Well soon you will never have to install even the IDE locally, into the sandbox it goes

gentle steppe
#

I've been using Codex for about a week to refactor a large project in Xcode, so if like me, your code lives in an iCloud-synced folder, a simple way to avoid syncing build artifacts is to add a small wrapper script (for example Scripts/build-local.sh) that runs swift build/swift test with --build-path set to a local cache directory like ~/Library/Caches/<Project>/swiftpm, and runs xcodebuild with -derivedDataPath set to ~/Library/Caches/<Project>/derived-data. This keeps the repo clean (no .build churn), reduces unnecessary cloud sync traffic, and keeps local builds repeatable. I asked Codex to help implement this, and it generated the build-local.sh script for me. 🙂

raw hill
#

or you could just not put your version controlled software in an iCloud synced folder

gentle steppe
sterile crow
karmic shadow
#

why codex its too laggy for me today?

exotic herald
karmic shadow
#

on vs extension

exotic herald
# karmic shadow 5.3 codex

Nice are you using Max , Mini or Medium ? Also are you using platform account or are you using CLI account

karmic shadow
#

i have been using it fine for a week

#

but today, i changed proyect folder and it start laggin and do strange things

exotic herald
karmic shadow
velvet wren
#

I highly recommend the Codex app

exotic herald
exotic herald
# velvet wren I highly recommend the Codex app

Wow this is great a great recommendation - I downloaded it a while and played around with it. But I have been mainly using the CLI - i.e Spinning up 4 terminals of codex LOL. Wow this is great ! I am gonna have a lot of fun this weekend.

karmic shadow
velvet wren
karmic shadow
#

one from microsoft store its not even working

nimble terrace
#

@ivory zodiac Yo when you saw GPT 5.4 in the Codex app did you try to prompt it or nah

feral elk
#

does codex app work better with multi agent now?

cedar skiff
#

it works, but there is no feedback

spiral current
#

Good morning everyone. I setup Codex alongside Claude in WSL. What type of setups does everyone else use? Wondering where I can minmax, mostly working on accessibility and instructional design, dont need anything too fancy

velvet wren
#

Vercel skill is pretty good. I just prompted create a hello world app and deploy to Vercel and got a nicely formatted web app

sand shuttle
cedar skiff
#

doing a deep research document focusing on official documentation and authoritative source with claude. Then converting that into a skill with nested reference docs is like a silver bullet with codex. You can get up and running on anything with it.

#

the skill.md is just a problem -> solution index for the reference files

cedar skiff
sand shuttle
cedar skiff
#

seems like you should ask codex that

#

.codex/skills/

sand shuttle
#

ah ok

cedar skiff
#

but you know there is more to it

#

like a lot more

sand shuttle
#

oh

#

mind explaining

cedar skiff
#

codex has a skill for creating skills

sand shuttle
#

or sending a link

cedar skiff
#

uh where do i get the link?

sand shuttle
cedar skiff
#

yep thats all there is to it

sand shuttle
#

do i place it in the .codex

#

folder

cedar skiff
#

there is a bunch of nuances you need to know, you probably need to read the docs

cedar skiff
#

It usually does a pretty bad job of it, puts data in there that goes stale fast and the agent can find easily

plucky halo
torpid trout
#

That’s because the post is now deleted

plucky halo
main wraith
#

lates codex update has broken the real time UI updates in the app/extension. i have to click on it for the latest updates to arrive

topaz pewter
#

Dude why do the codex cli work like this bro
if my weekly usage runs out i cant use my hour hour usage
if my 5 hour usage runs out i cant use my weekly usage
its so stupid

#

now i cant use codex til march 5th

topaz pewter
velvet wren
#

how much code have you created?

topaz pewter
#

how do i check

#

i only been using for 3 days

#

;/

sand shuttle
#

althought i think there is a way to get the total

#

idk how

topaz pewter
#

😭

#

i gotta use trash opus 4.6 for 5 days

#

bro

sand shuttle
#

opus 4.6 isnt trash

#

why do you say that

topaz pewter
#

after using 5.3 codex

#

opus is so bad

#

😭

#

5.3 codex feels better to use

sand shuttle
#

actually?

topaz pewter
simple star
topaz pewter
simple star
#

Let me explain you:

topaz pewter
#

why?

simple star
#
  • Weekly quota: This is obvious. There is a limit at how much tokens you can use in a period of time
#

Right?

sand shuttle
topaz pewter
sand shuttle
topaz pewter
simple star
#

5 hour quota: This is so that you don't blow all your weekly quota at once. The point of this is that you dont blow up all your weekly quote in 1 day, because you hog resources that could diminish performance for other users

topaz pewter
#

how do i use GPT-5.3-Codex-Spark

simple star
#

The 5 hour quote is effectively just a rule, so that you dont hog CPU performance at once

#

It is not like a "separate quota"

sand shuttle
# topaz pewter alot

also did they decrease limits on the models? my usage is oign down so fast today, did they teporariyl increase it after releasing 5.3 codex

simple star
topaz pewter
sand shuttle
sand shuttle
topaz pewter
#

welp

simple star
#

@sand shuttle Mine too. This is likely due to subagents requiring more tokens

topaz pewter
#

i have unlimited 4.6 opus

simple star
#

@sand shuttle This is likely not a consequence of 5.3-codex, but a consequence of Codex v0.105

sand shuttle
#

im nto even using sub agents

#

just prompting oin the extension

simple star
#

Dont you have them enabled?

sand shuttle
#

nah

simple star
#

What version of Codex are you running?

sand shuttle
#

im on the extension so im not sure

#

how do i check

topaz pewter
simple star
#

codex --version

sand shuttle
simple star
#

@sand shuttle There's no guarantee that will do it. It is just my suspicion

sand shuttle
#

ive just used 11% of my weekly limit 😭 im on the go plan for now

simple star
#

If you see something like that while Codex works, then you have subagents enabled

sand shuttle
#

well im using the extension so im not sure

simple star
#

I can't tell you. I only work with the CLI

sand shuttle
#

my cli version is still 104

simple star
#

You likely do not have them enabled, even though not impossible

#

Me personally, I have not seen an increase on quota usage due to 5.3

#

Only due to agents

sand shuttle
simple star
#

An increase of quota has no effect of "usage rate"

#

Different concepts, "how much you have", against "how fast you spend it"

sand shuttle
#

the % remaining goes down slower

simple star
#

Yeah, that is true

sand shuttle
#

Yeah thats what i was refering to haha

sand shuttle
simple star
#

Honestly, I am Pro

#

I just... need the tokens

#

And even then, I already blew out 80% of my weekly quota

sand shuttle
#

What did u do 😭

plucky halo
#

He’s made ~26262727 snake games but it only took 5 seconds each

sand shuttle
simple star
#

no idea, but it flew by

#

I added a multi-member feature to my bookkeeping platform

sand shuttle
simple star
#

It was tricky, and I had to start over a few times

tawny island
# hard tulip

how do you enable to hotkey for it? post is removed

spiral gorge
#

codex only
or
opus to write code, then codex fix bugs
or
opus only

sand shuttle
#

is there a huge difference in token consumption between 5.3 high and 5.3 medium?

orchid plume
#

also with ChatGPT you have quota for Codex and quota for ChatGPT, while on Claude it's combined

sand shuttle
#

Im on a tight budget so im reall ytrying to choose the plan that gives me the best usage

orchid plume
# sand shuttle Im on a tight budget so im reall ytrying to choose the plan that gives me the be...

understandable, I guess it depends on your usage pattern. I'd say you'd get more out of Codex, even more so with the 2x rate limit boost at the moment. The other alternative is Copilot for $10/mo I believe, 300 user messages (monthly) if I recall correctly and still access to the full context window for 5.3 Codex. Tool calls and subagents do not count towards the user messages, only what you send

sand shuttle
orchid plume
#

I suspect GitHub has discounted access to OpenAI models, as well, Microsoft. Anthropic, probably not as much

#

I also believe they offer a trial for one month, so you could always try Copilot Pro for one month

sand shuttle
#

Ah thats true

#

how would you say the token usage/cost compares with 5.3 and sonnet 4.6?

orchid plume
#

never used Sonnet 4.6 so I can't say, I think the last Sonnet model I used was possibly 4.5, or maybe the one before that 😛

sand shuttle
#

Well thanks for the help :)

south solar
#

in coding and creative tasks

#

but codex is also good but it uses gpt as its base and gpt is in good at quite personalized experienced

#

and they both costs similar

#

but claude needs less cost

simple star
#

It drives me so mad, like seriously furious, everytime Codex (or any LLM) first response is "You are right", "Correct", "Indeed"...

desert flame
#

have u guys desktop codex app for windows?

simple star
#

@desert flame no

sand shuttle
south solar
desert flame
sand shuttle
desert flame
south solar
sand shuttle
#

I see 😔

nimble terrace
#

Oh?

ivory zodiac
#

yeah it was on X

cyan wing
nimble terrace
#

ah

#

didn't know that, appreciate it

plucky halo
# cyan wing

Also, fairly certain this is feature gated at the moment and not accessible to users even with some jiggery pokery

nocturne folio
ebon skiff
sick iron
# ebon skiff

how? Mine says the version is incorrect and need to redownload it - from the exact place I got it the first time.

#

almost like the joke for blonds

ivory zodiac
sick iron
boreal holly
# ivory zodiac

Agreed. I still frequently use gpt-5.1-codex-mini for tasks where its strength is being smart enough for that task

ivory zodiac
#

Right?

#

And you benefit from speed

boreal holly
#

Yeah and it uses way less tokens

ivory zodiac
#

I want a new mini

#

It's time...

#

Been long enough imo

#

5.3 codex mini, 262k for cheap

main nimbus
#

latest codex mac app sucks is borked. it broke realtime updates for me. i have to click the UI to see what is evening happening.

lavish geode
main nimbus
#

hmm, maybe haven't gotten the patch for it. hope it is fixed soon, it was confusing at first.

solar mauve
#

is gpt 5.3 codex better than gpt 5.1 codex max?

main nimbus
lavish geode
main nimbus
simple star
#

I was sad because I saw my quote didn't renew until 2nd March

#

Then suddenly I realized... FEBRUARY!

#

Finally I find a use, to have a 28-day month

blissful basin
#

Anyone knows where i can submit bugs found in codex windows app?

tall zodiac
#

yall tried this yet?

potent mason
# tall zodiac https://www.cmux.dev/

Feels a bit immature the image doesn't adapt well to different screeen sizes, don't really trust the product if something like the landing page is already wrong

plucky halo
potent mason
#

Lmfao someone gave me their catalog through a pdf and I had to recreate it all so naturally I was using AI for it, I got rate limited on the $200 plan xd

#

Honestly understandable though

next ore
#

Hello, does anyone know how much I get for the $40 credit extension? I am only using codex via CLI and ran out for this week. I have never used the $40 credit I just want to know if its worth it.

My basic question is, with the pro subscription ($200), is the $40 credit 1/5 the amount of tokens the pro sub provides? or is it less than that?

boreal holly
velvet wren
#

As a Plus user I can say that credits are worth it. 1000 credits for USD $40

next ore
#

I think online it says pro users get 10k credits. so 10% of the so you are effectively paying twice the price for pro. as its effectively $20/1k credits.

torpid trout
#

Credits are definitely not worth it lol.

You better use the api to bridge out until your normal account refills.

Credits go like butter - literally each and every „message“ any subagent „thinks“ is counted.
With api you at least get actual token billing.

#

Ps I’m both plus, pro and api customer. And I’ve tried them all (least of all pro as only customer on it since 3 days)

torpid trout
#

If that’s true then pro would last me about 6 days and subsequently plus 1 day
Which isn’t the case. I made it roughly through 5 days with plus and one day with 1000 credits.

It’s a silly measure anyway. I wish OpenAI would just use tokens everywhere like in api.

main nimbus
next ore
#

according to the man himself (chatgpt) the $40 credit is 15-20% of the pro plan

tall zodiac
#

cc: @potent mason

#

i like how everything is all in one view

ebon skiff
potent mason
abstract beacon
cyan wing
#

Anyone kno a easy way to run Codex in Plan Mode and auto accept all options?

#

like auto accept recommended and "Implement the plan."

frosty zealot
#

Kinda defeats the purpose, I dont think theres a way to get it to accept its own plan and carry on, you could just prompt it to do some planning outsidfe of plan mode

high girder
#

So who here is actually in the windows codex test at the moment? What's it looking like?

tropic karma
#

I saw this (I'm on the $20/month), very cool, but I can't seem to actually use it yet. It doesnt show up in the IDE extension, or the CLI.

high girder
#

They're supposedly bringing Spark as a trial for plus, but it's not implemented yet

hybrid ore
true bane
#

id like to introduce everyone to some business geniuses:

tropic karma
#

yeah though im pretty sure that openai doesnt do that

#

theres pros and cons to it. you should get more usage with what anthropic does, but yeah its pretty stupid.

The ideal system would be:
free tier (no claude code) message pool on all subs
then on top of that a combined usage pool for claude code and chat messages for paid tiers

plucky orchid
#

Hi, someone know why the Codex app on windows store don't works ?

plucky orchid
modern tide
#

Hello. It seems since a few weeks ago my codex performance have been severely degraded. I use gtp plus and web version. It can't handle the same task it did just at the beggining of febuary, I also can't select deep thinking or which model should work on it. Any tips?

sick iron
orchid plume
#

when I tried it though, it seemed like it was missing things compared to the MacOS version of the app. I couldn't find an automations tab and I couldn't find a way to go into the settings UI

ivory cairn
#

is it me or is my usage for codex going down significantly faster in the past 2 days?

simple star
#

nav mine too

#

I suspect it is due to agents

#

What version are you using?

desert flame
simple star
#

I wish CLI could show me the usage quota on the statusbar

ivory cairn
#

But I have used little prompts and I am 87% used weekly (within 1 and half day if it refreshing) which is insane because last week I used sooo much and I struggled to finish it.

ebon skiff
boreal holly
# simple star nav mine too

Yep, almost time for credits đŸ„Č at least every % used was forward progress. Very proud of my agents. They do incredible work

simple star
#

Sadly, next week we will have half the quota 🙁

boreal holly
simple star
#

Oh wait, maybe I misread

simple star
#

@modern tide Too little information. What model/effort?

modern tide
boreal holly
# modern tide Any help?

You're using web version so you can't customize the model, it uses 4x as much credits, and perhaps you need to ask Codex why it's performing poorly (e.g. what do you need from me to do this job correctly end 2 end)

simple star
#

The web version uses 4x credits?? O_o

boreal holly
simple star
#

holy..

modern tide
boreal holly
# modern tide I believe i was able to. Ask it as in directly in prompt?

Yeah, give it a prompt like "Make a comprehensive list of tooling you need to work on this project that is not currently available inside your execution environment, provide me with any setup details I need to do on my end, install the missing tooling on your end if applicable. If the project we're working on is ambiguous in any way, or the technical specifications are not clear, let me know what clarifications you need from me so our work can be as productive as possible. I value static code analysis and rigorous unit/integration testing, so any gaps in our project that result in failed builds or flaky runtime, please collect these gaps and present them to me along with the aforementioned details."

#

It's like a "realignment check". You could even make that a part of the AGENTS.md. Whenever you say "realignment check", all the stuff in that prompt becomes applicable

modern tide
#

well its weird i was using it for literally same tasks just a month ago and it implemented it for like 80% (pretty much what I needed) so now i just fizzles and do nothing with exactly same instructions and inputs

nocturne folio
#

something new

simple star
#

what?

nocturne folio
#

i didnt notice ive gotten the spark model on the plus plan lol

simple star
#

Yeah, lot of people have been reporting it for 3 days

fallow stream
#

wait we can use spark on plus?

simple star
#

I think you see it in the UI of the website, but you still dont have access to it through the tool

#

But im not sure

civic oriole
#

!?!??!

ebon skiff
civic oriole
#

!?!?!

ebon skiff
#

idk lol, I feel it's better than the one on the VS Code extension (I’ve never used the web one), and so far it's fine

civic oriole
#

i hate the vs code extension cause then i cant see my files

#

holy scam

modern tide
#

there's no codex app for windows or im missing something?

civic oriole
modern tide
#

thanks

boreal badge
simple star
#

wow, I was not expecting THIS

main wraith
#

are limits frozen? or my app's broken?

#

I been using it or awhile and still got the same usage left

torpid trout
#

so... PRO plan supposed to be so much larger than PLUS, but within less than 1 hour, 6% of the weekly gone?
If I continue like this within 20 hours it will be zeroed 🙁

#

6% plus 10% of the spark, to be precise.
I definitely felt PLUS was not going that fast, how could PRO go even faster lol.

craggy cloud
#

i tried a few days ago to use the spark model and the server wouldnt even allow the connection

modern tide
civic oriole
modern tide
#

jfc

#

this app also sucks

#

i dunno why they had to remove functionality from web version

unborn helm
#

Codex asks me to run a command EVERY SINGLE TIME even though i give it permission to run and ALWAYS use "Yes, and Dont ask again for the commands that start with" and IT ALWAYS asks me.

boreal holly
orchid plume
orchid plume
#

latest version, 0.106.0 CLI

boreal holly
#

Gotcha. I have a feeling that feature is still not ready.

unborn helm
cedar skiff
#

what kind of work flow do people use to get spark to build out small apps?

boreal holly
#

One thing I noticed is Codex will sometimes spawn multiple sug agents to work on the same issue.

boreal holly
# unborn helm Its a bunch of get-content thinggs

OK, sandbox setting would be helpful, but if you have network_access = false, or you're in workspace-write without specifying network_access = true then Codex will ask you any time a command touches the network, even if you approve forever

cedar skiff
#

Also setting the workspace to trusted helps reduce them

unborn helm
cedar skiff
#

I'd love cookie cutter workflow to get spark to make me a prototype, anyone know of nay good place to get started?

boreal holly
#

The low friction, sane security settings would be

sandbox_mode = "workspace-write"
network_access = true
writable_roots = ["/path/to/cache/folders", "/for/example/.pubcache", "/or/global/node_modules", "/var/run/docker.sock"]
approval_policy = "on-request"

approval_policy = "never" in my testing leads to good commands getting rejected, and then Codex begins scheming for a workaround. "on-request" rarely ever gets hit, and if it does it's your golden opportunity to either allow it or steer them towards the correct way of doing something.

torpid trout
# boreal holly Are you using subagents?

I do, but so did I with PLUS, and .. last week I run out a bit early but I created like 3 new apps from scratch plus client work
And today I barely sit on it (meanwhile) 2 hours approx, 80%!!!!!

#

Being this now PRO account I am close to cancel that immediately haha

#

It's not any more than PLUS - literally it does consume faster.

#

Things that changed

  • new PRO account
  • new version 106
    otherwise all the same
#

And with spark now I even changed some agets to NOT use 5.3 xhigh which otherwise it used until now

#

(yes yes, xhigh)

sand shuttle
#

why does codex always do this

boreal holly
sand shuttle
#

it has started happening recently

torpid trout
#

It's like 10-20% per hour with one agent and subagents enabled. Suffice to say I have never used subagents since that happened.
That is pretty much what I see
Horrific. So, disable subagent mode you say?

torpid trout
#

So yes, 100% new issue

boreal holly
torpid trout
#

basically like this?

[features]
multi_agent = false
prevent_idle_sleep = true

[agents]
max_threads = 1
boreal badge
#

used only HTTPS mode

boreal holly
# torpid trout basically like this? ``` [features] multi_agent = false prevent_idle_sleep = tru...

Yep! My favorite, minimal effort subagent system is adding a skill that lets agents use tmux new -s and tmux send-keys to spawn agents and send each other messages. The strategy I'm currently using is codex app-server and a MCP server that lets them sent thread/steer messages to each other, which doesn't interrupt you typing a message into the terminal.

Anyways, yeah, I love Codex/OpenAI but the subagents thing is definitely not ready for production use yet

boreal badge
#

screen so better

spiral gorge
#

5.4 when

boreal badge
#

next best gen

sand shuttle
torpid trout
boreal badge
# sand shuttle how do i do that

In new version of OpenAI codex, they added websockets so that the context "cooks better," but this almost doesn't work anywhere now, so it switches to HTTPS automatically.

torpid trout
#

Only problem I have with no subagents is it seems it then also simply does not use them anymore, not even in synchroneus mode?

boreal holly
# torpid trout Only problem I have with no subagents is it seems it then also simply does not u...

Exactly. It's a tradeoff. There are alternatives that work very well but do require some engineering effort. The way I see it, OpenAI has hundreds of features and thousands of bug fixes they're working on, and the only thing I want is subagents, so the solution is build that system for myself the way I want it. With a Pro account you can start today and be done by Tuesday building something that works just as well and does not consume your entire rate limit within hours, and it'll use a tiny fraction of the limit to do so 🙃 or operate with single agents until OpenAI can address the subagents efficiency issue

torpid trout
#
  Delegation Report:

  - Primary owner: main thread
  - Agents invoked: none
  - Skills activated: none
  - Required delegations not used: php_engineer path was applicable, but no specialist agent runtime is available in this environment, so safest direct fallback was applied.

It basically ignores the agentic behaviour, this is weird
I would have expected it to at least apply it per-thread.

I will test a few other CLIs first, I have heard of opencode or something like that, which works with openai. Maybe they do that (better)

#

And I am opening a GH Ticket unless i can find one

boreal holly
#

Here's a good subagent system that is extremely optimized for token efficiency. And idk if the official subagents feature does this, but my agents can talk to each other, and the orchestrator manages all of them asynchronously

boreal holly
#

And is built around basically my mac and how I have it set up. Very extremely opinionated

torpid trout
#

Yeah, I get it... well if ever you decide to share the source code let us know 😄

#

Obviously given your reports of what you use in terms of rate limits, something is done better.

#

Cant' be that I am overwhelming codex so much, I had a look at it with the api and really most of it is INPUT tokens, so, should be dirt cheap. The expense is on the OUTPUT, and it produces a fraction of output per input.

#

So... yes there is something off with their agent behaviour

boreal holly
# torpid trout Cant' be that I am overwhelming codex so much, I had a look at it with the api a...

I think OpenAI's "rate limit" is a mixture of tokens and requests. Nobody really knows the algorithm, but back when subagents first came out and it was a hidden experimental feature, some folks with Pro reported dropping to 0% weekly in like 10 minutes of usage, and then OAI staff on Github were like "that was a hidden experimental feature, should not use it until it's done". There's no way tokens had anything to do with it. Also there's a CLI command called like /debug-dump or something that will instantly drop you to 0% weekly the moment you press enter (idk why it's in the app for people to use). But something tells me the requests play a role in the rate limits. My subagents system uses the same requests as a normal single-agent codex session, just distributed.

true bane
#

anyone on plus figure out how to use the random new buckets that showed up 2 days ago for "spark"? if its only for the oligarchy tier why do they show it to us?

plucky halo
true bane
boreal holly
#

I love watching them coordinate. They're like "blocked until that agent makes DTOs", orchestrator knows they don't need to respond to that until the other agent unblocks with DTOs, the agents rebase to acquire what they need. It's insane. It's literally an entire company of senior software devs working autonomously at light speed

plucky halo
boreal holly
#

5.3 Codex, I can't imagine anything better but I'm sure OpenAI will continue to impress

simple star
#

@true bane I rarely use Spark. It is fun, but you are not missing out on anything extraordinary

true bane
livid nimbus
#

anyone else getting this now

#

when codex gives you links

orchid plume
#

the strange weekly quota % anomaly is still happening for me. Is anyone else seeing this happen today?

That 53% shown in Codex CLI will sometimes say 56%, then 53% or some value close to that, then 56% again 😂

torpid trout
#

Well but you’re comparing local to remote counter?
Then I’d not be surprised.

However if they jump locally from 53 to 56 or-and remotely too
 I think you should report it.
They don’t want to believe any discrepancies with those counters right now so every report puts more cracks in the otherwise smooth eggshell this counter is advertised as

true bane
orchid plume
#

yeah today at least is the very first time I've noticed this happening

simple star
#

I really wish I could make PRs to Codex

#

Now, not even my "Issues" are being answered

orchid plume
torpid trout
#

Yes, I think my pro sub will very soon become a second plus
Can’t waste 200 bucks a month for being a Guinea pig

That’s usually what you get for no charge - no offense OpenAI, the product in general is amazing but some things just can’t be touched when people drop money in these heights, imo

bronze snow
#

Does anyone know how to implement codex inside VS Code workspace?

nocturne folio
#

is there something telling openai to change keybinds to do the most useless things ever

#

transcript should be ctrl t

#

not esc x2

#

esc x1 should cancel prompt and x2 should close the app like how it have been since it released

boreal holly
torpid trout
#

Esc6 to reset credits gd

boreal holly
#

Actually it should be esc x2 to immediately archive current thread, esc x3 to switch to plan mode lol

simple star
#

I still have not managed to find a use for skills... I wonder if it is my skill issue

rough abyss
left elm
#

Still blocked in this container, but I did reattach origin successfully first.

git remote -v && git fetch origin --prune && git branch -r && git log --oneline --decorate -n 5 origin/main
(origin was missing at first: “does not appear to be a git repository”)

git remote add origin XXXXXX && git remote -v && git fetch origin --prune
(origin add worked, but fetch still fails with CONNECT tunnel failed, response 403)

So: repo URL is set again, but live GitHub sync from this container is still network-policy blocked.

I'm pulling my hair out here. I've done everything I think I could possibly do on my local end to fix this, but nothing seems to have worked. The only thing I haven't tried is disconnecting it fully from GitHub and reestablishing the connection.

Anyone have a solution for this?

velvet wren
torpid trout
#

Skills are useful if you have very deterministic requierments such as "freaking use WPCS when coding in PHP for wordpress"

#

Because gpt will categorically refuse to do so - and if you prompt it to do so it will forget it after 2 lines of code
That is where skills and agents really are useful becaues you can force it to do it with verification matrix and similar things

Similarly for repetitive things you do not want to repeat every time, like - say you want all your changelogs in a specific format, or, the format of doc you prefer etc
You could stuff it all in an agents md but the thing is, you migth not ALWAYS need that, so a skill/agent can be useful as it reacts upon codebase recognition and intention in prompt.

gleaming sapphire
#

anyone seeing this:
/Users/home% codex
missing field id_token at line 5 column 3

void cedar
#

Tried to install Codex on Windows in the store and got this. When I click "here" it just goes back to the store. Is this a new bug?

void cedar
civic oriole
#

it dont exist

#

its not out yet

true bane
#

i actually like wsl2 on vs code's terminal quite well. way better than powershell/claude

boreal holly
#

After running out on Pro, burning through 1000 credits, switched to Plus and hit the 5 hour rate limit in like 1 hour. So on Pro you get 5 1/2 days of 24 hour, sparse 12 agent usage. On Plus you get exactly 3 hours of usage per week, with 4 hour breaks in between. It's 1000% not 6x more usage. It's wayyyyy more

tribal lake
#

Tell Codex to do something
Codex spins up subagent
Subagent gets stuck with a tool call prompt "Do you want to approve this to run for this section?"
I don't know anything is happening, I just see the main agent taking a long time waiting for subagent

There gotta be a better way...

potent mason
#

Is anyone here on Claude Code? It’s been having so many issues😂😂

velvet wren
potent mason
snow thistle
#

What’s happening here?

nocturne dove
#

Anyone here can arrange and can give me this course iclone8 3dmasterclass by tristryam aniyam,
My whatsapp is 9508752860 from India, if anyone can arrange this course which is iclone8 3dmasterclass by tristryam aniyan, please chat me with no

cedar skiff
#

gving code rabbit a run, seems ok. Kind of picks up on the same sort of things codex does. Just using it default though. I'll give greptile a go as well once my code rabbit trial dries up.

#

Best thing about it is it gives prompts you can just dump into codex

potent mason
#

Ah and ofcourse @velvet wren says nothing about everything else honestly hilarious😂

left elm
#

Someone help me plz Codex has lost access to github and Idk how to fix

potent mason
#

Use SSH not http

left elm
#

How do I do that Im super new to all this Im accessing through BRAVE browser atm

potent mason
# left elm How do I do that Im super new to all this Im accessing through BRAVE browser atm

Open up your terminal and do the following

Generate ssh key

ssh-keygen -t ed25519 -C "your_email@example.com"
enter
enter
enter

Copy ssh key

clip < ~/.ssh/id_ed25519.pub or cat ~/.ssh/id_ed25519.pub | clip

Go to github and do the following:
In the upper-right corner of any page on GitHub, click your profile picture, then click Settings.

In the "Access" section of the sidebar, click SSH and GPG keys.

Click New SSH key or Add SSH key.

In the "Title" field, add a descriptive label for the new key.
Select the type of key, either authentication or signing. For more information about commit signing,
In the "Key" field, paste your public key.

Click Add SSH key.

left elm
#

Fatal: unable to access ... CONNECT tunnel failed, response 403

cedar skiff
#

you have codex, that thing knows all of the things

left elm
#

So Im using codex and it keeps giving me that when I tell it to go look at my GITHUB repo ive done personal networking stuff ive disconnected and reconnected the app it just keeps giving me this result

#

It was working last night and all of a sudden this morning it stopped and been giving me this error over and over again...

cedar skiff
#

right but give codex the problem you are trying to fix, it literally knows almost everything.

high heron
left elm
#

OK so I converted my github to SSH but Codex still comes back with

So your SSH setup on your machine is fixed (great), but this Codex container still has outbound network restrictions to GitHub.

so it seems maybe something on the Chatgpt serverside is goofy or GITHUB is that safe to say?

hard tulip
#

GPT-5.4

left elm
#

So does that mean OPENAI needs to fix the issue and im stuck?

timber hazel
#

anyone's codex limits going down insanely fast?

#

4 light prompts and 10% 5hour, when previously it would probably had been 2%.

chrome raven
# hard tulip GPT-5.4

if the 2m window is accurate it would be a game changer, but if well managed for long sessions

terse kraken
#

I hope we get the general model in codex not just 5.3 codex

obsidian prairie
#

hi everyone. ive been using codex for about 5 weeks now and i can say that i like it alot. just today i saw information about double rates for pro plan are for a limited time. i wonder if that info is outdated or will our limits be 1/2 in the future? my honest opinion is that for 20€ per month is decent deal for what i get now. but its a bit concerning getting 1/2 rates for that price in the future...

terse kraken
#

I dont think its 2x still, its back to 1x after the first week

#

Its just promotion, their servers can't sustain 2x throughput

obsidian prairie
#

ohh, thats a great news. rates i get now for my plan are perfect for me 🙂

btw do you have any experiences with spark? i dont see it in my vscode extension

sand shuttle
#

they temporarily upped it when releasing gpt 5.3

torpid trout
#

Stop guessing and assuming.
Report your issue in the relevant GitHub and read how it’s stated NOTHING changed

If you all only complain here and on Reddit, in GitHub it looks like some single snowflakes have an issue.

#

And that’s where that team works. Not here, not on Reddit.

torpid trout
#

I start suspecting that actually the problem is in reverse
Plus gives you 45/250 messages and it surely did feel like much more
 much more!
So chances are they fixed something, and now we actually get the promised messages - which from 45/250 really is almost nothing and corresponds with current reality

45 messages of large code case isn’t surprising to be gone within a few minutes

#

Same with plus - 250/1500 messages aren’t an awful lot, and it explains why within an hour of subagents you can go 20%

boreal holly
main nimbus
#

Updating is a risk atp

boreal holly
# torpid trout At least this confirms it’s not a codex CLI version issue but a remote counter i...

Well no, I'm not reporting an issue here. The only reason I'm using 0.104 is because I think I needed to upgrade to use Spark or 5.3, can't remember which. Otherwise I would still be on 0.94, because the current version doesn't let you go -c features.skills=false which is pretty lame for automations. Was even considering maintaining two separate copies of codex just to be able to disable all skills with a single flag

But on Plus, that 5 hr limit goes by so fast. I think when a lot of people discuss Plus versus Pro, see the 6x usage at 10x cost, the real important increase is the 5 hr limit

#

I do think everyone's rate limits are dropping precipitously due to the subagents feature so that's the real issue they need to work on

torpid trout
torpid trout
#

45/250 messages is nothing really, and in the begin I was very pleased as of how much I can factually do with it (a full week of work!)

#

And now plus is gone within hours, pro within ... 2 days, if I keep using agents (stopped using them now, which uses significantly less % of coures)

#

I mean, be it what it is - in neither scenario I will be able to use this product if that is what we can do under 2x usage, because it will mean a cost of about 1000 USD per month at least under 1x usage policy - if used full on under the current % consumption, and for that money its not worth it

boreal holly
# torpid trout I reported it, with the specific fact of the subagents (which is clearly provabl...

Gotcha, that makes sense! Maybe they were counting the credits wrong! I noticed when my Spark limit hit 0% it suddenly showed 95%, but if I went to use it I would get "you have 0% spark remaining" errors. So the counters are acting kinda funny. The regular usage limit, to me, appears to be expected. I just kinda ignore the spark meter and figure OAI will fix that some time.

I used Plus in August/September and when it was me and 1 agent collaboratively writing code it was cool - never really reached any limits, but was getting less done than if I was writing all the code myself. When I started building frameworks for concurrent agents that's when I started quickly hitting the 5 hour limits and got a pro account. All problems melted away at that point. This week I scaled up my usage to gauge how much usage I can get with 12 agents working 24 hours, and I got about 5 1/2 days on pro, used 1000 credits in 1 hour, and then used 30% weekly in 45 mins on Plus. Anyways, hitting that 5 hour limit reminded me of how useful Pro plan is, and I think it's just a coincidence I did this little experiment while everyone's been getting rate limited hard. I still think Pro is the best value and have been paying attention to the issues. I think it all stems from quickly testing new official features

velvet wren
#

probably best to delete this

void cedar
velvet wren
#

the Windows version of Codex app has not been released publicly yet

void cedar
#

That's what I thought, but it I can download it and run it from the Windows store, following the instructions on the open AI website, it just says I need to update the app.

#

I suppose that just means it's not for me yet lol

nimble terrace
#

is the gpt 5.4 being seen in commits just hype from openAI or actual mistakes from the team lmfao

void cedar
#

Probably hype lol

digital rapids
#

Anyone having "Do you want to run this command?" repeat issue? For the last few days, on Windows VSCode Codex keep asking this even if I select "Yes and don't ask...."

torpid trout
#

are you sure it is the exact same command?
It uses to ask even if there is a nuance differing.

digital rapids
#

It differs but it wasn't asking as frequently as of now. Giving a task now takes around 20-30 "Yes and don't ask.... " selection.

boreal holly
supple perch
boreal holly
boreal holly
cunning olive
#

Sup

supple perch
supple perch
boreal holly
supple perch
#

and wsl should be able to build it...

#

I did add "IDE in container" for even better sandboxing

digital rapids
boreal holly
supple perch
#

I mean or do

#

JK JK JK dont

boreal holly
#

I use it as an alternative to Postman/Insomnia or whatever lol Codex is just so much faster at smoke tests

digital rapids
modern tide
#

welp, i'm still stuck on upgrade required

orchid plume
# modern tide welp, i'm still stuck on upgrade required

I believe this comes up if your account hasn't been invited to beta test it. You can bypass it with some trickery but that's at your own risk/peril. When I last tried it, it didn't seem as complete compared to the MacOS .dmg variant, so I'd honestly either suggest sticking with converting the .dmg image for now to a Windows compatible version, or wait until the official release at some point in the future

modern tide
#

well crap... do i do it from the cmd if i want non-web version for windows?

orchid plume
#

alternatively use Codex CLI

modern tide
#

is it worth using over cli?

#

honestly why downgrade web version is beyond my understanding

orchid plume
#

depends what you want to use it for

#

CLI doesn't have automations for example

modern tide
#

well i used web version to make quick updates for project on git

orchid plume
#

hmm I see, web version will consume your quota faster so unless you need quick and easy remote access to Codex, you can just use the CLI to do most things still imo

#

another alternative is OpenCode, which has a CLI, desktop app and web interface options

modern tide
#

well i didn't care about quota at that point, it used to be enough for what i need but now it can't finish the task really, like 3 times dumber than it was

orchid plume
#

I see

hard tulip
orchid plume
#

it's a powershell script which extracts the .dmg file and ultimately makes it compatible with Windows

latent tiger
#

There was a PR that slipped in "fast mode for GPT-5.4" plus a deleted screenshot from showing GPT-5.4 in the actual Codex app model selector Community accounts spotted alpha gpt-5.4 in the public /models endpoint too

sleek spoke
#

they may well be deliberate teases

orchid plume
#

other companies have been known to do similar kinds of leaks, which ultimately end up being indirect teases

#

I suspect these are deliberate given how many have occurred

#

what I'm wondering is how /fast will work for Pro plans, given that they are already meant to be using priority tier

#

one possibility is that they intend to make is so that Pro by default is not priority tier unless /fast is enabled. When disabled it could consume the quota slower compared to original 1x consumption

cedar skiff
#

They probably arent gong to bother with deliberate teases, they just going to move forward with creating the next iteration. Which is going to be 5.4.

simple star
#

Codex v0.107 just landed

torpid trout
#

A reminder that you need to be sure to understand what you let codex write

Codex is a lazy, extremely negligent developer
As an example, it will happily ship your "production ready" docker images using npm run dev, and if you ask it to fix that, it will after some murking use npm run preview.

It will never ever unless you hint it actually use what it should (for production): a real static fileserver

This is why things like Huntarr happen.
I only discovered it in my current project because I learned about this in past.

wide schooner
#

when fix

torpid trout
#

(Note, I have codex run externsive security checks which bring up real things, but this one was not even remotely mentioned in the report, and asking it to fix was really like trying to convince someone that "A is better, when you used B your whole life" lol)

wide schooner
nimble terrace
torpid trout
#

yeah, out of all gpt's maybe, and out of many many devs too

nimble terrace
#

I heard a rumor it's a 2 million context window

#

if true, insane

latent tiger
#

i will be happy with 1M on codex 5.4

simple star
#

GPT-7 confirmed

latent tiger
#

biggest 5.4 leak is the full resolution vision (the big PR #13050 drop)

#

there's also a new fast/priority tier (PR #13212, added yesterday)

#

probably for pro users

cedar skiff
#

I'd be happy with 500k window and the same performance

#

if they could do 2 million with out it turning into garbage i would expect they would roll it out bit by bit and keep some in the barrel for extra release cred later.

latent tiger
#

claude opus has had 1m context window for a while now and if DeepSeek is dropping with it too I don't see why they wouldn't at the very least match it

#

I'm sure their internal models already have been trained and capable to handle larger context windows without drift

cedar skiff
#

claude struggles to stay coherent within the 200k, i can't imagine 1m being useful for much with it.

simple star
#

40 more minutes.... 💩 💩 💩

#

Today was tough

orchid plume
#

I'm sceptical about the 2M context rumours, maybe it's 500k or 1M, but even then I'm sceptical. I do believe that GPT-5.4 is real though, and what we've been seeing aren't accidental typos. I have a hunch we'll see a new model on Thursday evening (UK time)

boreal holly
#

Need 2 billion token context 🧠

Better yet, ♟ context window, and uses an entire storage device as a KV Cache so it remembers everything at all times

pseudo flame
#

irony: vscode plugin kilo.ai setup with openai just fine. next i try to install codex plugin setup, openai token failure. cannot setup.

tall zodiac
#

@ivory zodiac you

hushed storm
hushed storm
#

well tibo also leaked it

latent tiger
#

deepseek v4 dropping this week

#

OAi probably gonna hit them with the same time release just like they did to slopus 4.6 😂

fair edge
#

anyone got experience with 503 Service Unavailable: no healthy upstream?

wraith temple
fair edge
#

yep

#

ok so its not just me

wraith temple
#

they still didn't update this

warm pilot
warped pine
#

yeah some connection issue for me too

wraith temple
#

codex back online

main nimbus
boreal holly
#

I would actually prefer if they didn't touch the context/compaction. It's perfect the way it is. Perhaps add a knob that's like "sliding window user messages" that let X number of user messages stay in the window unsullied and anything older get compacted. That'd make it so you just have one agent and never need a new thread again

supple perch
#

(was making a joke sorry)

boreal holly
supple perch
boreal holly
supple perch
#

about wanting to compact at 80% remaining? It does so much better when you closer to the models true context window (32k all models)

boreal holly
cedar skiff
boreal holly
# cedar skiff you lose importnant front loaded data though

I'm not saying make it a global thing like "press esc x3 to archive the chat" lol or whatever cool UX stuff they come up with next, I'm saying add the knob. I have agents with no important front loaded data who essentially act as medium-term memory agents. I don't need them to remember what some agent was working on 2 weeks ago, just what the current agents are working on right now

cedar skiff
#

RIght but it's not infallible 😛

boreal holly
simple star
#

<cries in linux>

hushed storm
simple star
#

đŸ€š

orchid plume
simple star
#

2 more weeks

#

Jesus, 96% of quota already after 1 hour... đŸ˜±

#

This is gonna be... tough

flint isle
#

Hey does anyone know how to open multiple codex chat windows at the same time in vscode?

cedar skiff
flint isle
#

thanks for the reply, I meant in the codex extension on vscode

#

Claude extension allows multiple chat windows, but not sure how to do that with the codex extension

frosty zealot
#

Is this the same as /fast for say Opus 4.6?

#

Or what exactly would this do

tribal lake
#

GPT-5.4 coming? But we didn't have general 5.3, only codex version... or did we?

cedar skiff
#

is anyone elses pr reviews taking a really ling time to come through?

sleek spoke
#

👀

dawn seal
#

hello first time using codex cloud, it did some coding but I cant find it

#

where is it? it says it commited to my git but I see nothing

cedar skiff
dawn seal
#

I do not see any branch at all though

#

I used a cloud workspace and the work is done somehow? but I cannot touch it

cedar skiff
#

list remote branches git branch -r it's probably there

dawn seal
#

D:\Projects Unity\20251010_MassiveMultiplayer>git branch -r
origin/HEAD -> origin/main
origin/main

D:\Projects Unity\20251010_MassiveMultiplayer>

#

oh I just received a pull request

raw hill
#

all codex cloud results in pull requests

#

pull requests will use the branch it creates

dawn seal
raw hill
#

you have to commit prior to the pull

dawn seal
#

it commited on the main branch then requested pull from other branch

raw hill
#

ahh yeah thats weird

dawn seal
#

yeah

raw hill
#

the AI likes to sneak little hotfixes into main without PR

dawn seal
#

I think it might be just internet

#

I think it did commit to main branch and pushed and fixed the bug like maybe my UI didnt update

#

i dont know

#

its weird

desert vapor
#

Who uses an Agent builder like Vertex or AIP?

cedar skiff
#

is this korean?

cyan wing
#

noo what did i do 😭

cedar skiff
#

ok and then i get this?

stream disconnected before completion: This user's access to gpt-5.3-codex-premium-1p-codexswic-ev3 has been temporarily limited for potentially suspicious activity related to cybersecurity. Learn more about our safety mitigations: https://platform.openai.com/docs/guides/safety-checks/cybersecurity

All i am doing is fixing up unit tests?!

cedar skiff
# cyan wing

i got the same thing at the same time that has to be a mistake right

cyan wing
#

yeah must be

#

thank goodness, not the only one

cedar skiff
#

Lets hope it's many ppl getting the same thing, so it's a quick fix

hard tulip
astral pine
hard tulip
cedar skiff
astral pine
#

Must have been a server hiccup.

cedar skiff
#

5.2 is smarter

hard tulip
#

no

#

its not

#

like what

astral pine
spiral moat
#

mine says 5.4???

ember venture
#

I thought it was odd it returned me a single emoji in a response

hard tulip
cyan wing
spiral moat
#

incredible

hard tulip
#

you look like gpt-5.4-ab-arm1-1020-1p-codexswic-ev3 @cyan wing

cedar skiff
#

I just told it to carry on and it went forward normally

cyan wing
spiral moat
#

Running some benchmarks with local models, not doing anything cyber related

hard tulip
#

@sama fix your servers

cedar skiff
#

still using 5.3

cyan wing
spiral moat
astral pine
potent mason
#

Ugh translating a website to another language is so annoying

#

I wish it would just spawn 12 subagents to get them to do it😂

true bane
#

hmm my weekly usage page says 100% and been doing stuff for the last hour

simple star
#

@true bane Limits have been reset, due to technical problems

potent mason
#

Bruh that's awesome on their part they where down 8 minutes and replaced it

cedar skiff
#

It is a rolling window though. so they are just moving its position in some cases if you were doing extra usage you might be better off.

potent mason
cedar skiff
potent mason
#

No I'm saying theres no scenario where you don't benefit from this you implied their are scenarios were it got worse

cedar skiff
#

If you managed your usage to last a week you gain nothing

potent mason
#

You do get something instead of using about 420% in the month you might be able to get 450 or 480

cedar skiff
#

it's a rolling window though, you are bottling it up into a month idea, its not a month idea, it rolls forever.

potent mason
boreal holly
#

I used like 13% and it went back to 100% so I got a days worth back. Can't complain!

cedar skiff
#

You still get the same amount of usage over time if you managed your usage for the daily allocation. The only differences is a sociological expectation.

#

windows dont reset when your month does

boreal holly
#

The only time you waste usage is if it's at 100% and you don't use it. Or you never hit 0%. It starts counting 7 days from the moment you use it at 100%, so if you want your rate limit to reset every tuesday at 8am you let it sit at 100% and use it at exactly 8am on tuesday, and always use it the instant it is 8am on tuesday. No rolling window

potent mason
cedar skiff
#

You still just use 15% per day, you dont have any more than you did before.

potent mason
cedar skiff
#

I'm talking about normal managed usage, not trying to game the system

boreal holly
cedar skiff
#

Most ppl arent canceling their sub and rebuying to gain a few %

potent mason
#

Next month I decide which set of subs I want

next ore
#

anyone else had their usage limit just reset early?

#

I was at 0% for the week till march 4th but it just reset

#

new model releases reset weekly limits

#

Nice!

rich ridge
#

I had 100% too

next ore
potent mason
next ore
#

does this happen often?

#

online googling says apparently new model releases mean they reset the weekly limit

potent mason
ivory zodiac
#

🙃 🙏 😏

orchid plume
#

the creativity going into the 5.4 leaks is impressive, appreciate the rate limit reset 🙂

frosty zealot
boreal holly
# ivory zodiac

Nice! All I got was "Congrats on your first automod filter violation!" you got a flippin' reward lol

frosty zealot
fallen kettle
hard tulip
hard tulip
#

đŸ€”

hushed storm
#

They are doing 5.4 ab test

#

Or tried at least

hard tulip
cedar skiff
#

Might be a claude model release soon as well.

hard tulip
cedar skiff
#

it's down atm, and the usage page is playing up.

#

they falling behind, they need something.

civic oriole
civic oriole
#

oih

hushed storm
civic oriole
hushed storm
#

what do you have to do to be a top plus user bruh

hot egret
#

It’s crazy, ever since it was released, despite the updates, I still haven’t been able to open it.

orchid plume
rocky fog
#

did the codex limits reset for some reason?
I had like 10% weekly left until 8 march
but now its back to 100% until march 10 heh

rocky fog
dark grove
#

i chat ts to want to see how much is chat delay

#

uh

wicked briar
#

is very slow for me

#

testing it out for UI

rich trellis
#

Good morning. Does anyone have any information on when Plus users will be able to use Codex with full GitHub integration? Currently, lthough it can read repos and generate diffs, it does not seem to be able to push to GitHub.

velvet wren
rich trellis
velvet wren
rich trellis
# velvet wren Plus subscriber and using macOS

Thanks. I'm a Windows user so it looks like I'll have to wait a little longer. The workflow using the normal chat interface isn't so bad but it's the GitHub integration that would reallybe nice. Thanks for your help.

sleek spoke
#

anyone think they've got 5.4 in Codex through the a/b test?

orchid plume
warm pilot
glacial ginkgo
#

Working in a Rust codebase with gpt-5.3-codex xhigh I have found that a prompt "Review src/<source>.rs. Fix changes." will run and make changes. But resubmitting the same prompt again always leads to more changes. I changed the prompt to "Review src/<source>.rs. Fix changes. Review again. Keep working until there are no more issues." But it still seems the model never converges on a state that won't keep changing. Has anyone else seen this sort of thing? Is there a pattern or best practice to avoid it?

deep lily
#

F

brazen kettle
#

Does the macos codex app use codex cli in the background? Is it worth using instead of codex cli or does it have less features?

exotic cave
#

Looking at benchmarks alone and Gemini 3.1 is huge jump from Gemini 3.0. I don't use it as my daily model, but it shows Google is here for the long haul. Wonder what OpenAI is working on, because if Google keeps at it they can drive a lot of companies out of the race.

simple star
boreal holly
# glacial ginkgo Working in a Rust codebase with gpt-5.3-codex xhigh I have found that a prompt "...

You need to give it concrete completion criteria. Just saying "build app and make no mistakes, don't respond until app done" is super low entropy and it will never, ever work until it's done. You need to do it in a series of concrete steps:

  1. "Review src/<source>.rs, create a list of compile errors, security flaws, gaps in functionality based on what the file is supposed to do, and save a report of your findings to <source>.findings.log"
  2. Copy results, paste into chat with this template:
    """
    Here's a copy of your findings permanently in memory, so you will see it as a user message for the remainder of the session:

{<source>.findings.log}

Your completion criteria is to patch all of the items you found in your initial report, write and run unit tests that prove the patches are in place. Your end-of-turn natural language response must include a list of every single finding and a description of what you did to remedy the findings on the list. Do not respond until all items in the findings have associated actions and proof. Example final response:

## Files touched
- ...

## Actions taken
- ...
  - Solves: ...

"""

That's actually all it takes. It could work all day on that. You have to tell it exactly what you expect their final response to be.

glacial ginkgo
#

I think it is clear that an open ended "Review this code" is too broad. However, that is also where there seems to be to most value for finding unknown unknowns.

wide schooner
#

❀

#

codex best

#

wish more people switched to claude so we get even more quota

boreal holly
#

I gave my agents a $request-review skill and a $finis-hturn skill. The finish turn skill says they must run static code analysis, unit tests, request a review, and if there are findings in review they patch and restart the finish turn process, otherwise stop when done and present final response in a specific format. Request review is done by another agent using codex exec review --json and deserialize the final response (also has a remote code review switch). Anyways finis-hturn skill is probably what you're looking for, if the goal is rigorous and autonomous code reviews

#

And yes, the hyphen was moved to avoid triggering automod

inland bramble
#

I'm waiting for it... a mid-tier plan... ChatGPT Pro Lite. When will we have it?

torpid trout
#

Here's something that is worrying me, maybe someone can shed light

  1. I had a branch locally with a file scan.sh which was added to gitignore
  2. I commited and pushed/merged that branch into develop, then deleted it both locally and remotely
  3. This effectively removed scan.sh from my entire codebase no matter what
  4. I then promoted codex in a NEW cli chat to implement CODE TEST COVERAGE
  5. It said a few things and amongst them...
‱ Explored
  └ Read scan.sh
....
....
I found there is no scan.sh in the current tree right now, so I am switching to building a robust local pytest + coverage setup that
  Sonar can consume (coverage.xml) and then validating the percentage locally.

meltingshock
Is this a very unfortunate coincidence or... this looks like memory to me, yet I have memory turned off

#

scan.sh is by no means something typical either for tests nor Sonarqube, it was literally a temp file I used to ... well, yes, scan with my sonarqube instance manually
Codex was aware of that file during that time, but as said, branch is gone, chat is new, memory is off.

boreal holly
#

This also means force pushing to master btw so be aware of that

torpid trout
#

that's the thing, it was never commited to start with
I added it first to gitignore, run scans, fixed, commited and pushed, and that effectively never added scan.sh

#

the only literal reference to it is in gitignore file

#

(because actually I intended the file to persist but forgot that a commit > merge would remove it since it is only on that branch lol)

#

From what I see, it EITHER read the gitignore and somehow for whatever reason also decided to read it, OR, it persists memory despite the GPT setting, OR, it is an accident and it assumed a scan sh file to exist for whatever reason
Neither looks very reassuring to me 😄

boreal holly
torpid trout
#

PS here should be proof enough:

bedas@apollo project_name % git log --all --oneline -- scan.sh
bedas@apollo project_name % 
torpid trout
ivory zodiac
#

Best Potty Mouth

torpid trout
#
‱ Explored
  └ Read scan.sh
    List ls -la
    List rg --files
    List ls -la
    Search scan|fetch|hotspot
    Read sonar-project.properties

──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

‱ I found there is no scan.sh in the current tree right now, so I am switching to building a robust local pytest + coverage setup that
  Sonar can consume (coverage.xml) and then validating the percentage locally.

‱ Explored
  └ Read requirements.txt, README.md
    Search pytest|unittest|coverage|tox|nox|conftest|tests in .

Those dots are grey on the cli

#

So... it did NOT find them?

boreal holly
torpid trout
#
bedas@apollo project_name % git log --all --full-history -- "**/scan.sh"
bedas@apollo project_name % 
#

yeah, as epxected. Also gitkraken does not show it, I am 100% positive I made sure to add it first to gitignore for some reasons (hello access keys...)

boreal holly
#

What the heck lol they oughta fix the Read to be dark red or something so it doesn't look like it successfuly read an existing file

torpid trout
#

also, note that in the READ thingy, one of those files does exist on my repo - so that one it can read (the sonar-project.properties file)
This is certainly weird.

#

I will see once it is done in a new chat if it repeats the same stuff.

boreal holly
#

Ohhhh you know what, sometimes codex likes to do cat somefile || true which shows up successfully in the UI. Codex does not like it when a command exits non-zero

#

They pretend like everything has set -euo pipefail and so they add || true to a lot of commands, when in reality it's not like that by default

torpid trout
#

right, but... why scan.sh? Just out of the blue a big coincidence?

boreal holly
torpid trout
#

... which somehow translates to cross-chat memory, something I thought turning "memory" off would be off

Anyway, I run a new chat, same prompt, it does not read or try to find that file anymore

#

This is a weird one.
Fishy. Kind of a "ups I slipped something I should not know"

boreal badge
#

🐁

mellow smelt
#

I just wanted to share two points of kudos with the Codex team if they monitor this channel.

  1. Thanks for still having a password login. Anthropic didn't have this. Even if
    you layer it with TOTP or whatever, I still enjoy not having a single point
    of failure with my gmail account.

  2. And the second is allowing OAuth access from third party tools. I use
    https://github.com/editor-code-assistant/eca with emacs myself.

    I believe there ought to be a(n) [AI-assisted?] way to differentiate those
    who abuse oauth from those who simply want to improve developer tooling. It's
    the reason why I ended up paying for codex over claude code or gemini cli.
    The ability for solo devs/power users to build upon their tooling without
    needing to pay the same production rate for API's might be a smaller customer
    segment, but one that I think lends to much vitality in mindshare over the
    long run.

Frankly, the difficulty of my work means any frontier model can hack it.
Choosing between commodities then means Developer UX was the differentiator for
me. Keep up the good work.

rustic pine
#

I want to "Plan" with 5.2 ... but "Implement" with 5.3-codex ... but after you run through a plan session with 5.2... it ends with a nice ask, "Do you want to implement this now?" ... but I just cancel out of that, then switch to the codex model and then ask it to implement it... am I doing this right? 😄

rigid meadow
#

love it when it randomly switches languages

wide schooner
#

why did they add monthly quota instead of weekly that sucks

orchid plume
#

monthly? I don't see a monthly quota. I see a 5 hour quota and weekly quota

cyan wing
wide schooner
#

🙏

#

i was scared

#

the quota so good i didnt realise

cyan wing
#

Anyone have a tmux automation for:

  • auto-select Plan Mode with (Recommended)
  • auto-submit Implement plan
raven kettle
#

Why is the client macOS-only? Weird platform choice.

#

I'm scratching my head over this as Macs are luxury devices and most engineers don't run Macs.

sleek spoke
#

OpenAI just posted on their Threads account that the Windows app is coming tomorrow

plucky halo
cedar bear
sleek spoke
#

Yes FR, and no idea lol

#

maybe Windows users use Threads instead of X......

cedar bear
sleek spoke
cedar bear
raven kettle
#

I guess he's friendlier with Zuck?

latent tiger
#

if we get 5.4 before windows app im gonna laugh

meager wadi
#

No wonder the errors we got recently were mentioning 5.4 (in reply to recent message in announcements)

snow hornet
#

5.4 today?