Hi OpenAI team and community,
I’m using Codex quite actively for software development workflows, especially with GitHub issues, repo analysis, implementation tasks, testing, and deployment preparation.
I can currently see the remaining percentage/credits of my Codex plan, but I cannot find a clear way in the Codex web/app interface to see how many tokens were consumed by a specific Codex conversation, task, or run.
From the documentation, I understand that Codex usage is now based on token usage: input tokens, cached input tokens, and output tokens. I also see that Codex Settings → Usage shows remaining credit/limits, and that in Codex CLI the /status command can show current token usage during a session.
However, what I would like to know is:
-
Is there any way in Codex web/app to see token usage for a specific conversation, task, or run?
-
Can I see how much of the context window is being used in a current Codex session?
-
Can I see whether a task is becoming expensive because Codex has read too many files, kept too much previous conversation context, or generated too much output?
-
Is there a recommended workflow to decide when to continue in the same Codex conversation versus starting a fresh one?
-
Is there any log, export, or debug view that shows:
-
input tokens,
-
cached input tokens,
-
output tokens,
-
total credits consumed,
-
files read,
-
tool calls,
-
and context size per task?
-
The reason this matters is that many of us are trying to build disciplined agentic development workflows. For example, I’m trying to use one Codex conversation per GitHub issue, with small verifiable tasks, tests, and evidence comments. But without clear per-task token visibility, it’s difficult to know whether a conversation is becoming inefficient or whether the prompt/context should be reduced.
A useful improvement would be something like a “Task usage breakdown” panel in Codex showing:
Task / conversation usage:
- Input tokens
- Cached input tokens
- Output tokens
- Estimated credits consumed
- Context window used
- Files read
- Largest context contributors
- Recommendation: continue / start fresh / summarize context
Even a rough estimate would be very helpful. The current remaining-credit percentage is useful, but it does not help me understand which conversations or workflows are consuming the most tokens.
Is this currently possible somewhere, or is it only available through CLI/API/enterprise analytics?
Thanks.