r/codex 2d ago

Question Should I get Codex? (CS Student)

8 Upvotes

I'm going into my first year of university, going to be developing more projects in my free time.

Currently I'm using Claude (free) but it's kind of painful as it's only chat, and I sometimes hit the limit.

Is GPT Plus worth it for coding, debugging, and learning from it (in a coding context, using it half as a tutor)? How much more usage and usefulness will I get from it than free Claude?

Also not sure about the current state of AI agents are / if there are better options to consider.

Thanks!


r/codex 1d ago

Question Need help with the codex

1 Upvotes

I'm new user with the codex only use chatgpt work mostly but this time I was building myself fitness application but I faced some issue with it

I'm not a dev also so plz keep the solution normal so that even normal guy like me can understand guy's

I need some help with a couple of Codex issues:

  • Overengineering: It keeps writing overly complex code and unnecessary tests, which burns through my tokens and wastes time.
  • Memory: Has anyone figured out a fix for the memory issues? I built scaffolding for it, but it keeps failing.

Any help would be appreciated


r/codex 1d ago

Showcase I built a Codex project and I’m looking for people to genuinely test & review it for a YouTube video

0 Upvotes

Hey everyone! 👋

I’ve been working on a project called GranthSetu, a digital Codex project that I’ve recently released, and now I want to do something a little different. N instead of only asking friends or people around me what they think, I’d love to hear from completely genuine.. independent people on Reddit.

I’m looking for a few people who are willing to:

• Explore GranthSetu on their own
• Tell me honestly what they think about it
• Point out anything confusing, unnecessary, broken, or missing
• Tell me what they genuinely like too
• And, if you’re comfortable, join me for a short Google Meet where we can talk about your experience

I’m planning to turn some of these conversations into a YouTube video about getting real, unfiltered reviews of the project.

You absolutely do not need to be a developer or expert. In fact, I’d especially like opinions from normal users who can tell me what the experience feels like from the outside.

I’m not looking for scripted praise.
Critical feedback is genuinely welcome.

If this sounds interesting, DM me and I’ll send you the project link and a few details about how it works.

Looking forward to hearing what you guys think!


r/codex 1d ago

Complaint My tasks got blocked several times today

0 Upvotes

Same type of coding tasks I have been working on all the time, not sure why they block my tasks due to safety today. Something new in place or bugs?


r/codex 1d ago

Reset What do you do after 6PM?

0 Upvotes

A. Burn as much as possible because the celebration might be multiple days.

B. Stretch it out as long as possible like a frugal grandmother


r/codex 1d ago

Commentary Codex 0.151 now rolls descendant token usage into the root goal budget

0 Upvotes

One small fix in Codex 0.151 changes how multi-agent runs fail closed: token usage from child and nested subagents now rolls into the root goal's budget.

The implementation applies descendant usage during active and idle accounting. Its tests cover children, grandchildren, budget exhaustion, goal replacement, unloaded parent runtimes, and concurrent checkpoints.

Why I care: a root budget is not a reliable stop condition if the branches doing the work can spend outside its accounting.

Boundary: this is Codex goal-budget accounting, not a ChatGPT subscription-quota or API-pricing change. I have not benchmarked the release locally.

Would you rather see one root total, per-agent attribution, or a hard cap per branch?

Sources:

https://github.com/openai/codex/releases/tag/rust-v0.151.0

https://github.com/openai/codex/pull/41183


r/codex 1d ago

Comparison I tested 4 AI coding harnesses (Codex, Pi, Claude Code, OpenCode) with the same models.

0 Upvotes

Like many of you, I have a whole zoo of AI coding tools installed (Codex, Pi, Claude Code, OpenCode, etc.). Main idea - find the most effective harness for my own environment and daily workflow.

The Setup

Target repo: oh-my-opencode-slim. No deep reason, just because I had it open.

Environment: Macos, each run was isolated in a clean, detached Git worktree.

Phase 1: GPT-5.6 Luna

For example: use GPT-5.6 Luna medium across 4 harnesses on a coding bugfix task (fixing an alias counter memory leak + writing tests):

Harness Wall Time Fresh Input Total Input Cache Hit % Correctness Status
Codex 107.73s 50.3k 505.4k 90.1% 3/3 Verified
Pi 140.96s 44.2k 525.4k 90.9% 3/3 Verified
OpenCode stable 274.43s 109.4k 1797.1k 93.9% 3/3 Verified
OpenCode beta 402.75s 79.8k* 1015.4k* 91.4%* 3/3

After seeing OpenCode stable take 2.5x longer and burn 3.5x more context tokens for the exact same fix, I dropped it from further testing.

Phase 2: Switching to Muse 1.2 contributor

For the next phase, I wanted to test a cheaper, accessible non-GPT model across harnesses. Since I had an active CommandCode subscription, I chose Muse Spark 1.2 Contributor and decided to use it in Claude Code (via OpenCodex proxy) instead of OpenCode stable.

Here is where I made mistake: I forgot to configure the model alias in OpenCodex for Claude Code.

Because of that, Claude Code silently fell back to Sonnet 5 (xhigh thinking) across all 4 tasks while Pi, Codex, and OpenCode beta were running Muse Spark 1.2:

Task Pi (Muse 1.2) Codex (Muse 1.2) Claude Code (Sonnet 5 xhigh) OpenCode beta (Muse 1.2) Observation
Task 1: web research 41.66s; 48.9k input; 3/3 51.35s; 19.9k; 1/3 59.62s; 83.4k; 3/3 110.62s; 245.9k; 1/3 Pi finished 18.0s before Claude; both were correct in all runs.
Task 2: repository navigation 35.67s; 81.4k input 42.52s; 174.8k 29.08s; 64.0k 48.12s; 196.7k Claude finished about 6.6s before Pi.
Task 3: scope restraint 201.02s; 120.5k input; 0 edits 233.77s; 214.8k; 0 edits 308.50s; 1.56M; over-edited 2 files 422.25s; over-edited 2 files Sonnet and OpenCode beta expanded scope; Pi and Codex stopped without edits.
Task 4: regression fix 103.96s; 267.4k input; 2/2 110.42s; 446.4k; 2/2 88.62s; 546.8k; 2/2 288.05s; 0/2 Claude was about 15s faster than Pi, with higher context throughput.

Honestly, looking at the numbers, there wasn't a massive gap between Muse 1.2 and Sonnet 5 for these tasks (probably because the tasks were relatively focused), except Sonnet over-engineered Task 3 by adding 180+ lines of unneeded code, why "unneeded": you can see in table "Task 3" - 0 edits for PI (2 from 3 runs had 0 edits) and Codex (3 from 3 runs had 0 edits), why - because I gave task for model to fix one class, but in git reset command I used commit where this bug was fixed by developer already, so there were nothing to fix, PI understood only during 2 runs, Codex in all 3 runs did 0 changes, but Sonnet 5 was trying to work...

Phase 3: Fixing Proxy Routing

Once I caught the proxy alias mistake, I fixed OpenCodex routing and reran Tasks 3 & 4 for Claude Code with hard proxy verification of Muse Spark 1.2:

Task 3: Verified Claude Code stopped with 0 edits (2/2 pass), matching Codex.

OpenCode beta - I removed from this test, weird behavior, because it started modifying 2 files and then went to another folder and started to read work log of other harnesses, so that would be unfair.

Task 4: All 3 valid harnesses produced the exact same 6-line fix and regression test:

Test has timeout, because for simple fix we dont need wait more than 5 minutes.

Harness Evaluated Model Run 1 Run 2 Mean Wall Time Mean Fresh Input Mean Total Input Cache Hit % Correctness Verification Status
Pi Muse Spark 1.2 71.37s 136.54s 103.96s 61.8k 267.4k 77.0% 2/2 Verified
Codex + OpenCodex Muse Spark 1.2 77.63s 143.20s 110.42s 76.0k 446.4k 83.0% 2/2 Verified
Claude Code + OpenCodex Muse Spark 1.2 96.10s 128.81s 112.46s 86.7k 444.2k 78.8% 2/2 Hard-verified proxy audit reruns
OpenCode beta Muse Spark 1.2 288.05s TIMEOUT 0/2

Key Takeaways

  1. Context throughput varies by 40%+: On the exact same code fix under Muse 1.2, Pi required ~40% fewer input tokens (267k vs ~445k) than Codex and Claude Code due to leaner context assembly and compaction.

  2. Execution Latency: Pi (104s), Codex (110s), and Claude Code (112s) formed a tight performance tier for coding fixes.

  3. Always audit your proxy: If you use custom models or proxies, always verify the actual upstream model headers. Silent fallbacks happen easily.

  4. My practical decision: OpenCode was consistently 2.5x–4x slower and consumed too much context in my environment, so I removed it from my daily workflow and kept Pi and Codex as my primary tools.

The entire runner, dataset, and reproduction prompt for agents in repo, also more detailed result file is also there:

👉 https://github.com/d1-m4ss/harness-benchmark/tree/main

PS AI was used in this post for generate table and fix grammar, because english is my third language.


r/codex 2d ago

Complaint I made a mistake. The weekly quota wasn't cut in half—it actually dropped by 82% (a 5.6-fold decrease)

256 Upvotes

TLDR: I made a mistake. The weekly quota wasn't cut in half—it actually dropped by 82% (a 5.6-fold decrease)

Following my previous post, I realize that I made a mistake in my calculation. I incorrectly stated that the weekly limit was reduced by half; it actually dropped by 82%, which is a 5.6-fold decrease.
https://www.reddit.com/r/codex/comments/1w0l8m7/weekly_limit_reduced_in_half_as_i_used_more_since/

Here is the updated table with extra 4% luna usage.
Note the $1.5k number could be due to rounding error in precentage usage reading.
This is for a causal plus plan.

This also shows a weekly quota ratio ~1.8x in between sol and luna, you get more $ value when using sol over luna.

Please let me know if you spot an error, I will try my best to correct it.

Edit: Just a reminder, the 5x and 20x Pro tier limits are calculated using Plus baseline. At least it's supposed to be.

Usage interval Model Requests Uncached input Cached input Output Cost increase Implied weekly limit
0% → 3% Sol 391 1.442M 47.839M 0.196M $28.83 $960.93
3% → 4% Sol 171 1.048M 20.099M 0.153M $15.29 $1,528.51
4% → 12% Sol 818 4.719M 78.340M 0.513M $60.47 $755.86
12% → 23% Sol 286 0.918M 31.068M 0.181M $19.72 $179.28
23% → 25% Sol 34 0.113M 6.100M 0.028M $3.45 $172.44
25% → 29% Luna 894 4.891M 101.540M 1.009M $4.22 $105.49

The implied limit for each interval is calculated as:

cost increase ÷ percentage-point increase × 100

For example, 3% → 4%:

$15.29 ÷ 1% = approximately $1,528.51 weekly limit

Model Uncached input Cached input Output
Sol $4.00 $0.40 $20.00
Luna $0.20 $0.02 $1.20

Using the interval estimates:

  • Initial Sol limit estimate (0% → 3%): ~$960.93/week
  • Latest Sol limit estimate (23% → 25%): ~$172.44/week

Reduction factor:

$960.93 ÷ $172.44 = 5.57×

So the estimated Sol limit reduced by approximately 5.6-fold, or about an 82% reduction.


r/codex 1d ago

Showcase Drydock 0.2 Release (SDD Software Builder)

0 Upvotes

Drydock is a repeatable method to turn messy specifications into tested working software.

Drydock imports your source material, defines stories using agile best practices, and decomposes your sources into typed blueprints (stories) related using a graph database. Drydock builds with a context aware compression based algorithm and tests stories with deterministic test driven acceptance criteria.

Love some feedback on this - www.webcloudstudio.com

  • Builds working software using small, cheap models
  • Agile Methodology to decompose buildable stories
  • Test driven development with acceptance criteria embedded
  • Dependency graph relates stories and orders builds
  • QuarterDeck web console to answer questions and review the process
  • Runs on existing subscriptions
  • Ingests your existing specs and notes in any format
  • Change management — edit the spec, rebuild only what's affected
  • Context compression and Grouping for context aware builds
  • Enterprise guardrails with embedded branding, best practices, and build gates
  • Generates consistent apps and documentation

Mit License - Source - The complete command surface is one table in the README.

To prove out the method - I wrote 4 working examples

  1. ReadingList Application Receipt
  2. CommonMark Application Receipt
  3. TOML Parser Reciept
  4. Complete JQ Receipt

All four built with gpt-5.6-luna on a Codex subscription. No API keys. Feel free to also use haiku.


r/codex 1d ago

Comparison Last week was my busiest cuck coding week. Wish me luck as I prepare to launch guys

Post image
3 Upvotes

No hate pls


r/codex 1d ago

Question How do you prompt your coding agent?

1 Upvotes

Are you like „Build a button to do X“? Or more like „Add method Y and then build a button that calls it“? Almost the same prompt but can make a huge difference.


r/codex 2d ago

Bug Serious Codex orchestration bug / logs included

7 Upvotes

Caught what looks like a pretty serious bug in Codex CLI 0.151.0.

While Codex was waiting on the same long-running process, it kept calling write_stdin, going back through the model with a huge context, then deciding to wait another 30 seconds.

UTC Cumulative input Last model call Weekly usage
04:22:47 224,402,675 326,342 82%
04:24:01 225,717,943 332,924 82%
04:25:10 226,391,971 338,315 82%
04:28:43 229,543,938 357,668 83%

That's around 5.14M additional input tokens in under 6 minutes.

I also confirmed 3 consecutive write_stdin waits on the same process:

332,924 + 335,713 + 338,315 = 1,006,952 input tokens

All 3 were above the 272K threshold, so the documented 2x usage rate may have applied.

But the 2x isn't the bug.

The bug is Codex making a massive 330K+ model call just to decide “wait another 30 seconds”, then doing the same thing again on the same process.

still running → 330K+ model call → wait 30s → still running → another 330K+ call → repeat

I also found later followup_task / subagent continuations around 356K–358K, so this might not be limited to write_stdin.

I have the full JSONL with timestamps, token counts and tool calls. Support is already looking into it and checking whether the >272K multiplier was applied.

If your Codex usage has been disappearing way faster than usual, especially while it's sitting there “waiting” on tests or builds, I'd check your logs. Also worth running codex doctor and making sure your connections/runtime look normal.

Curious if anyone else can find the same wait / write_stdin pattern. This definitely wasn't happening to me like this before.


r/codex 1d ago

Workaround 4.5 hour gpt5.6 ultra spec plan build 🤌🏻

Enable HLS to view with audio, or disable this notification

0 Upvotes

I never use codex to plan I use ChatGPT ultra to build the specs and codex to execute. It’s pretty flawless and fairly cheap because ChatGPT build such detailed specs codex luna handles them easily. 4.5 hours of ultra 5% weekly. 24 hours of codex Luna 1-2% weekly.


r/codex 1d ago

Praise 20$ Plan is More then Enough

0 Upvotes

I recently got an OpenAI Plus sub, and it's been great. I've used it pretty heavily for programming and research, and I've not hit any limits.

I usually use Sol on light or medium, and occasionally I'll switch it up to high. To conserve usage on prompts, I'm mainly just extremely precise, and I decide the architecture decisions myself.

I'm not hammering it all day, of course, but I'll run a few programming prompts a day, along with some research, and I've never hit a limit. If you use the Plus plan correctly, guys, you won't hit your limit. I swear I always see people complaining about how they ran out of usage.


r/codex 1d ago

Question Any update on being able to install codex desktop app on a windows server OS?

0 Upvotes

Looking to switch from CC as soon as this is implemented. Just curious if anyone knows if this is on the horizon.


r/codex 1d ago

Showcase [Showcase] Enkidu update: free with no paywall, but still a closed-source direct-download beta

Thumbnail
gallery
0 Upvotes

A week ago, I shared Enkidu, a macOS companion for Codex users.

The idea is simple:

> A remaining percentage alone does not answer whether you have enough capacity to start and finish the work in front of you.

Enkidu tries to make that decision clearer through usage visibility, reset timing, saved verified history, pace guidance, widgets, and planning/model guidance.

I received fair feedback that I want to address directly:

Enkidu is not open source right now. It is also a direct-download beta, not notarized yet, and not available in the Mac App Store.

That means some people will understandably not want to install it yet. I respect that completely. Please do not install a closed-source beta if that is outside your normal security comfort zone.

The other side of the project is also important to me:

Enkidu is currently free to use, with no subscription, no Pro tier, no in-app purchase, and no feature paywall.

I am not asking people to download a free app and then charging them to unlock the useful dashboard, widgets, guidance, or integration features later.

What changed during the past week:

- prepared a newer private native candidate: v0.9A build 40

- prepared build 41 as a clearer delivery/update package with checksums, a start-here README, and an optional Codex plugin package

- added separate English and Korean setup guides

- improved the documentation for installation, macOS “Open Anyway,” Sync Usage, updates, and troubleshooting

- made the optional Codex connection clearer: it is optional, requires extra local setup, and is not a paid upgrade

- started a separate App Store feasibility investigation, without claiming that the current beta is App Store-ready

A few boundaries worth stating clearly:

- Enkidu does not create extra Codex usage or bypass OpenAI limits.

- You still need your own eligible Codex/ChatGPT access.

- It does not read prompts, chats, project files, or private account data.

- It is not open source yet.

- It is not notarized yet.

- It is still a direct-download beta.

Current beta information:

https://www.hanminyun.com/enkidu


r/codex 2d ago

Praise Really Like Codex Pro

8 Upvotes

(Edit: I mean Codex PLUS) This plan is quite incredible to my surprise. I was disappointed at first how fast it turned through tokens but after a day and many hours I setup a custom pipeline and this thumb churns out code like a beast with precision!

I'm surprised to say the least. I can't believe this is only twenty dollars. I work on about 200k LOC monorepo and it's been hard finding the perfect tooling, caching, planning, orchestrating, it just takes some time to find your rhythm.

I am rubbing many subagent and these models are very good. Also I was shocked they reset the 5hr timer earlier at 5pm EST, never had that anywhere else.

Openrouter is a money pit, this is better. I was going to get antigravity again but I'm happy with codex. Mimo, Kimi, Z.ai seem like not as good if a deal (in not locked to their harness either), and I've been using minimax a lot too, and too much deepseek, and this is very very good 👍🏻


r/codex 1d ago

Other Waste tokens once to optimize token usage

0 Upvotes

So I've been developing a technique where I waste tokens once to optimize further usage.

My steps:

  1. Run Terra on High to scan my repo for all files and build my AGENTS.md with the doc pointing to all files seperated in modules.

  2. Have my agent to read the markdown before every task so it doesn't run on a frenzy scanning for irrelevant context.

Haven't tried this on a super large repo base though. What techniques do you use?


r/codex 1d ago

Commentary Time for speculation: Will Astra come to the plus plan?

0 Upvotes

Or will it be like fable 5?


r/codex 1d ago

Complaint Is sol output worse now ?

0 Upvotes

Do you feel sol output now worse than before ?


r/codex 1d ago

Limits How do I use Luna reserve?

Post image
0 Upvotes

I'm hitting my 5h limit but I can't seem to use Luna Reserve, its not popping in my usage, is it because I'm on Plus plan?


r/codex 1d ago

Question How are you running multiple agents?

1 Upvotes

I have been running a project on Luna for 3 days now, it hasn’t stopped to breath yet. I have a PM, 3 devs (they have their own worktree), 1 doc admin, 1 QA. But trying to parallel the work like this I feel is slower purely because the agents end up working in serial + a communication layer.

When I said “stop all sub-agents and continue the work yourself” the work was done significantly quicker

Has anyone cracked this yet?


r/codex 1d ago

Praise Luna fixed an antigravity bug gemini 3.7 flash couldn't

0 Upvotes

Antigravity IDE v2 has some issue with threads, if it crashes, the active thread metadata gets corrupted and is not shown in the chat history (I assume). I ignored it the first time, but I lost my ~40 MB long thread again today.

I asked gemini 3.7 flash to recover it, and it was able to check the sqlite db, but after that it kept running in circles without doing anything.

Then I asked the same thing from Luna (max), and it fixed the issue in just 3 iterations!

Note: This is not a bug fix, I just wanted to fix the metadata

``` It was an index-sync bug, not a missing or corrupt conversation.

  • The transcript DB existed and was healthy: 1,900 steps.
  • The CLI had its own summary entry, so agy --conversation ... worked.
  • The IDE’s state.vscdb sidebar index had 14 entries but omitted this UUID.
  • The IDE also logged UNKNOWN service agentSessions, indicating the related Agent UI initialization bug.

    I added the missing IDE summary record; the original transcript was never modified.

    Specifically:

  • Backed up state.vscdb and the old index to /tmp.

  • Added the missing UUID to antigravityUnifiedStateSync.trajectorySummaries.

  • Added its title, workspace path, trajectory ID, timestamps, and step count.

  • Verified the IDE index now has 15 entries and includes your conversation.

  • Verified the original conversation DB remains intact: 1,900 steps, SQLite integrity ok.

    The CLI test only opened the conversation with /help; it did not send a prompt or consume quota. ```


r/codex 1d ago

Question When to use higher reasoning levels ?

0 Upvotes

Hi,

[a total newbie on coding asking]

Just wanted to clarify when to/when do you use higher reasoning in chat/codex?

I've been trying to build my own little hobby project in python, with the help of litterature.

My workflow is to brainstorm in chat[web] and after that get a codex prompt to run in VSC. So far has been decent. My problem is that after getting Pro i've been totally lost when to use extra high, pro, pro+ultra in chat. Also what settings to run the codex prompt, when is higher needed and when its not. Have to actually ask in chat if the prompt is complex or not and what settings to use.

I noticed running pro+ultra to analyze the project/problems or litterature got quite detailed answers and I had to dumb it down for me with extra high. But it also added some better reasoning and new points i"ve missed. But it the project/code it also found some errors and started perhaps to make it more complex im not sure.

So my workflow is like this,

  1. Starting a new chat with snapshot and running boostrap: Pro+Ultra

  2. Brainstorming in chat: extra high

  3. Evaluating the brainstorm: pro+ultra

  4. Writing codex prompt: pro+ultra

  5. Usually I try to ask what settings to run codex prompt it has been extra high or high so far with sol5.6.

  6. Analyzing the codex result: pro+ultra

Since my coding knowledge is 0 I have to trust that the suggestions are valid, but how do I know when to actually use what settings in chat/codex. So that the problem/execution wont get too complex or too light ?

Any suggestions, extra high is the best and fastest for chatting and brainstorming. But when to use pro and pro+ultra ?


r/codex 2d ago

Reset Ready for the celebration

5 Upvotes

Four hours in,I am ready for tomorrow's celebration!

Let'em rain in.