#codex-discussions
1 messages · Page 14 of 1
i mean i have 2 projects it didnt work for neither
so i guess full access is the temp solution rn
wow
what!
nothing i mean it's just strange
the issue? yeah
yeah
This is a windows codex app issue isnt it?
OK so precisely what command is it running that's editing files without using apply_patch then?
it did say it failed to use apply patch
here
Did they reset the limits AGAIN??
@cyan wing Happy xmas
Oh gotcha, so on Windows, Microsoft decided to use CRLF line endings, whereas all other systems use LF. You have git for Windows configured in a way that Codex is trying to apply a patch using LF like it was trained, but since the file has CRLF line endings it is failing the size/parse check
So perhaps tell Codex about this and see if it can discover the right way to do line endings
i mean it gotta be a permanent solution for this instead of having to tell it every time
Or, perhaps it's writing a patch file outside of the workspace and it is hitting the sandbox
The permanent solution would be using WSL and operating inside that
whats WSL
Follow the guide here https://developers.openai.com/codex/windows
i mean can i still be using the codex app though
yes, codex app supports WSL in settings
ah WSL
i installed that earlier
GPT told me too lmfao
not sure if i have to set something in configs
for this to work properly tho
Man, GPT really gives the best advice imaginable
The link I shared has precise instructions for integrating and using WSL in codex for windows desktop app
Gosh darn, I was just making a guess earlier! Yeah, one of the most frustrating things, besides files not being openable by multiple processes, as well as everything else, about Windows is the CRLF
but is this a codex issue
or on my end
ill just switch to full access
fuxk that
works now
it doesnt its leaking
is it my fault or the apps fault?
havnet had that with codex yet, had it with claude code many times
not your fault, just kill it
@cedar skiff going to see if codex can fix itself
bc its annoying when I want to run long tasks and then this happens
Have codex build a better and truly native app with no leaks 🤪
i made a patched version of the codex app after finding the root cause
open source wen 
I used Codex until 1%, then it renewed to 20% weekly, and now 100% even though it was due to reset on 11th. What gives? Why did they renew it early? (Not complaining)
Anyone have answers lol
I heavy use Codex so its just...interesting
saw the github post
noice
they should regularize gifting quota resets 😛
i'd take ads for it 😛
yeah probably bc they were havign issues where it was being consumed faster for 0.01% of users
but hey im not complaining
OK, so apparently they updated Codex so if a thread starts with certain configs like writable_roots, and you add more later, even if you restart codex it will keep the old writable roots. Basically the sandbox settings are almost thread-permanent
You have to undergo Herculean/Olympic level mental gymnastics to get it to pick up new configs
Bro 5.4 is a token hog on high reasoning without fast
im burning through limits faster than 5.3 codex
at this rate i will need two pro accounts
on pro? 💀
yep
dude im on plus on a largecodebase and its keeping really well
I have burnt 16% in 3 hours @lunar aurora
i've used it for the last like 2-3 hours on a large codebase still have 83% left on PLUS
Why didn't my usage limit be reset?
im on pro plan
how do you have the same usage as me bro
and im on plus
like
ive used the same
16%
and im on plus
maybe bc im using subagents on plans? @lunar aurora
yes multiple agents on one thread
@lunar aurora
i dont remember 5.3 codex dropping my usage like this even with subagents LOL
Depends on the task you get it to do, i got it to make a manual testing instruction set for testers to work through. The project has ios, android and web. Took 17 agents and cost 4% of weekly and 15% of 5 hourly
it took 23 minutes
yes if u use code-review tool u need fresh eyes on your code not the same agent that wrote the code
Has anyone got actual multi-agent feature working in Windows Codex on WSL? I queried 5.4 Pro after my Codex Windows app using 5.4 Extra High complained 'I don’t have an actual subagent dispatch tool in this environment'
The GPT 5.4 Pro gave this this?
"I found the main blocker: WSL is only the execution environment. OpenAI’s docs say the actual multi-agent feature is still surfaced in the CLI, while visibility/support in the Codex app is “coming soon.”
Separately, the docs frame subagents as an experimental feature you enable in config or from the CLI; the Windows app can do parallel threads, but not that dispatch tool yet.
On the other hand "Peter Steinberger" posted on X that he uses "Sub-agents" in Codex app, Any knows, How? -- see screenshot
thought thats completely fine
code review is that for bugs though?
subagents work for me on mac
"Review against a base branch" is that the one? -- aka CURRENT up to date files
yeah it should catch bugs
is it this
i mean i always have the agent verify its work with tests and ui evidence
glm5 is really good btw
and wasnt pro unlimited gpt 5.4?
they just havent updated the forum from 5.2 to 5.4
Have any of you guys been noticing your weekly limit reset daily? it's been happening to me, odd
never heard of unlimited
yes because the codex team is gifting us resets
because they keep finding bugs on their end
Oh I thought they would just make it last longer, looked like a glitch lol
nah they just wanna keep the dev community happy
https://i.imgur.com/sUDkg2p.png they just updated it
Honestly I'm at like 92% after hours of work, how exactly would I use my whole limit in a day or a week
@quasi canopy
oh gosh
@tall zodiac *
better picture
"gpt 5.4 thinking unlimited"
interesting
so how are you running out
idk
@lunar aurora
Guys is anyone here good at using worktrees + branches?
I'm running into an issue where after I convert my worktree into a branch with a PR, I can't get it to do anything else if I want to continue working on other things at the same time (it starts overriding the other branch I'm working on)
That's not for codex
That's for gpt website
Guys is anyone here good at using worktrees + branches?
I haven't tried those yet
You can find the limits for codex by looking for them
That makes sense
just figured
worktree is a local repo wrapper for a branch.
Their purpose is because a repo wont allow for more than one branch to be checked out.
worktrees solve this problem.
I'm not exactly sure of what you are describing as your problem.
Yeap that's why I'm using worktrees but from there I have to make a branch to do a PR from it (all good until here), then when I want to address the comments on the PR before I merge I have to do it from a branch (this is the part I'm probably doing wrong), and then from there you can probably guess what's happening (having multiple branches and multiple agents modifying it at the same time they end up writing code in a branch that is not their own).
If i understnad what youre saying is you are trying to do parallel implementation with agents on the same branch?
Gentlemen, I can confirm
Sort of but the problem isn't the implementation it's addressing the PR comments
5.4 has become IMPRESSIVELY better, as I deleted all my AGENTS.md
It might be time phase that out
parallel implementation is a problem though. The short answer is don't
address the comments with one agent sequentially
Well that's just not an option that's slow af
If I need it to be working on two things (let's call it feature seed data, and feature desktop auth with PKCE) I should be doing it in parallel
I caught up by never making one in the first place 
worktrees are the solution to parallel work flows.
What i do is have several worktrees going with different tasks and i merge them to main as they are completed.
So i'm not waiting around for sequential work flows. I do other tasks in other work trees.
Yeah but most people can't merge to main immediately (first it needs to pass AI code review, then a human needs to test things out in the preview deployment, then all the comments have to be addressed and only then can you push to prod) that would work but it's like a glass cannon
Yes, we are on the same page, so i have sequential workflow on worktrees they all go through automated reviews I'm like code rabbit atm.
I work on a worktree branch sequentially until it's merge ready. Any time I need to wait for that workflow I work on another work tree on another task - also sequentially.
When i merge i do a full round trip.
How do you work on something else when the PR comments are now being addressed on a seperate branch?
I dont have a seperate branch, I make a work tree and work on that tree stays there until its merge ready.
When i have to wait i make another work tree from main and start another task.
eventually they all just merge to main as they need
some times i have to sync with main on a worktree because its been a while
You can do a PR and keep it as a worktree? That's exactly what I was looking for
when you make a pr its to merge a branch, you can have that branch checked out in a work tree
i mean it usually is because the nature of the system anyway
A worktree is essentially just a carbon copy of your repo (but when its created it respects the .gitignore, so your secrets etc. are not automatically moved into the new worktree, I had Codex create a worktree-create.sh script for me that handles creating and symlinking secrets so I can do smoke tests from within the worktree) it has its own branch, its literally just like working in your main repo, on a branch, but with worktrees you can work on multiple branches at once
Which is pretty much what Eric already explained
Codex really simplifies working with worktrees though its really nice, I wish the cli was as intuitive with it 🙁
Yeah I was aware of that part, what I wasn't aware of was that you could do the PR from the worktree I kept clicking the creaye branch at the top
And it would start causing a mess
The branch name afaik is just copied from the thread name, so if you wanna be hyper efficient, rename the thread to whatever you want hte branch name to be lol
THEN create the branch
im usually lazy and my branch names are just the first 4 words I typed in the prompt lol
I just wish the shift+tab planning mode worked like the CLI where you could set a planning reasoning level, and a default reasoning
Unpopular opinion, I wish they'd just put all their eggs in one basket and stop with two parallel things, just go all in on the codex app and call it a day
I feel like I need to bounce between the cli and the app depending on my workflow at the given time
What font do you guys use im getting kinda bored of Fira Code after years lol
eventually cli will will be niche
Is this a guiding prompt, or does it copy paste verbatim into the body of a PR. etc.
The way it reads, 'Append to pull request bodies' but then it says 'Add pull request guidance' makes me confused on the intent here
did anyone else's usage just get reset?
Earlier yes
wouldnt this be a worse model?
Negatron
ah its the same but 2x plan usage
yep, 1.5x speed for 2x cost.
Actually no, fast doesn't mean a tiny/worse model. OpenAI had a partnership with an inference company that can run their huge models faster than they can, but that company doesn't have enough servers for everybody, if you can use fast mode you should
"uses 2x plan usage"
and its not even double speed
so its like
Your choice
the margin is off but
Technically, you'd be just operating at default usage quotas since we're currently at 2x until April lol
yes /fast
when I get it it'll be so cool
I wish there were automations in CLI
What kind, couldn't you just press the up-arrow until you find the prompt you want to use again
or like scripting codex to do something with a given prompt from a ./script.sh file
Lets just keep banding together and saying we're draining quicker than expected so they keep resetting and investigating
They reset again? lmfao
whats this again
I'd rather they spend that time developing the app then get a little bit more usage out of them
ngl
I'm very excited for the codex app to drop for linux
You're just hoping they're looking in here arent you
I wonder why they havent yet, unless they're developing a socket
dude it keeps rejecting if the file is too large, even 600 lines bro 💀
"Good news
Once Codex switches to stdin patching, this problem disappears entirely.
And they likely will — because it’s a known limitation."
Codex is stuck thinking after a crash is there a way to force stop the thinking in vs code because the stop button isnt working.
Collective action hell yeah!
Found a fix by archiving the chat, the getting it back.
Does the loading spinner actually spin for anyone? I've never seen it do that.
Is there a way to intertwine codex with LSP servers?
Support doesn't exist. See: https://github.com/openai/codex/issues/8745
If you use Codex through VS Code, then when you use language extensions, there's usually a built in LSP behind it which does get used. If you wanted it in the app or cli, you'd need to build it, but it can be done
claude has lsp support it doesnt really help much
thank you to whoever keeps randomly hitting the "reset the $20 tier guy's weekly usage" button lately I appreciate it
you can already install it in linux w/ https://github.com/ilysenko/codex-desktop-linux (ask codex to install itself)
or you can use t3-code which is a codex client that was just released
I love workos but $100/mo for a custom domain is so excessive for most internal company apps
Anyhttps://www.reddit.com/r/codex/comments/1rnpm9a/weekly_limits_just_got_reset_early_for_everyone/
I didn't check yet, did they reset?
Yes a while ago
Awesome! Back to work... 😻
Bro does anyone else suffer memory leaks from codex app lol
people are saying the mac os app is good on twitter but i keep getting my memory destroyed
I am running the Codex App on my MacBook Pro, M2 Max with 96GB RAM on Tahoe 26.3.1 and no memory leaks
how long have your tasks been
when mine go for an hour or more
my memory spikes and crashes
I did a refactor yesterday which ran for almost 2 hours
maybe it could be because i keep polling the github action checks forever to resolve pr comments and stuff
and polling can cause it crash?
how Plan mode feels like
guys so whats better, gpt 5.4 xhigh or gpt 5.3 codex xhigh
just use 5.4
5.4 is the way to go
5.4 isn't really faster in many cases
I found it to be closer to 5.2 in speed in my tasks
Is 5.4 still taking 30% more usage?
Well idk about using open claw
How many tasks do you guys have in your plan usually?
I want to report a bug. I keep seeing an “Action required” warning message on the Codex Code review settings page. I don’t recognize who this account belongs to, and after clicking the Update button, nothing appears. How can I clear this message?
wrong browser sign in maybe?
Impossible, I tried different browsers and the same message appeared.
so you have the browser logged into that github account?
Yes. For sure.
anyone using 5.4 model in codex?
I do
See video
thoughts?
I like it
seems better to me, a lot of ppl dont like it. Its a bit easier to prompt than codex 5.3
cool, gonna give it a go today
POV: I was at 78% an hour ago on weekly limit now im at 68% not using fast mode and on 5.4 high with subagents
😐
if this is the burn rate with 2x limits imagine 1x
💀
why is codex on windows so laggy
it just basically froze for a few seconds
why is everything getting rejected
all the time
why does it take so much to get this to work on git?
why can't it just be exactly like claud? you literally click on your repository and move on
i have never seen so many errors in my life
with any program ever
Kind of just worked for me o.0. Are you on mac or windows?
windows
i was kind of excited too. i'd been waiting for this for a while
and then just out of nowhere it's impossible to connect to git
🙁
any ideas?
¯_(ツ)_/¯ I'm on mac
i can tell that by the amount of emojis you use
seems like a slightly jaded response for a normal conversation. Good luck with it 🙂
yeah my bad 67
Imagine thinking emojis are the reason mac has better support.
why are you so defensive? 💥 🏹 🧠 🐾 🧪 🩸 🎯 i believe you.
The people who write the software use mac, that's probably why.
🟡 ✅
absolutely
do you guys think codex would be able to code like a trading bot 🙏
been there, done that, got the t-shirt
what t shirt
yes, I don't see why not
idk if i should do this tho
like
idk what to code with codex
i want to do something that generates money
i think it for gpt-5.4-codex, and its not available yet
You and 8 billion others 😛
@boreal holly sorry to ping you.
Can I either pm you or pick your brain here in public channel about your approach to subagents?
I’ve built - I’ve let gpt build something - based on my understanding of what you do and your messages and screenshots you shared here. It built some ogratic monster that does something, but clearly not what I wanted lol.
So I’d like to ask you a few clarifications if you’re willing to spend some 20 minutes?
I just tested codex on mac and it works much better than on windows. it's really sad
I hope it get sorted out
How do you enable the 1 mil context
are you using pro or plus
pro
It’s a setting in the config.toml. The doc should have the exact key to use
But it’s probably not worth losing your time on it
Its bad?
Well it’s just thinning out, poisoning or how they call it the more context you have
In most cases you don’t need a million tokens context.
I think there’s some test called haystack with needle or so that asks the llm to return specific tokens in the stack and the more tokens the less reliably it does that, by what I understand
It’s like you wouldn’t clean your brain your whole life and expect it to still manage daily tasks.
yeah true
Yeah i saw some posts on reddit saying the more context you use it becomes forgetful
so the compact context is better
I don’t even let it compact. I’m out before that happens and start new
At around 30% I kill it and start fresh.
that's actually good tactic
Im using it for binary exploitation and such so when it starts reading assembly it fills up context pretty fast
where are you guys using codex on which os?
Mac
CLI Mac
yeah much better than on win
I love the app honestly
I switched to mac because codex work better
Works wonders
Same xD
Wish there was a linux app tho
mhh
I guess you could make one using codex app server.
nah maybe not everyone but still
it's pain on windows
It makes me drain. Like I’ve tons of ideas then I go 3 days and then I’m burnt and need to sleep for a full day lol
I think it’s a problem with too much possibility
You start being overloaded and shut down
me, not you.
why does the codex app cant spawn subagents
It can, I think? CLI can for sure. You need to enable it thou
In config toml, allow agents and max agents
what about the app?
wait
i think this is it
like
even if somehow all 8 billion humans wanted to become rich and build a successful business or smth
majority of them probably won't ever leave the planning phase
execution is the most important step
it doesn't matter if you got a brilliant plan if you don't start executing it
I also wanted to make something useful with AI but it's not so easy as everyone thinks
i built some stuff with ai already and for me at least it was easy
Just gotta learn how to prompt
yeah that's true but not for getting money I mean
everyone wants to hop on the AI train
The problem isn’t creating something. The problem is after you created something and then something more and something more.
It’s literally like you’ve infinite delicious food.
You’ll eat and eat and … at some point even the most delicious food will be too much.
Overload
That’s another issue
Of 8 billon humans only a fraction have ideas, only a fraction of those have the persistence to bring it to a production stage and even less to a maintenance stage.
That’s an old issue, mix of paretho and other stuff
Most folks are „do you have ideas what I could do“… and then if you give them ideas they’re like „but how“.
That’s why business works. There’s a few who do and many who consume.
If we where all producers we would have to sell our products to ourselves
i am coding my dads new website with codex and its been good so far. His current one is like 15 years old so
Absolutely! Whats going on?
That's actually the story for all apps, including Microsoft's own office software
I have my whole entire configs posted up at https://github.com/robertmsale/.codex/tree/main
It includes the global AGENTS, all sorts of really tight workflow skills with instructions dialed in for 5.4, and I recently found a workaround for long-running processes (created a wrapper/replacement shell for zsh that makes all commands waitable via MCP). It's pretty much done! Spent ~2 days dialing in everything for the new model
Do you guys think native app building is dead with how far things like RN, Electron, Tauri, Wails etc. have come?
wdym
Take RN for example, or something like Expo, you can eject and still implement native Swift modules or whatever as you see fit, but you also have hte luxury of developing using React, hot reloads, etc. greatly increasing the speed and efficiency you can develop your apps, and the in-app experience is essentially just as smooth as a native app
does anyone know why codex desktop on windows is failing to edit files? by default workspace-write is supposed to be in the permissions, but edits/writes only work when i change it to full access. if i switch to WSL it gives me issues with git, so currently native windows and WSL are both unusable in codex. ive been trying to debug it with codex to no avail
No, native app building should become the norm. Typically it's avoided due to development challenges. With AI in the loop the only excuse to do web apps is greed (must ship faster than light). I'm not a fan of "everything web" so my view is biased, but all the web/interpreter-based frameworks exist solely to make shipping on all platforms faster.
guys chatgpt 5.4 or chatgpt 5.3-codex for coding?
Looking at this I realize you do basically all of this with skills and an mcp
I… asked it to build a totally new codex app so to say lol
I’ll ping you if I have questions but the repo clarified a lot
yes
native apps are dead
Yeah, I reverted from a bunch of MCPs to just 1 MCP and a bunch of scripts. Turns out managing sandboxing and identity through MCP is neither easy nor enjoyable lol
I disagree. Native means maintaining completely different codebases and approaches per platform. It's the same reason we moved from assembly to higher level languages, we always converge toward the easier path. And even with AI, you'd still want one shared base rather than maintaining separate ones, AI just makes converging even easier, not the other way around.
No point of making the same app 4 different times for minimal performance gains but it depends on what it is for
native apps almost never have feature parity across all platforms they support, thats the main problem i have with them
look at the chatgpt mac os app (native app), its so outdated
Not necessarily. Most of the codebase can be shared by all platforms. The only thing you need to do is write some platform/hardware specific parts, but only if you need those things.
yea and then the users get mad because they have have to re learn the app for every platform
guys chatgpt 5.4 or chatgpt 5.3-codex for coding?
you see this a lot with IOS / android version of the same app is usually way different
I think there about the same but 5.4 seams so slow and i am on the pro plan
thanks
There's no shared codebase in native, Android is Kotlin/Java, iOS is Swift, PC is C#/C++. Completely different languages and frameworks. The moment you share code across platforms, that's hybrid development. You're literally describing what you were't a fan of.
That's really a developmental choice.
I write 90% of my business logic/state in rust. I choose Flutter as a renderer in favor of native GUI elements, which gets compiled into native machine code with very minor performance tradeoffs. For very minor platform differences I dig into Swift on Apple hardware, C++ on Windows and Linux, Kotlin on Android. The rust code is compiled as a dynamically linked library by architecture and loaded by platform. We're talking an extremely small percentage of effort going into platform-specific development.
There really isn't much reason to do "web everything" except shipping as fast as light not being fast enough
Why Flutter? I made an app with it like 10 years ago when PUBG released but havent touched it since
Didnt find it too intuitive and it just tried to solve issues that React had already solved
Dart also didnt seem to be widely adopted, and the ecosystem was lacking
But again this was 10 or so years ago
Google really cooked when they made Flutter. It's essentially a 2D game engine without a physics system. They created this perfect communication channel to native code using plugins.
For 90%+ of apps the performance difference between native and web is invisible to the user. Business apps, social media, e-commerce, no one can tell. And you're using Flutter + shared Rust, that's hybrid not native. Web tech has been the most practical path since before smartphones existed, AI doesn't change that. Even games run on WebGL now, the only exception is AAA titles. By your logic we should all still be writing Assembly, it's the fastest after all.
When I say native, I mean "compiles to platform ABI binary code and runs without interpretation". Flutter + Rust qualifies as this.
Furthermore, I'm not saying we should still be writing in assembly, and I'm also not saying web technology should disappear, but now that AI is speeding up development it's becoming possible to make apps that take advantage of the entire system it runs on with minimal overhead.
React native, you're shipping a javascript interpreter. Electron, you're shipping a whole entire web browser. Flutter + Rust you're shipping platform ABI binary code, heavily optimized for the device it will run on.
Why are the new models so bad at Front-end tasks?
It looks like they gets worse every time
i think it would probably say skill issue here
Someone know why i don't see 5.4 Pro ?
It's only available on the API
I am on the API
launch with codex -m gpt-5.4-pro
Whats that for
works?
Yep
Now i need to figure out why he cost 7x the price of Opus 4.6
how hash is it on the limit?
wdym
or you use api key?
Yeah i use api key
oh alright i though you logged in
do you know now? or is it too early to tell
its like 7tps on openrouter lol
Not yet i am finishing ETH and SOL smart contract
Then i will use it with EVMBench to try to find vuln
I think there's an error when you switch your wifi internet... it's like the whole codex thread stops working
Does anyone have links to benchmarks comparing 5.4 high vs 5.4 xhigh?
it may be related to the websocket update they did... it was hanging, so, I had to close and enter the app again to get it working
Thanks. I just rebooted everything.
Look at the official benchmarks openai released
Does anyone know of a way to see hourly codex usage instead of daily?
Guys please fix the limits drain
If codex stays this it will be unusable and expensive after the 2x finish and will be another claude
Phrasing
One thing that really helps is using a VPN like wireguard. The server with 99% uptime maintains a solid connection with OpenAI's servers, and you can roam freely. Wireguard will buffer the connection. I use it for SIP phone systems which are very sensitive to roaming internet connections (swapping from cellular to wifi) and it probably would work in this case
gpt 5.110.0
This is a very important issue, could use some updoots https://github.com/openai/codex/issues/13733
I did not spend 200 dollars for the pro plan for getting a buggy windows app
lol
hi can someone please let me know what you did to install the codex on the ubuntu dev server? i tried installing claude; it is successful and it is failing for gemini. looking forward to some suggestions and some commands here. thank you.
Have Codex convert this into a dev container:
#!/usr/bin/env bash
set -euo pipefail
if ! command -v docker >/dev/null 2>&1; then
echo "Error: docker is required" >&2
exit 1
fi
image_tag="${CODEX_AGENT_IMAGE:-command-parser:0.110.0}"
codex_version="${CODEX_AGENT_CODEX_VERSION:-0.110.0}"
tmp_dir="$(mktemp -d "${TMPDIR:-/tmp}/codex-agent-image.XXXXXX")"
cleanup() {
rm -rf "$tmp_dir"
}
trap cleanup EXIT
cat >"$tmp_dir/Dockerfile" <<EOF
# syntax=docker/dockerfile:1.10
FROM buildpack-deps:trixie
ENV DEBIAN_FRONTEND=noninteractive \\
TZ=UTC \\
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN --mount=type=cache,target=/var/cache/apt \\
apt-get update && \\
apt-get install -y --no-install-recommends \\
ca-certificates \\
curl \\
gpg \\
jq \\
python3 \\
ripgrep \\
tini
RUN mkdir -p /etc/apt/keyrings && \\
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \\
printf "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main\\n" > /etc/apt/sources.list.d/nodesource.list && \\
apt-get update && \\
apt-get install -y --no-install-recommends nodejs
RUN npm install -g "@openai/codex@${codex_version}"
RUN groupadd -g 1000 codex && \\
useradd -m -u 1000 -g 1000 -s /bin/bash codex && \\
install -d -o 1000 -g 1000 /home/codex/.codex && \\
install -d -o 1000 -g 1000 /workspace
ENTRYPOINT ["/usr/bin/tini", "--"]
CMD ["bash"]
EOF
docker build -t "$image_tag" -f "$tmp_dir/Dockerfile" "$tmp_dir"
echo "Built image: $image_tag"
tell them to ignore the command-parser and cleanup stuff
Also have em make the permissions more friendly and include whatever tools you need for your project
and ask it to make a docker compose file, for envvar and file mappings
so a quick question for the codex pros. i just downloaded the codex app for windows so it only does local repository and not online. is this correct? can someone tell me why the hell they did that and what the point of it is? or am i wrong and there is a way to actually do it?
they finally give windows some love and then completely destroy all my dreams in one app
i hope i'm wrong
there is codex web if you wanted it
pretty sure its https://chatgpt.com/codex/
oh yeah i use that frequently but i was hoping for the app to actually do it just like claude's
i'm just mind blown that they took all this time to make an app and then left out one of the most crucial uses
i think you can use codex web on the codex app, but im not sure.
yeah it would be amazing if i could get some clarity on that so i don't waste so much time trying to do it when it doesn't actually work
What do you guys run for your agents configs ?
Like max threads and max depth
you mean running it on someone elses computer? They already offer that
no i don't mean running on someone else's computer. i mean simply connecting to an online repository instead of local
I tried running max threads at 70 and max depth at 4 and my computer kept getting nuked no cap
100+ gig usage
Lol
yeah if this existed on the windows version, i'd be so happy
git clone
pretty sure it does
pretty sure?
obviously i have a local project ticked because it wouldn't let me connect to the git on this setup
but it's never given me an option to connect to git
thats weird, maybe its because the workspace isnt git controlled or something
So instead of creating on GitHub and cloning you created locally and need to connect to GitHub?
well i mean i did that because i had to just to test it. it wasn't exactly what i wanted to do
on the set up it gave me an option of two things:
- git
- local
every time i pressed the git it would error out over and over again. i just connected local project so i could actually start the app
i mean it's completely fine if it doesn't work. i just want to have clarification that it 100% doesn't work for windows currently and then i can move on
maybe its because you dont have the github app connected, but since you use codex web i dont think so
Gotcha. I would just git clone the repo, or open a repo that's already cloned. make sure your git config is set up properly. Make sure you have the SSH key in your git bash and it's uploaded to github. When you open the project it should just use your local credentials and remote setting
to be honest with you everything you just said was kind of french to me. i sort of understand what you're saying but it just seems like a hell of a lot of work whereas you can clearly see on the mac version that it's literally one button
i guess i'll just wait until then
i don't want to mess anything up
thanks for your help guys
That picture 90 shared, that button only appears on local repos with GitHub remotes and authentication set up like I described. Also I think you gotta log in on the web version and connect GitHub<->ChatGPT
yeah i mean i'm definitely connected already 100%. i use the web codex daily that's connected to my github but i mean i'll try again. i'll log out of everything and see whether i'm missing something.
thank you
config is hard, swe isnt going anywhere quite yet.
all sorted thank you. for some reason i needed to disconnect the git from online and then connect it back on again. it immediately recognised it.
windows on top
Going to give symphony a run on a flutter app i've been planning
It's definetly not one of the most crucial uses, it's one of the least important features imo
But I'm checking it out and on Mac at least it is available
Oh wait actually you just have to set up the environment
Anyways never used it before
What’s the problem with cloning it and pushing the changes?
Has anyone used the new codex security feature? I just saw it's available online
Maybe there’s an update in the app?
5.4 cracks me up dude 😂
Tysm
You guys should try uncodexify, it's just a list of hard nos for codex when designing so it doesn't make ugly websites / UI
I love this. You should link to the repo, tho: https://github.com/cyxzdev/Uncodixfy/
lovable is not giving me the 100$
- Codex web is still using
I’m running GPT-5.2-Codex in this environment.. Why? - When is codex web getting a model picker?
- I have run the same task 3 times keeps running in a loop and fails after 40mins.
Yeah, after 4 days of revamping, 5.4 is absolutely killing it now. Finally got full autonomous operation back
Is sad this is needed
I hate definitions defining hard coded values like pixels or „dont do this“ etc yada yada but unfortunately gpt really Jas a knack for 1:1 identical ui across the board. Had some users in here being hard on offended in past for showing how „their“ design was identical to „mine“ lol… but that’s gpt for the world. Not made for design, unless you hard drive it
Negative constraints also impact performance, and yet this prompt works well for 5.4. The other lab has their equivalent skill that works well with their model/harness.
that does make sense, the main advantage of GPT-5.3-Codex and GPT-5.4 is that they're more conversational
Yep
and you don't really need that in the cloud
How is it?
What's the point of using the Codex Web then? If it's stuck on a very old model now
I gave it a run, it does find gaps, but it doesn't have real understanding.
For example i have an unawaited aysnc function that removes a user from a sharing contract. The user is part of the internal system, and the sharing contract is only between verified users.
During that async timing the user still has access to the unshared data. It flags issues like this.
To be fair i only used it with defaults and havent built up any harness base for running scans yet.
So it can see problems but it doesnt have any understanding.
I fixed several issues it flagged, and flagged a few like the one i mentioned
Have you folks ever had the issue where you asked codex to move just an object on your screen just a bit and it says it's changed code but you look and nothing has changed? It's been happening numerous of times.
I was curious about trying Codex Security but when I discovered that your inputs/outputs can be used for training, I didn't go ahead. Looks like an interesting and potentially useful product for the future though when it's out of research preview
I'm ok with the code being used for training.
That happens with all models/agent cli's
There are no diffs in the code at all?
Nope like I want it to slide over a bit and it says it's removed a line of code and added a line of code. So I imagine it did change the code but upon observation the numbers change but the objective wasn't met.
Anyway to minimize this for future prompts?
i mean reviweing ai written code with ai?
OK so the problem is it didn't solve the issue correctly, although it did edit the code in an attempt?
hmm yes that'd be a fair summarization of my problem. Maybe because they assume all they had to do was change the numbers and didn't realize that the object was inside another box so it won't allow it to move. But sometimes that's not the case at all.
Some times they make mistakes and can't see the forrest for the trees just a like person.
I would look at the code and direct it more accurately.
If you can't do that you can try to refocus in a new sessions by telling the new agent that there have been several attempts that seem like obvious fixes and they have failed, and it should take a step back analyse and investigate the bigger picture to understand why obvious fixes wouldn't work.
Good ideas. I'll try these out over the next couple of hours. Thanks.
Also. Has anyone read any of this stuff? Any cool stuff with this update?
Hey Everyone,
I am migrating from Claude Code to Codex due to cost, and I have not been able to find a good reference for codex setup with sub agents and skilss, can any-one help in providing the best references for this?
I am in data science , my previous sub-agents in claude code included - architect, code reviewer, tester, applied scientist, research scientist, graph-engineer, back-end dev, graph engineer, ml-evalutor and demo-engineer
But not able to find trustworthy references or practices to adopt for codex so please help
are you on a Mac or PC?
Mac
get the macOS Codex Desktop app and that will make everything easy and smooth
@velvet wren - cant use the app due to admin policies
if you can't run apps then how will you use Codex?
Cli
you can install CLI on your Mac but not the Desktop App?
Hey, if it's a MDM restriction that usually only applies to app store apps. This one is notarized
Yes funny but true 😣
Did your administrator install Parallels?
No i can install the app but its usage gets flagged and have got warning! Cli is approved officially though
Interesting. Was gonna recommend installing a macOS VM and running it in there but sounds like that's off the table.
your best bet is probably the docs https://developers.openai.com/codex/multi-agent and some elbow grease
Does anyone know anything about CI/CD with the codex github application? How would you choose a model? Does it choose the latest model as soon as it is available? Thanks.
Yes thats off, so then i cant creat sub agents for my peoject the way we have in claude? Because creating global agent profiles will affect all the peojects
Anyone know when we will get access to codex security on plus accounts?
No clue, best thing to do if you wanna know is check the X account of the developers to see if they said anything
how 👀
Why do I keep seeing post on reddit about resets but check my business acc and its all still maxed 😆 🤣
So far im loving 5.4 but my tokens maxed on my accs seemed codex 5.3 was going pretty quick too I think it was just the fast option but all and all love the new features and model
How do you guys use agent teams and subagents on CODEX?
any docs to see some sort of tutorials or so?
I tend to prompt it if I havnt added a skill/workflow in
Ask for a team of subagents and give it a suggested team depending on the type of outcome or project
interesting. Do you have any intel on the matter? If not, it's ok. I can try these comments by myself.
I started originally passing my project from git into chat gpt then asking for a suggested team for what im doing ie as example id ask for a coder tester verify and so on lol sorry I'm not really good at my spelling lol thank god for autocomplete and ai haha
A reset would really help me out right now
I don't know if any admin is reading this cough cough usage is flying definetly not making it up to get it reset
Im calling the police.
in the codex app it never seems to check off the list items
Does codex app will be available on Linux?
0.112.0 is out
Hi guys I made mcp servers for fetching YouTube transcripts articles contents and validating sources any where upload to community
It’s for free
Just wanna share it with community
Bruh I'm so jealous of your 128 GB RAM
What is it a mac studio m3 ultra?
Its legal to have many gpt pro/plus acc and use them on codex?
Technically no
But I mean
They probably won't do anything
Its not? I probably buy another sub. Where is said that that is against terms?
Why don't you just look for their terms of service paste it into GPT and get an answer?
I'm not an AI I'm not going to give you an exact source
But from what I've heard they don't technically allow that
Cos is not listed
The limits are so high, resetting daily; I'm just using 5.4 High to review my entire codebase multiple times
I think 5.2 base consumed more tokens than 5.4 does
They claim 5.4 is more token efficient
I think 5.3 was made more token efficient, and 5.4 is 5.2 with a better lora adapter so a re-run of 5.3
I can only guess
Is GPT5.4 codex service down?
How can I install codex on a Linux HPC cluster when I do not have a superuser / root account, only a normal user account? Is that possible? Like, just for comparison Gemini-CLI can be installed via conda thus circumventing the need for a root account.
Yes it’s explicitly allowed, even using the same phone number up to 3 times.
@karmic shadow fyi
Many of us here are openly carrying 🤣 more than one sub I mean
no, try re-opening your terminal or app
usually you need sudo permission for package management on linux
Unless you already have npm installed which I don't think needs a password
Or if you don't care about organization you can git clone codex and build it in which case you can do everything from your home dir
Did you know how can i get the 1M context with 5.4 Pro G ?
That's nice
Also good cuz I'm devouring my limits this week
I'm past 50% and it's been like 2 days
The weekly limit is resetting every day
when it hit 12PM earlier I got another whole weeks limit
so burn as much as you can
the limits were reset because of some bugs with Codex
the limits won't normally reset arbitrarily like that
Packages in the conda ecosystem, just as an example, typically do not need sudo.
sudo is typically only needed for things that you install with apt, zypper, etc
when will apply_patch be fixed on windows codex
If someone had success installing codex in a HPC environment (I happen to be on Red Hat Enterprise Linux release 8.8 (Ootpa) if it matters), thankful if you could drop a line how you did it, thanks!
would it be possible to just clone and build it from your home dir?
then there's no need for installation
And then "just clone and build" each time an update comes out?
are you using /fast?
codex is very slow today, normally it starts quickly but today its like taking minutes before anything happens
even spark is slow
3 minutes before it even touched one file when I asked it in a new session to review the uncommited files
hmm
Yeah, I can second this
yeah, also both. Switching to opus 4.6 :S
also noticing slow response times from GPT-5.4 at the moment, way slower than usual. I guess it's under load
same for a small question it still thinking for 3m and going.
mine has been stuck at last reading a file for nearly 8 minutes so far 😄
same, codex is extremely slow right now and its not usual "under load slow"
well, i guess its time for day off then
yeah something is going on, right?
No DevOp or InfraOp here to ping?
at least it finally did respond
Yeah, re-prompting helps sometimes here by stopping and continuing the conversation. Still a workaround
is it just me or is gpt5.4 being extra stupid today? it doesn't seem to be getting much right
I can confirm. Perhaps they wanna normalize limit reset. lol!
Does codex suck at using code auto-generation tools? I noticed that it was manually generating alembic migration scripts so I put this in my AGENTS.md:
- After updating SQLAlchemy models, ALWAYS create a migration script by running the command `alembic revision --autogenerate -m "A descriptive message for your changes"`. NEVER create a migration script manually.
And it still never does it
In the meantime the status page says everything is fine , seems like they don’t know about this issue
probably not the kind of issue that gets automatically flagged
and I guess the team largely responsible for handling this are asleep
bro why is gpt 5.4 not usable today?
I have the same issue with other models . Seems like Codex is just very slow for some people, but no one at OpenAI is working to fix the issue yet
thats quite unfortunate
i found an issue here https://github.com/openai/codex/issues/14071
performance appears to be picking up again now
nevermind, spoke too soon, it was fine for a bit, now it's going back to stalling
https://x.com/minttttt____/status/2030978599063298449 lets grab their attention up up
Still slow on my side
Credit reset incoming?
maybe, but I can't see that happening for this kind of issue when people can't use their quota much anyway 😂
there's probably going to be another quota reset at some point this week for a different matter though, the ongoing reports of higher than expected quota consumption
Is GPT 5.4 painfuly slow lately ?
yes. not only gpt though, gemini and others as well...so probably one service started having issues and then everyone started doing the others and they couldn't handle the spikes.
Crap
slow and pretty useless. i've just had to revert the garbage it's created today and starting over with 5.3-codex
I have same issue with 5.3 codex
RIP vibe coding, 2025-2026
I was doing an automated QA process 🙁 😄
https://status.openai.com/ strange that they don't show any issues.
time to go back to binary
i never have understood why so many companies have status pages that...aren't correct
it's worse than not having a page at all
makes you even more frustrated than if there wasn't a status page
couldn't agree more 😄
but it's not totally off, I don't have the same slowness in Codex app.
my 5.4 is chillin whats everyones experiencing?
Reddit threads, openai community forum, discord
Everyone complaining
What the hell is this
And zero status updates from openai
Please check https://chatgpt.com/cyber.
Does it show that your account is verified?
In the past, if you did not do this cyber authentication, you would be routed to a different model.
my codex is not responding either, weird
I gave 5.4 the ability to ask their project orchestrator for more agents to manage complexity, and unlike 5.3-Codex and below, it instinctively chooses no fan out when it makes sense. I love it! So stoked!
I was authenticated, but then I was deauthenticated.
And then it started slowing down like this.
I think it's probably being routed internally.
for me disabliing /fast stolved most issues
@boreal holly do you ask codex to use subagents explicitly or does it know to use them when needed? I find that if I don’t tell it to use them explicitly it kinda never uses them
0.0
I don't have "subagents" in the sense that one agent owns a group of other agents. They're more like "peer" agents. Regular threads, but with the ability to send each other messages. The orchestrator is the only one with the power to spawn agents, and when it does, they ask the spawned agent if they need additional agents
Workers are assigned some super detailed plan, ask the orchestrator for additional help, and get put in a thread group where they talk to each other, create dedicated worktrees, coordinate DTOs, send milestone progress reports to each other and to the orchestrator. If a worker is waiting on work from another thread group they get paused, as soon as that work is done and merged, that agent rebases to pull in the changes and continue working.
help, bring back codex
interesting! Do you have it open-sourced by any chance?
hey! that was MY idea
anyone know why spark is explicitly told to 'NEVER use git' ?
my configs: https://github.com/robertmsale/.codex
the app server UI is still under development
oh spark is dead atm eh
0.0
Too slow I guess
Everything is stuck
from what I've heard and read, this issue isn't isolated to OpenAI's models
whatever infrastructure the big providers share in common, which are having this issue, is the cause
I love how every popular product has a "status webpage", yet the real status is only actually visible on downdetector
Which other providers have issues and which models are affected ?
Maybe a regional thing? Set your flag.
the codex cli (on wsl) could use better feedback, 5.4 xhigh takes a long time to respond currently and it just looks like it is ignoring input, when infact it is just being really slow to respond to my input
unconfirmed as I don't use alternatives generally, but I've been seeing some people elsewhere complaining about Gemini being slow today as well
was having the same, seems the trick is to give it a minute ..
oh?
is this for all the models?
A prompt of "say OK" takes >5 minutes to respond
I’m using Claude and Geminin I didn’t observe any slow down like we have in codex
dunno, but the symptoms were the same for me (gpt 5.4 xhigh)
Yea it could be this, works fine my USA colleague
across 5.4, 5.3-codex and 5.1-codex-mini
Iran hacking the network cables
I'll see if codex 5.2 works
probably they'll reset usage limits too after this
because It spent so many tokens for nothing
Thinking... for eternity.,,,
has an update
its workign in Asia and US, only Eu is down
restart it.
strange, well, maybe it's just a regional problem
is codex kinda slow today?
yeah
Shame
we're all having the same issue.
To copilot i go then
does it have a CLI
Nah
I'm working on a big project
BIG PROJECT
yeah it is, it's nearly unresponsive at the moment. On the bright side token consumption should be near nothing as nothing is happening anyway 😄 - probably reduces the chance of a reset though
with 10K + source files
I use VSC anyway, but thing is i would go to claude if usage limits werent bad
Well, I have to remove the dust from my keyboard and start to coding... and I don't know/remember how-to do it 😄
Kidna cooked too
Ask your local llm
I see.
I have glmt 4.7-lite local
I can code but it takes sooooo long
I don't wanna spent too much time on typing all the code
I just wanna tell the AI to 😭
Good thing i have copilot from student github lol
I only have 32 gigs of ram and 8 gigs of vram
i have 16gb of vram
how long usually are these down times?
we are lazy pepople!
does it work for c++?
Idk.. we just need to be patiented
I'm not..
it uses models like opus, codex and such
oh
oh cool
It something like cursor or kilo code
yeah
doesn't even respond to hello;
Wait
it worked
guys
I turned off the fast mode.
let's see
it's intermittent 😉 don't get too excited 😉
it works
started to work here too
yes, fixed.
it's been toying with me all morning 😉
Using codex, we will need a whole new type of timetrackers
it works.
One that can track 5 tasks being performed at the same time
but no usage reset 🙁
still down
it still down
Try to disable the fast mode
In the meantime, I would never have thought it where so easy, I solved that annoying codex kiling subagents the whole time
now, instead of "is taking longer than expected let me do something", it goes
No completion signal yet from spec_reader; I am
continuing conservative passive checks as required and
will only escalate if it stops showing progress
indicators.
boom sha ga boom
Try to disable fast mode
It's for macOS/iOS only
and I'm on high
was off personnally
gross...
ooh
still down
imagine using full access
this turns out to be an issue / bug with base level instructions. within codex harness it's fine, but via codex exec it's told to never use git. Annoying when I'm using Takopi
I see.
imagine manually acepting everything
right !
it can wipe the whole pc
why would it do that?
i have a pc, especially for it
and there's something called backups
u dont relaly know how it reacts, he is not wrong
someone i kow got wiped his data
imagine not having to deal with losing data
I see you have the agent on your Desktop. I also like to use Codex as a disk cleaner utility lol
i use mainly on wsl, but just to try if its still down i plug it fast
not wrong
still committed all of my changes, and it works !
did burn 4% of my 5hour usage.
in just 1 prompt; what the heck
im. using mac because codex sucks on windows
yeah, I'm staying with 5.2
Is Codex stuck for you fellas? Mine wont answer
5.4 seems to be stable right now, but U've been here before for a while 😉
yeah, have to wait a bit, its recovering i think
mine worked fine for a while and now it got much slower...but at elast it's doing something
Ok, thanks
Yeah you might wanna turn off the MCP that's bricked up
Is OpenAI queueing messages? I send a message, and it's working for like 2-3 minutes, and still nothing happened. 35% context left.
xhigh?
No, High
someone said turn off fast mode but for me that's even slower than /fast was .. so back on fast mode and it's going OK
Interesting... sounds like a bug then
It finally produced a response after 4 minutes. Didn't see this before but okay lol
this is the best it has worked all day for me now
So the issue is solved for everyone? On my side it’s still painfully slow
I had to switch to GPT-5.3-codex, GPT-5.4 was not responding
Still broken for me
it's definitely working much better than an hour 1/2 ago ..
Do you guys find 5.4 stops more often to tell you its not done yet?
I feel like 5.3 worked till completion now 5.4 is constantly like HEy we're not done yet but this is where we're at!
like cool i dont care lets wrap it up
Does anyone know to program manually? I tried the docs and they can't stop mention something called "variable"
Thats a very broad question lol
It's hard to believe that our ancestors knew how to do this by hand
My great-grandfather must have been a genious
i find this happens when the session goes on for too long
bruh this codex still doesnt work
for me works with VPN in US (5.4 fast)
is it still not working for me? is it the same for all of us?
broken
it works with us vpn
Yeah, this might be an unpopular opinion but I think that's a good thing. I put a lot of reasons to stop and give milestone reports for my agents. Giving them "work until completion, do not stop" encourages them to complete by "any means necessary", even if it means nuking the codebase, allowing compilation failures to pass through, etc. If they have many good reasons to stop it gives you a chance to evaluate and recover from real issues.
And if the reason they are stopping is not a good one, you let em know and they continue, update the docs for the next agents so they know that's not a good reason to stop. Basically you want em to cease forward progress if the progress is detrimental to overall success
I understand for a long standing repo with a lot of nuance etc. but when im trying to spin up a prototype test for something i dont need it to stop and be like hey we made the front end but the server still needs to be made so we cant test anything yet
like ok so make the server lets getsomething working here then we'll start to fine tune
backend issue
hope for more resets haha
Gotcha. A quick QoL enhancement, if you have tmux, is have 2 panes with 2 codex instances running, set up the notify= script to tmux send-keys "$NOTIFICATION"; sleep 5; tmux send-keys Enter to a pane where the agent is instructed to issue continuations to the other agent using tmux send-keys "$CONTINUATION"; sleep 5; tmux send-keys Enter. It's not the most robust setup but it does work to some degree if you just want 1 agent to keep going
Mainly just using the App for now cause of the worktree integrations but ill take it on the chin
and back to slowness 😉
Just use fast mode lil bro
what VPN do you use? mullvad seems blocked
@boreal holly I mean ppl say the same thing about my feeling with windows so I did not mean that mean, just as a yucky I wish it could support linux too
Now it is working for me
yeah
guys
how can I actually setup mcp_cpp?
It’s not just a toggle?
oh really?
💯
The best I can do is package the server stuff in a Swift package and let Linux folks build a UI with it. It's 100% native
I gotta say though, watching Codex / Claude execute terminal commands has made me way more efficient in my own personal terminal navigation
Settings then MCP servers?
Seeing them ripgrep everything in a flash has really changed the game for me too lol
but there is no mcp-cpp there ^-^
wait I was talking about the link, not the ui or server...
sorry for the mix up
You mean like how the agents talk to each other?
Ah, I think it’s just install then plug in above this
proton
okay
I must be looking at the wrong thing, sorry to be a bother
Lowkey ask codex to do it, just elevate the access
oh yeah
My configs probably work on Linux just fine, but the way the agents communicate is through the macOS app, and that skill is gitignored for now
wait, what will mpsm/mcp-cpp do?
it's definitely slow YAAF is my framework
- 14:55:10 YAAF successfully created the turn and began waiting
- 14:57:14 Codex emitted the first runtime notify saying the turn had started
almost 2 minutes before codex returned anything!
yeah...
What'd you guys do? My codex is broken now
Listening to Mick Gordon - BFG Division while Codex is just scrolling text in my face is the weirdest vibe rn
Hmm? What is mcp-cpp for?
yeah
What's Corebryo?
My old vibe-coded engine 🙂
Well what's an experimental game engine?
yes.
Now I'm working on a better one..
We love Vulkan though
does vulkan have an mcp?
Hi
Apparently so
ooh, will then codex write better Vulkan code?
No clue
does anyone face this issue whenever attempting to /compact ? I have seen an issues is made already but the fact I am not able to get any long process done got me sus there may have been a bypass for it , ( i am on plus subscription)
It's a server issue as far as I know
It's been a while like that, not a current status or smth
they're probably adding more ram to the super pc's
but well, that happened to me too
but now it looks like it's working again
I'm constantly having to compact so often, i know folks here have said raising the token max decreases quality but does it decrease significantly/noticeable enough by using say 350 vs the 258?
We might be cooked if we can't code our projects without codex
How'd you get flagged as a scammer? 😭
Well since Codex is building Codex, they probably put an arbitrarily low timeout lol like they always do
I have no idea, what does it say?
hoping we get a token reset for this, I've had partial implemented stuff all day 😂
Is it since v0.112.0 was released or am i wrong?
Yes, quality drops quadratically beyond the default ctx.
It's not worth it at all. OpenAI really cooked when they designed remote compaction. They have a special model on their server that preserves the mental state of the agent throughout the conversation, and this works better than having massive context
Damn, that sucks 😭 I'll open a support ticket with Discord, thanks for flagging.
I don't wanna get banned lol
It's because you've entered a lot of servers
Okay thank you for this, I really appreciate it and won't touch that setting then. What are your thoughts on High vs Xhigh? I've always used Xhigh but I'm reading multiple thoughts and it seems 50/50 on what people suggest.
If you're compacting often, you should have the agent run all noisy commands like this noisy-command 2>&1 > result.log and ripgrep the result.log file, instead of letting it just consume the whole output
Xhigh performs marginally worse, and it can reason up to 50% of its own context window in 1 shot in that mode
Okay, I'll do research on this and figure out how to change since I"m compacting every 5-6 messages.
Thanks, I'll get High a try then, maybe that will help solve my compact issue then
I like it depends on the amount of instruction you provide in one message, and how detailed you are with your descriptions
Sometimes XH can be used to if you ask it for a lot of things at once, in addition to plan mode
It's stuck again -_-
Yes, I'm notorious for rambling asking for so many things in one message ( I know I need to get better) lol
"The robot never gets tired, it works 24/7"
XDD
Codex is just all over the place today. and it is stuck now.
idk
yeah , don't blame
Y'all still have websockets enabled?
yeah
I'm just throwing this out there, for everybody with connectivity issues, consider disabling websockets.
doesn't work
OpenAI Status still showing that everything's online?
no websockets, it now just stuck can't prompt it.
What version you all using?
5.4 extra high
Opencode & Pi 🫠
I need my vibing fix, get the degradation sorted Altman and co
codex --version
Idk.. where can u see it
goood
I mean not good
finally
0.112.0
Perhaps npm i -g @openai/codex@0.110.0
I have it running right now, not stuck. Actually my configs are also publicly accessible so if anyone wants to cross-reference their configs with mine I feel like that might provide some insights
I have all experimental stuff turned off and only upgrade if the change log shows real improvement that I care about (model updates, and that's pretty much it)
smart decision.
Are you regarded ?
highly
How do I access them?
I guess it is time to spin up 50 Codex, because this smells like new quota reset 🤣
(just kidding, dont do it)
@tardy elm Do you use Xcode Cloud or Fastlane for your CD?
It's draining
my entire home folder has now a shared icon overlay in the Windows Explorer and according to Codex this is because it is shared with CodexSandboxUsers 😒
is codex down?
half up half down
my one chat is down and stuck, can i just somehow spawn it in a new instanace without having to transfer all the convo and feed it via a txt file?
Honestly how are you using this much?
Im down to 61% myself since reset, but im doing a lot rn
there are over 10K+ source files
Refactoring issues with my CI/CD pipeline, developing two side projects, re-writing a repo from Node to Rust for better efficiencies (it deals with encoding/decoding video), fixing general bugs, and a few other things
You need to compartmentalise it then
oh yeah, right
Like only allow it to look at small sections
Typically it does unless you're forcing it to ingest verbatim all 10k source files (this is psychotic behavior btw and you should be locked up if you do)
it should be tailing/heading usually like 200 lines, greping etc.
oh..
13K
Anyone know if I am allowed to upload the app.asar contents on GitHub for a Native Linux Codex App version?
Legally is what I am askinig
I haven't seen and LICENSE.md or any policy that says I can't.
Bro you could have the best of both worlds if you convert Node to Deno and write the tricky stuff in Rust as an imported dylib 😈
GPT 5.4 is great, but token usage is insane, 5.3 codex high is still damn good to get all work done.
yeah, you're all right
burned through a weeks quota in one day on 5.4, it's just insane
5.3 codex lasts a few days
I use 5.3-Codex for local code reviews. I still think it works pretty good for reviews and seems faster by default
same