Skip to content

Commit 486744b

Browse files
feat(posts): add "How to maximize Codex usage"
Post: 2026-04-29-maximize-codex-usage-limit.md
1 parent 07511dc commit 486744b

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
layout: post
3+
title: How to maximize Codex usage
4+
date: 2026-04-29 13:11:14
5+
excerpt: How to maximize your OpenAI Codex usage without going over the 5 hour window.
6+
categories: openai codex ai tui
7+
---
8+
9+
This post goes over how to maximize your [OpenAI Codex usage](https://chatgpt.com/codex/settings/usage) without going over the 5 hour window.
10+
11+
## Problem
12+
13+
If you're constantly hitting your 5 hour usage limit on Codex:
14+
15+
> ⚠ Heads up, you have less than 25% of your 5h limit left. Run /status for a breakdown.
16+
17+
> ■ You've hit your usage limit. To get more access now, send a request to your admin or try again at Apr 20th, 2026 4:20 AM.
18+
19+
Then try disabling fast mode and/or changing your model.
20+
21+
## Fast Mode
22+
23+
Disable fast mode temporarily in your current session:
24+
25+
```
26+
/fast off
27+
```
28+
29+
Or disable it permanently in `~/.codex/config.toml`:
30+
31+
```toml
32+
[features]
33+
fast_mode = false
34+
```
35+
36+
If you have `service_tier = "flex"` in `~/.codex/config.toml`, then delete it or replace it with another value:
37+
38+
```toml
39+
service_tier = "flex"
40+
```
41+
42+
## Model
43+
44+
If you're working on simpler coding tasks (e.g., writing tests), choose a smaller, faster, and more cost-efficient model like `gpt-*-mini`:
45+
46+
```
47+
/model
48+
```
49+
50+
Now you should be able to use Codex more and for a longer period.

0 commit comments

Comments
 (0)