@jiawang1209/codex-hud 0.1.1 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +120 -204
- package/dist/render.js +15 -2
- package/dist/render.js.map +1 -1
- package/package.json +1 -1
- package/plugins/codex-hud/skills/codex-hud/SKILL.md +1 -1
- package/skills/codex-hud/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -1,324 +1,240 @@
|
|
|
1
1
|
# Codex HUD
|
|
2
2
|
|
|
3
|
-
Codex HUD is a
|
|
3
|
+
Codex HUD is a terminal heads-up display for Codex CLI sessions. It surfaces the signals you usually need while working with an agent: model, reasoning effort, project, git branch, context usage, five-hour usage, weekly usage, active tools, and task progress.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
```text
|
|
6
|
+
[gpt-5.5 medium] │ codex-hud git:(main*)
|
|
7
|
+
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h) │ Weekly █████████░ 86% (6d 29m / 7d)
|
|
8
|
+
Todos 2/5 │ Exec active, Plan x2
|
|
9
|
+
```
|
|
9
10
|
|
|
10
|
-
Codex HUD
|
|
11
|
+
Codex HUD is intentionally local-first. It reads Codex config, Codex session metadata, and git metadata from your machine. It does not upload data or need to display private message bodies.
|
|
11
12
|
|
|
12
13
|
## Install
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
npm install -g @jiawang1209/codex-hud
|
|
18
|
-
codex-hud install
|
|
19
|
-
codex
|
|
20
|
-
```
|
|
15
|
+
Follow the steps in order. If Node.js/npm or Codex CLI is already installed, skip that step.
|
|
21
16
|
|
|
22
|
-
|
|
17
|
+
### 1. Set Up npm
|
|
23
18
|
|
|
24
|
-
|
|
19
|
+
Codex HUD is distributed through npm and requires Node.js 18 or newer.
|
|
25
20
|
|
|
26
|
-
|
|
21
|
+
macOS:
|
|
27
22
|
|
|
28
23
|
```bash
|
|
29
|
-
|
|
30
|
-
cd codex-hud
|
|
31
|
-
npm install
|
|
32
|
-
npm run build
|
|
33
|
-
npm link
|
|
34
|
-
codex-hud install
|
|
35
|
-
codex
|
|
24
|
+
brew install node
|
|
36
25
|
```
|
|
37
26
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
## Development Usage
|
|
27
|
+
Linux, Debian/Ubuntu:
|
|
41
28
|
|
|
42
29
|
```bash
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
node dist/index.js setup
|
|
46
|
-
node dist/index.js doctor
|
|
47
|
-
node dist/index.js config
|
|
48
|
-
node dist/index.js config init
|
|
49
|
-
node dist/index.js watch
|
|
30
|
+
sudo apt update
|
|
31
|
+
sudo apt install -y nodejs npm
|
|
50
32
|
```
|
|
51
33
|
|
|
52
|
-
|
|
34
|
+
Windows, PowerShell:
|
|
53
35
|
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
codex-hud run
|
|
57
|
-
codex-hud install
|
|
58
|
-
codex-hud native
|
|
59
|
-
codex-hud install-shim
|
|
60
|
-
codex-hud uninstall-shim
|
|
61
|
-
codex-hud setup
|
|
62
|
-
codex-hud doctor
|
|
63
|
-
codex-hud config
|
|
64
|
-
codex-hud config init
|
|
65
|
-
codex-hud watch
|
|
36
|
+
```powershell
|
|
37
|
+
winget install OpenJS.NodeJS.LTS
|
|
66
38
|
```
|
|
67
39
|
|
|
68
|
-
|
|
40
|
+
Verify:
|
|
69
41
|
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h)
|
|
73
|
-
Todos 2/5 │ Exec active, Plan x2
|
|
42
|
+
```bash
|
|
43
|
+
npm --version
|
|
74
44
|
```
|
|
75
45
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
- `status`: print one HUD snapshot.
|
|
79
|
-
- `watch`: refresh the HUD until interrupted.
|
|
80
|
-
- `run`: launch Codex inside a tmux session with a live Codex HUD pane.
|
|
81
|
-
- `pane`: internal command used by `run` to refresh the HUD in a small pane.
|
|
82
|
-
- `install`: prepare the full native bundle: patched Codex checkout, build, and reversible `codex` shim.
|
|
83
|
-
- `native`: launch a patched Codex CLI binary with `codex-hud status` wired into the native footer.
|
|
84
|
-
- `install-shim`: install a reversible `codex` wrapper that launches `codex-hud native`.
|
|
85
|
-
- `uninstall-shim`: remove the `codex` wrapper installed by `install-shim`.
|
|
86
|
-
- `setup`: configure Codex CLI's native in-window `[tui].status_line` with HUD-like items.
|
|
87
|
-
- `install-statusline`: alias for `setup`; accepts `--config <file>` for testing or custom Codex config paths.
|
|
88
|
-
- `doctor`: check Codex CLI, `codex-hud`, shim, patched Codex, native status command, Codex home, and Node.js readiness.
|
|
89
|
-
- `config`: print the effective Codex HUD configuration.
|
|
90
|
-
- `config init`: create `~/.codex-hud/config.json` with default settings.
|
|
46
|
+
### 2. Install Codex CLI
|
|
91
47
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
For the closest current approximation of a Claude HUD-like persistent display, use:
|
|
48
|
+
Codex HUD is built for Codex CLI. If this works, skip this step:
|
|
95
49
|
|
|
96
50
|
```bash
|
|
97
|
-
codex
|
|
51
|
+
codex --version
|
|
98
52
|
```
|
|
99
53
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
Pass Codex arguments after `--`:
|
|
54
|
+
Install Codex CLI with one of the official options:
|
|
103
55
|
|
|
104
56
|
```bash
|
|
105
|
-
|
|
57
|
+
npm install -g @openai/codex
|
|
106
58
|
```
|
|
107
59
|
|
|
108
|
-
|
|
60
|
+
macOS users can also use Homebrew:
|
|
109
61
|
|
|
110
62
|
```bash
|
|
111
|
-
|
|
112
|
-
codex-hud run --dry-run -- --model gpt-5.5
|
|
63
|
+
brew install --cask codex
|
|
113
64
|
```
|
|
114
65
|
|
|
115
|
-
|
|
66
|
+
See the official OpenAI Codex README for current Codex CLI install options and release binaries:
|
|
116
67
|
|
|
117
|
-
```
|
|
118
|
-
codex-
|
|
119
|
-
codex-hud run --terminal iterm
|
|
120
|
-
codex-hud run --terminal terminal
|
|
68
|
+
```text
|
|
69
|
+
https://github.com/openai/codex#installing-and-running-codex-cli
|
|
121
70
|
```
|
|
122
71
|
|
|
123
|
-
|
|
72
|
+
### 3. Install Codex HUD
|
|
124
73
|
|
|
125
|
-
|
|
126
|
-
- `iterm`: macOS iTerm2 AppleScript launcher with a native horizontal split pane.
|
|
127
|
-
- `terminal`: macOS Terminal.app AppleScript launcher that opens separate Codex and HUD terminal sessions.
|
|
74
|
+
Install the package:
|
|
128
75
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
76
|
+
```bash
|
|
77
|
+
npm install -g @jiawang1209/codex-hud
|
|
78
|
+
```
|
|
132
79
|
|
|
133
|
-
|
|
80
|
+
Configure Codex CLI's built-in status line:
|
|
134
81
|
|
|
135
82
|
```bash
|
|
136
|
-
|
|
137
|
-
codex-hud install
|
|
83
|
+
codex-hud setup
|
|
138
84
|
codex
|
|
139
85
|
```
|
|
140
86
|
|
|
141
|
-
|
|
87
|
+
This is the safest default path. It uses Codex CLI's supported native status-line items.
|
|
142
88
|
|
|
143
|
-
|
|
89
|
+
## Native Auto-Launch
|
|
144
90
|
|
|
145
|
-
|
|
146
|
-
codex-hud install-shim --codex /path/to/patched/codex
|
|
147
|
-
```
|
|
91
|
+
For the fuller HUD experience, `codex-hud install` builds a patched Codex CLI adapter and installs a reversible `codex` shim. After that, the normal `codex` command launches Codex with `codex-hud status` wired into the footer.
|
|
148
92
|
|
|
149
|
-
|
|
93
|
+
macOS prerequisites:
|
|
150
94
|
|
|
151
95
|
```bash
|
|
152
|
-
|
|
96
|
+
brew install git rust tmux
|
|
153
97
|
```
|
|
154
98
|
|
|
155
|
-
|
|
99
|
+
Linux, Debian/Ubuntu prerequisites:
|
|
156
100
|
|
|
157
101
|
```bash
|
|
158
|
-
|
|
102
|
+
sudo apt install -y git cargo tmux
|
|
159
103
|
```
|
|
160
104
|
|
|
161
|
-
|
|
105
|
+
Install and launch:
|
|
162
106
|
|
|
163
107
|
```bash
|
|
164
|
-
|
|
108
|
+
codex-hud install
|
|
109
|
+
codex
|
|
165
110
|
```
|
|
166
111
|
|
|
167
|
-
|
|
112
|
+
If `codex` still resolves to the official binary after install, put `~/.local/bin` before the existing Codex binary in `PATH`.
|
|
113
|
+
|
|
114
|
+
Windows supports the npm package and `codex-hud setup` through Node.js. The current native auto-launch flow is aimed at macOS/Linux because it builds a patched Codex binary and writes a Unix-style `~/.local/bin/codex` shim.
|
|
115
|
+
|
|
116
|
+
## HUD Pane Mode
|
|
117
|
+
|
|
118
|
+
Use a live HUD pane alongside Codex:
|
|
168
119
|
|
|
169
120
|
```bash
|
|
170
|
-
codex-hud
|
|
121
|
+
codex-hud run
|
|
171
122
|
```
|
|
172
123
|
|
|
173
|
-
|
|
124
|
+
Pass Codex arguments after `--`:
|
|
174
125
|
|
|
175
|
-
|
|
126
|
+
```bash
|
|
127
|
+
codex-hud run -- --model gpt-5.5 --sandbox danger-full-access
|
|
128
|
+
```
|
|
176
129
|
|
|
177
|
-
|
|
130
|
+
Terminal launchers:
|
|
178
131
|
|
|
179
132
|
```bash
|
|
180
|
-
codex-hud
|
|
133
|
+
codex-hud run --terminal tmux
|
|
134
|
+
codex-hud run --terminal iterm
|
|
135
|
+
codex-hud run --terminal terminal
|
|
181
136
|
```
|
|
182
137
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
```toml
|
|
186
|
-
[tui]
|
|
187
|
-
status_line = [
|
|
188
|
-
"model-with-reasoning",
|
|
189
|
-
"task-progress",
|
|
190
|
-
"current-dir",
|
|
191
|
-
"git-branch",
|
|
192
|
-
"context-used",
|
|
193
|
-
"five-hour-limit",
|
|
194
|
-
"weekly-limit",
|
|
195
|
-
"fast-mode",
|
|
196
|
-
]
|
|
197
|
-
```
|
|
138
|
+
`tmux` is the portable default. `iterm` and `terminal` are macOS launchers.
|
|
198
139
|
|
|
199
|
-
|
|
140
|
+
## Commands
|
|
200
141
|
|
|
201
|
-
|
|
142
|
+
| Command | Purpose |
|
|
143
|
+
| --- | --- |
|
|
144
|
+
| `codex-hud status` | Print one HUD snapshot. |
|
|
145
|
+
| `codex-hud watch` | Refresh the HUD until interrupted. |
|
|
146
|
+
| `codex-hud run` | Launch Codex with a persistent HUD pane. |
|
|
147
|
+
| `codex-hud setup` | Configure Codex CLI's built-in status line. |
|
|
148
|
+
| `codex-hud install` | Build the native adapter and install the reversible `codex` shim. |
|
|
149
|
+
| `codex-hud native` | Launch a patched Codex binary with command-backed HUD output. |
|
|
150
|
+
| `codex-hud doctor` | Check Codex, Node.js, shim, native adapter, and config readiness. |
|
|
151
|
+
| `codex-hud config` | Print the effective Codex HUD config. |
|
|
152
|
+
| `codex-hud config init` | Create `~/.codex-hud/config.json`. |
|
|
202
153
|
|
|
203
|
-
|
|
154
|
+
Remove the auto-launch shim:
|
|
204
155
|
|
|
205
|
-
```
|
|
206
|
-
|
|
156
|
+
```bash
|
|
157
|
+
codex-hud uninstall-shim
|
|
207
158
|
```
|
|
208
159
|
|
|
209
|
-
|
|
210
|
-
`tui.status_line = ["command: codex-hud status"]` support and preserves multi-line HUD output in
|
|
211
|
-
the native bottom footer. See:
|
|
160
|
+
## Configuration
|
|
212
161
|
|
|
213
|
-
|
|
214
|
-
docs/native-codex-cli-patch.md
|
|
215
|
-
```
|
|
162
|
+
Create a config file:
|
|
216
163
|
|
|
217
|
-
|
|
164
|
+
```bash
|
|
165
|
+
codex-hud config init
|
|
166
|
+
```
|
|
218
167
|
|
|
219
|
-
|
|
168
|
+
Default path:
|
|
220
169
|
|
|
221
170
|
```text
|
|
222
171
|
~/.codex-hud/config.json
|
|
223
172
|
```
|
|
224
173
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
The configuration is intentionally close to Claude HUD-style customization. Example:
|
|
174
|
+
Minimal example:
|
|
228
175
|
|
|
229
176
|
```json
|
|
230
177
|
{
|
|
231
|
-
"
|
|
232
|
-
"lineLayout": "expanded",
|
|
178
|
+
"layout": "expanded",
|
|
233
179
|
"pathLevels": 2,
|
|
234
|
-
"elementOrder": ["model", "project", "context", "usage", "weekly", "
|
|
235
|
-
"gitStatus": {
|
|
236
|
-
"enabled": true,
|
|
237
|
-
"showDirty": true,
|
|
238
|
-
"showAheadBehind": true,
|
|
239
|
-
"showFileStats": false
|
|
240
|
-
},
|
|
180
|
+
"elementOrder": ["model", "project", "context", "usage", "weekly", "todos", "tools"],
|
|
241
181
|
"display": {
|
|
242
|
-
"showModel": true,
|
|
243
|
-
"showProject": true,
|
|
244
|
-
"showGit": true,
|
|
245
182
|
"showContext": true,
|
|
246
183
|
"showUsage": true,
|
|
247
|
-
"showWeekly": true
|
|
248
|
-
"showTools": true,
|
|
249
|
-
"showAgents": true,
|
|
250
|
-
"showTodos": true,
|
|
251
|
-
"showConfigCounts": true,
|
|
252
|
-
"showDuration": true,
|
|
253
|
-
"showMemoryUsage": true
|
|
184
|
+
"showWeekly": true
|
|
254
185
|
},
|
|
255
186
|
"colors": {
|
|
256
187
|
"context": "yellow",
|
|
257
188
|
"usage": "magenta",
|
|
258
|
-
"weekly": "magenta"
|
|
259
|
-
"warning": "yellow",
|
|
260
|
-
"usageWarning": "magenta",
|
|
261
|
-
"critical": "red",
|
|
262
|
-
"model": "magenta",
|
|
263
|
-
"project": "cyan",
|
|
264
|
-
"git": "magenta",
|
|
265
|
-
"gitBranch": "cyan",
|
|
266
|
-
"label": "dim",
|
|
267
|
-
"custom": "#FF6600"
|
|
189
|
+
"weekly": "magenta"
|
|
268
190
|
}
|
|
269
191
|
}
|
|
270
192
|
```
|
|
271
193
|
|
|
272
|
-
`
|
|
194
|
+
`layout` can be `expanded` or `compact`. `elementOrder` controls HUD section order. Colors support common ANSI names such as `cyan`, `magenta`, `yellow`, `red`, `green`, `gray`, `dim`, and truecolor hex values such as `#FF6600`.
|
|
273
195
|
|
|
274
|
-
|
|
196
|
+
## Install From Source
|
|
197
|
+
|
|
198
|
+
Use this when testing the latest GitHub version:
|
|
275
199
|
|
|
276
200
|
```bash
|
|
277
|
-
codex-hud
|
|
201
|
+
git clone https://github.com/Jiawang1209/codex-hud.git
|
|
202
|
+
cd codex-hud
|
|
203
|
+
npm install
|
|
204
|
+
npm run build
|
|
205
|
+
npm link
|
|
206
|
+
codex-hud setup
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
For native auto-launch from source:
|
|
210
|
+
|
|
211
|
+
```bash
|
|
212
|
+
codex-hud install
|
|
213
|
+
codex
|
|
278
214
|
```
|
|
279
215
|
|
|
280
216
|
## Data Sources
|
|
281
217
|
|
|
218
|
+
Codex HUD reads:
|
|
219
|
+
|
|
282
220
|
- `~/.codex/config.toml` for model and reasoning effort.
|
|
283
|
-
- `~/.codex/sessions/**/*.jsonl` for token counters, rate limits, tool activity, and plan progress.
|
|
221
|
+
- `~/.codex/sessions/**/*.jsonl` for token counters, rate limits, tool activity, and plan progress.
|
|
284
222
|
- `git` for branch and dirty state.
|
|
285
223
|
- `codex --version` for diagnostics.
|
|
286
224
|
|
|
287
|
-
|
|
288
|
-
Context uses the latest token-count frame's `last_token_usage` when available, falling back to cumulative session usage only when needed.
|
|
289
|
-
Progress values render as bars, with terminal colors enabled automatically for TTY output and disabled when `NO_COLOR` is set.
|
|
290
|
-
|
|
291
|
-
## Plugin Wrapper
|
|
292
|
-
|
|
293
|
-
The repository includes `.codex-plugin/plugin.json` and `skills/codex-hud/SKILL.md`. The plugin wrapper documents how to install Codex HUD, configure the native Codex status line, and use the richer CLI renderer while Codex command-backed status-line support is not yet available.
|
|
294
|
-
|
|
295
|
-
## Marketplace
|
|
296
|
-
|
|
297
|
-
This repository includes a local marketplace snapshot at:
|
|
298
|
-
|
|
299
|
-
```text
|
|
300
|
-
.agents/plugins/marketplace.json
|
|
301
|
-
```
|
|
225
|
+
Session parsing uses structured metadata such as event types, tool names, token counters, rate-limit counters, and plan status. It avoids displaying private transcript message bodies.
|
|
302
226
|
|
|
303
|
-
|
|
227
|
+
## Docs
|
|
304
228
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
The marketplace entry uses the standard Codex plugin layout path `./plugins/codex-hud`.
|
|
312
|
-
|
|
313
|
-
To install the plugin wrapper from GitHub:
|
|
229
|
+
- [Installation details](docs/installation.md)
|
|
230
|
+
- [Native Codex CLI patch](docs/native-codex-cli-patch.md)
|
|
231
|
+
- [Plugin marketplace wrapper](docs/plugin-marketplace.md)
|
|
232
|
+
- [Release checklist](docs/release.md)
|
|
233
|
+
- [Upstream command-backed status-line proposal](docs/upstream/codex-command-backed-statusline.md)
|
|
314
234
|
|
|
315
|
-
|
|
316
|
-
codex plugin marketplace add Jiawang1209/codex-hud --ref main
|
|
317
|
-
codex plugin list --marketplace codex-hud-marketplace
|
|
318
|
-
codex plugin add codex-hud@codex-hud-marketplace
|
|
319
|
-
```
|
|
235
|
+
## Plugin Wrapper
|
|
320
236
|
|
|
321
|
-
|
|
237
|
+
This repository includes a Codex plugin wrapper in `.codex-plugin/` and `plugins/codex-hud/`. The plugin gives Codex-side guidance and marketplace metadata; the terminal HUD runtime still comes from the `codex-hud` CLI installed through npm or from source.
|
|
322
238
|
|
|
323
239
|
## Privacy
|
|
324
240
|
|
package/dist/render.js
CHANGED
|
@@ -75,8 +75,9 @@ function formatProgress(progress, kind, config, options) {
|
|
|
75
75
|
const empty = width - filled;
|
|
76
76
|
const bar = `${config.colors.barFilled.repeat(filled)}${config.colors.barEmpty.repeat(empty)}`;
|
|
77
77
|
const label = kind === "usage" && progress.windowMinutes ? "Usage" : progress.label;
|
|
78
|
-
const
|
|
79
|
-
|
|
78
|
+
const limitText = kind === "usage" ? progress.label : formatDurationMinutes(progress.windowMinutes ?? 0);
|
|
79
|
+
const windowText = (kind === "usage" || kind === "weekly") && progress.windowMinutes
|
|
80
|
+
? ` (${formatConsumedWindow(percent, progress.windowMinutes)} / ${limitText})`
|
|
80
81
|
: "";
|
|
81
82
|
const labelColor = config.colors[kind];
|
|
82
83
|
return `${styleText(label, labelColor, options)} ${colorizeBar(bar, percent, config, options)} ${colorizeBar(`${percent}%`, percent, config, options)}${windowText}`;
|
|
@@ -87,6 +88,18 @@ function formatConsumedWindow(percent, windowMinutes) {
|
|
|
87
88
|
function formatDurationMinutes(minutes) {
|
|
88
89
|
if (minutes < 60)
|
|
89
90
|
return `${minutes}m`;
|
|
91
|
+
if (minutes >= 1440) {
|
|
92
|
+
const days = Math.floor(minutes / 1440);
|
|
93
|
+
const remainder = minutes % 1440;
|
|
94
|
+
const hours = Math.floor(remainder / 60);
|
|
95
|
+
const minuteRemainder = remainder % 60;
|
|
96
|
+
const parts = [`${days}d`];
|
|
97
|
+
if (hours > 0)
|
|
98
|
+
parts.push(`${hours}h`);
|
|
99
|
+
if (minuteRemainder > 0 && hours === 0)
|
|
100
|
+
parts.push(`${minuteRemainder}m`);
|
|
101
|
+
return parts.join(" ");
|
|
102
|
+
}
|
|
90
103
|
const hours = Math.floor(minutes / 60);
|
|
91
104
|
const remainder = minutes % 60;
|
|
92
105
|
return remainder === 0 ? `${hours}h` : `${hours}h ${remainder}m`;
|
package/dist/render.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render.js","sourceRoot":"","sources":["../src/render.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"render.js","sourceRoot":"","sources":["../src/render.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -42,7 +42,7 @@ Default `codex-hud status` output uses the expanded HUD style:
|
|
|
42
42
|
|
|
43
43
|
```text
|
|
44
44
|
[gpt-5.5 medium] │ codex-hud git:(main*)
|
|
45
|
-
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h) │ Weekly █████████░ 86%
|
|
45
|
+
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h) │ Weekly █████████░ 86% (6d 29m / 7d)
|
|
46
46
|
Todos 2/5 │ Exec active, Plan x2
|
|
47
47
|
```
|
|
48
48
|
|
|
@@ -42,7 +42,7 @@ Default `codex-hud status` output uses the expanded HUD style:
|
|
|
42
42
|
|
|
43
43
|
```text
|
|
44
44
|
[gpt-5.5 medium] │ codex-hud git:(main*)
|
|
45
|
-
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h) │ Weekly █████████░ 86%
|
|
45
|
+
Context ████░░░░░░ 42% │ Usage ███████░░░ 68% (3h 24m / 5h) │ Weekly █████████░ 86% (6d 29m / 7d)
|
|
46
46
|
Todos 2/5 │ Exec active, Plan x2
|
|
47
47
|
```
|
|
48
48
|
|