You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3

4
4
5
-
CodexMonitor is a macOS Tauri app for orchestrating multiple Codex agents across local workspaces. It provides a sidebar to manage projects, a home screen for quick actions, and a conversation view backed by the Codex app-server protocol.
5
+
CodexMonitor is a desktop Tauri app for orchestrating multiple Codex agents across local workspaces on macOS and Windows. It provides a sidebar to manage projects, a home screen for quick actions, and a conversation view backed by the Codex app-server protocol.
6
6
7
7
## Features
8
8
@@ -40,13 +40,13 @@ CodexMonitor is a macOS Tauri app for orchestrating multiple Codex agents across
40
40
- Responsive layouts (desktop/tablet/phone) with tabbed navigation.
41
41
- Sidebar usage and credits meter for account rate limits plus a home usage snapshot.
42
42
- Terminal dock with multiple tabs for background commands (experimental).
43
-
- In-app updates with toast-driven download/install, debug panel copy/clear, sound notifications, and macOS overlay title bar with vibrancy + reduced transparency toggle.
43
+
- In-app updates with toast-driven download/install, debug panel copy/clear, sound notifications, and (macOS) overlay title bar with vibrancy + reduced transparency toggle.
44
44
45
45
## Requirements
46
46
47
47
- Node.js + npm
48
48
- Rust toolchain (stable)
49
-
- CMake (required for native dependencies; Whisper/dictation uses it on non-Windows)
49
+
- CMake (required for native dependencies; Whisper/dictation uses it on macOS/Linux)
50
50
- Codex installed on your system and available as `codex` in `PATH`
51
51
- Git CLI (used for worktree operations)
52
52
- GitHub CLI (`gh`) for the Issues panel (optional)
@@ -74,13 +74,15 @@ npm run tauri dev
74
74
75
75
## Release Build
76
76
77
-
Build the production Tauri bundle (app + dmg):
77
+
Build the production Tauri bundle:
78
78
79
79
```bash
80
80
npm run tauri build
81
81
```
82
82
83
-
The macOS app bundle will be in `src-tauri/target/release/bundle/macos/`.
Note: dictation is currently disabled on Windows builds (to avoid requiring LLVM/libclang for `whisper-rs`/bindgen).
100
+
Notes:
101
+
102
+
- Dictation is currently disabled on Windows builds (to avoid requiring LLVM/libclang for `whisper-rs`/bindgen).
103
+
- “Open in VS Code/Cursor” uses command targets (e.g. `code`, `cursor`) by default. If those commands are missing, enable their CLI shims on `PATH` or configure a full executable path in the app settings.
0 commit comments