@bridgemindai Ran the same prompt on DeepSeek v4 Flash w/2-bit quant via antirez's ds4
It took 10 minutes, mostly reasoning
For context, this was on a M4 Max with 128GB RAM
nobody wants to hear this but the classical NASA systems engineering is the perfect model for developing code with LLMs. people try to approximate this with planning modes, but if you’re explicit in your docs it’s never been easier to build, test, and verify complex codebases.
@thsottiaux Previous to this message, I had taken a quick detour to fix an issue.
I used to manage context carefully, but since the forced automatic compaction launched, I've had surprisingly had very few issues.
Until now?
Any other codex users not seeing a big difference between /goal and their previous workflows?
Working on a refactor, and usually codex will work through all the plans to completion.
With /goal, it decided to end at "the first tranche" -- even though I explicitly asked it to work through the full refactor (as outlined).
Nudging it with a second /goal stopped early again.
Previously I've had codex run a similar refactor for 50+ minutes, without an external harness/skills/etc.
@patrickc Silicon Valley is the new 1920s Detroit (pre-crash).
Ford was on a similar level (compared to global GDP) as Page/Brin.
Why is Stripe in South San Francisco? Why are Page/Brin leaving California?
SV is "richer" today, but the landscape is more expensive to change.
Good to hear!
It's worth noting that Activity Monitor on MacOS isn't super reliable[0]:
> macOS counts dirty-but-not-resident pages toward phys_footprint, causing Activity Monitor and Force Quit dialogs to report wildly inflated numbers.
cmux is built on libghostty iirc
[0]https://t.co/c9z1kPKFTs
@ImagiBooks@thsottiaux This might be fixed in the next release: https://t.co/Viv0xYfe0v
Still odd that React Native DevTools and Codex both have the same exact 99.11 GB in your first image.
Guessing you're using some React Native MCP test tool?
@ImagiBooks@thsottiaux I'd double check that your .gitignore is properly ignoring generated code, installed packages, etc.
The fact that React Native DevTools is also at 99GB leads me to believe something is configured incorrectly.
@ImagiBooks@thsottiaux Do you use git and .gitignore?
I noticed crazy high CPU on a throwaway node app, where Codex was tracking a bunch of files unnecessarily.
Adding a .gitignore for node_modules fixed the issue.
Ah makes sense. Our usecase is essentially a shared workspace for two or more agents.
Easily solvable with a non-FS based approach, but our agents rely most heavily on the filesystem, so I was envisioning a mountable version controlled disk that "allows" clobbering, but in a tracked way.
Basically CRDT/OT on a specific mount point, with tooling (i.e. git) to allow the agent to investigate the history in certain edge cases.