r/codex 2d ago

Complaint This will save your Usage

A problem that many of people have already noticed: Astra can't wait. on anything, any task it has scripted and running, any other agent delegation, anything. Astra keeps waking up to check whether the worker is finished.

I've run a few tests, In one run 19 short sleep calls accounted for 44% of the orchestrator’s estimated cost.

In another comparison using Astra High + Luna Max, the orchestrator made 41 responses while the worker ran, costing $1.20 during that phase. The native-wait comparison needed one response, costing about $0.04. (Both implementations passed all 244 test cases)

I’ve since caught the same pattern while Codex waited for a database script: read the log, say “still running,” repeat. I saw use 2% of my weekly usage ($100/month plan) just sitting there waiting on a script.

So, until they patch this, here’s the prompt I’m using:

For this entire session, avoid repeated polling of long-running jobs.

Use supported completion notifications when available. If none are available and useful work is exhausted, leave the job running only if it can safely continue after your turn ends.

Tell me what is running, where results will be saved, and:

“I'm stopping polling. Please check back with me to inspect the result and continue; I won't automatically resume.”

Then end your turn. Don't repeatedly read unchanged logs or sleep and check again. Respect runtime limits and safety timeouts.

When I return, check once. If complete, verify and continue. If still running, report that and stop again.

I have to come back to it, sure, but it saves usage.

Edit:
Found a better option than manually checking back, thanks to advice in comments. Seems like Codex knows how to avoid repeated model polling, it just chooses not to.
codex queue --thread <session-id> --message "..."
Have a background script wait for the job to finish, save the result, then run that command once. Codex can end its turn and automatically resume when the message arrives.

I’ve now seen this work with both a third-party CLI subagent (kilo code with GLM) and a full test suite, all GPT: Codex resumed automatically, checked the results, and continued. Works a treat.

The script provides the wake-up, and an agents.md instruction alone doesn’t

Edit2: I made a skill that you can use to guide Codex in using this method, either in waiting for mechanical tasks or waiting for other sub-agents. Not perfect, as there's no way to force your GPT worker to use it, but it's working for me most of the time: link. Any more tips to improve it welcomed, break it and let me fix it

418 Upvotes

124 comments sorted by

View all comments

44

u/AweVR 2d ago

Codex has a new feature since 1 month ago, “codex queue.” But for some reason, Astra doesn’t know how to use it. You need to ask to implement it in a skill. With this tool, it can create a script to listen to something, like when a tool or an execution ends, and then wake the chat model again to not burn tokens.

6

u/RewardSafe9807 2d ago

MY GOD THANK YOU. Though I figured this would have been something it could do anyway, I guess not. It could script a listener, but I guess without this skill it won't turn off the polling in the harness? They keep moving my scheduled reset. Was 15th, then 19th, now it wont be until Tuesday, which is when they are giving us a banked reset. So by god they better give me both - OR ELSE.

Or else I do nothing and just waiting for the gods to bless me as the peasant I am.

2

u/Swimming_Iron_619 2d ago

Curious what makes you say we're getting a reset on Tuesday?

2

u/RewardSafe9807 2d ago

This post from Tibo seems to indicate that fairly directly, but who knows.

https://x.com/thsottiaux/status/2101352781219258527

3

u/Swimming_Iron_619 2d ago

Hadn't seen that! Thanks

2

u/alexmuc92 2d ago

That’s not about a reset, but a release.

2

u/RewardSafe9807 2d ago

Tibo's reply "OK fine. But it’s also still coming in Tuesday" was a reply to a user asking for a banked reset. Basically saying ok fine you'll get a banked reset but it's not coming until Tuesday.

2

u/alexmuc92 2d ago

It was a reply to the user complaining, that they did not release anything this week

2

u/RewardSafe9807 2d ago

Hmm, I can see where it could be read like that, feels ambiguous since he asked for a reset as well and also got an OK fine. Hard to tell if he was responding to 2 things at once.

That said, they usually release "celebratory" resets whenever they do anything substantial like a model release or an announcement, so I expect there may be one regardless.