Earlier quoted context omitted.
Highly recommend adding some kind of canary like this in all LLM project instructions. I prefer my instructions to say 'always start output with an (uniquely decided by you) emoji' as it's easier to visually scan for one when reading a wall of LLM output, and use a different emoji per project because what's life without a little whim?
This stuff also becomes context poison however
Building more with GPT-5.1-Codex-Max
191–200 of 332 posts
Re: Building more with GPT-5.1-Codex-Max
#192Earlier quoted context omitted.
This stuff also becomes context poison however
Sorry, what do you mean?
This guy has a good write up on the topic
Re: Building more with GPT-5.1-Codex-Max
#193I've been using a lot of Claude and Codex recently. One huge difference I notice between Codex and Claude code is that, while Claude basically disregards your instructions (CLAUDE.md) entirely, Codex is extremely, painfully, doggedly persistent in following every last character of them - to the point that i've seen it work for 30 minutes to convolute some solution that was only convoluted because of some sentence I t…
> Claude basically disregards your instructions (CLAUDE.md) entirely Does anyone know of a way to fix this? Claude constantly disregards my CLAUDE.md. I put a decent amount of time into it and it's pretty much worthless without explicitly telling it to reference it before each prompt.
(search for effective context problem for more info. e.g. https://arxiv.org/abs/2509.21361)
To solve it, you just don't allow your current context to use more than 50% of the total window size
To do that in Claude code, you have to use subagents and design small enough agents
Then you can use skills to make it remember every time the little details or the steps
More effectively, you use skills to tell the main thread when you go to use which agent.
If you don't understand anything I said, try to restate the important things to the model periodically, and keep your tasks small.
Use plan mode and make the model store, keep track of the progress on a markdown file, and when context is polluted, call /compact and then make it re-read the context from the files created
You can prompt it as simply as:
First, understand the login feature on the repo using subagents and create a document on docs/ for future reference. Then, understand the task at hand and create an implementation plan. blah blah
Also, using XML tags makes the attention remember easily
Re: Building more with GPT-5.1-Codex-Max
#194Earlier quoted context omitted.
Sorry, what do you mean?
https://www.dbreunig.com/2025/06/22/how-contexts-fail-and-ho... This guy has a good write up on the topic
I'd be wary of using any canary material that wouldn't be at home in the sort of work you're doing.
Re: Building more with GPT-5.1-Codex-Max
#195I've been using a lot of Claude and Codex recently. One huge difference I notice between Codex and Claude code is that, while Claude basically disregards your instructions (CLAUDE.md) entirely, Codex is extremely, painfully, doggedly persistent in following every last character of them - to the point that i've seen it work for 30 minutes to convolute some solution that was only convoluted because of some sentence I t…
> Claude basically disregards your instructions (CLAUDE.md) entirely A friend of mine tells Claude to always address him as “Mr Tinkleberry”, he says he can tell when Claude is not paying attention to the instructions on CLAUDE.md when Claude stops calling him “Mr Tinkleberry” consistently
Re: Building more with GPT-5.1-Codex-Max
#196Earlier quoted context omitted.
> Claude basically disregards your instructions (CLAUDE.md) entirely Does anyone know of a way to fix this? Claude constantly disregards my CLAUDE.md. I put a decent amount of time into it and it's pretty much worthless without explicitly telling it to reference it before each prompt.
This is just how the attention mechanism works. (search for effective context problem for more info. e.g. https://arxiv.org/abs/2509.21361 ) To solve it, you just don't allow your current context to use more than 50% of the total window size To do that in Claude code, you have to use subagents and design small enough agents Then you can use skills to make it remember every time the little details or the steps More ef…
Re: Building more with GPT-5.1-Codex-Max
#197Earlier quoted context omitted.
The solution to this if you want less specification in advance is to simply ask Codex a series of leading questions about a feature of fix. I typically start with something like “it seems like X could be improved with the addition of Y? Can you review the relevant parts of the codebase in a, b, and c to assess?” It will then do so and come back with a set of suggestions that follow this guidance, which you can revise…
No it won't, it'll spend ten minutes and come back with "OK I've implemented a solution". I really wish it had a plan mode.
Re: Building more with GPT-5.1-Codex-Max
#198I've been using a lot of Claude and Codex recently. One huge difference I notice between Codex and Claude code is that, while Claude basically disregards your instructions (CLAUDE.md) entirely, Codex is extremely, painfully, doggedly persistent in following every last character of them - to the point that i've seen it work for 30 minutes to convolute some solution that was only convoluted because of some sentence I t…
Re: Building more with GPT-5.1-Codex-Max
#199Re: Building more with GPT-5.1-Codex-Max
#200I really hope one day Ill work on challenges that need these new type of agents. Currently, I either need a fast agent that does what I want faster than I can type it (CRUD, forms, etc) or I need an agent to discuss a plan, ups and downs. Whenever I try to give it a bigger task it takes a lot of time, and often is not what I’ve expected, which might be totally my fault or context specific, but as soon as I’m able to…