@bramblex/codex-workbench 0.1.10 → 0.1.12

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 CHANGED
@@ -122,29 +122,7 @@ Only use `--file` when Codex itself cannot remove the session. It deletes the JS
122
122
 
123
123
  Run `cwb` with no arguments to open the TUI:
124
124
 
125
- ```
126
- ┌─ Codex Workbench ───────────────────────────────────────────────────┐
127
- │ 12/57 visible Local: ~/projects/api │
128
- ├──────────────┬──────────────────────────────────────────────────────┤
129
- │ > Sources │ > Sessions │
130
- │ │ │
131
- │ 0 All (57) │ a1b2c3d4e5f6g 23t 2025-03-15 14:22 fix auth bug │
132
- │ = host-a (5) │ c8d9e0f1a2b3c 12t 2025-03-14 09:15 refactor db │
133
- │ api (3) │ d4e5f6g7h8i9j 5t 2025-03-13 16:48 add tests │
134
- │ web (2) │ ... │
135
- │ = host-b (7) │ │
136
- │ data (4) ├──────────────────────────────────────────────────────┤
137
- │ infra (3) │ > Details │
138
- │ │ │
139
- │ │ fix auth bug │
140
- │ │ id: a1b2c3d4e5f6g7... │
141
- │ │ source: Local │
142
- │ │ cwd: ~/projects/api │
143
- │ │ ... │
144
- ├──────────────┴──────────────────────────────────────────────────────┤
145
- │ Sessions: ↑/↓ select Enter resume r rename n new d delete q quit│
146
- └─────────────────────────────────────────────────────────────────────┘
147
- ```
125
+ ![Screenshot of codex-workbench interactive TUI showing local, staging, and production sessions](assets/screenshot.png)
148
126
 
149
127
  ### Keyboard shortcuts
150
128
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bramblex/codex-workbench",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "Terminal workbench for browsing and managing local and SSH Codex sessions.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,6 +28,7 @@
28
28
  "files": [
29
29
  "bin/",
30
30
  "src/",
31
+ "assets/",
31
32
  "README.md",
32
33
  "LICENSE"
33
34
  ],
@@ -629,12 +629,13 @@ async function runWorkbench() {
629
629
  updateFocusStyles();
630
630
  });
631
631
 
632
- projectsList.key(['j', 'down'], () => {
632
+ // blessed handles up/down natively via keys:true; only bind j/k
633
+ projectsList.key(['j'], () => {
633
634
  if (promptOpen()) return;
634
635
  selectGroup(groupIndex + 1);
635
636
  });
636
637
 
637
- projectsList.key(['k', 'up'], () => {
638
+ projectsList.key(['k'], () => {
638
639
  if (promptOpen()) return;
639
640
  selectGroup(groupIndex - 1);
640
641
  });