oh-my-codex 0.6.0 → 0.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-codex",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Multi-agent orchestration layer for OpenAI Codex CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -5,7 +5,7 @@ description: N coordinated agents on shared task list using tmux-based orchestra
5
5
 
6
6
  # Team Skill
7
7
 
8
- `$team` is the tmux-based parallel execution mode for OMX. It starts real worker Codex sessions in split panes and coordinates them through `.omx/state/team/...` files plus MCP team tools.
8
+ `$team` is the tmux-based parallel execution mode for OMX. It starts real worker Codex and/or Claude CLI sessions in split panes and coordinates them through `.omx/state/team/...` files plus MCP team tools.
9
9
 
10
10
  This skill is operationally sensitive. Treat it as an operator workflow, not a generic prompt pattern.
11
11
 
@@ -35,6 +35,23 @@ omx team "debug flaky integration tests"
35
35
  omx team ralph "ship end-to-end fix with verification"
36
36
  ```
37
37
 
38
+ ### Claude teammates (v0.6.0+)
39
+
40
+ Important: `N:agent-type` (for example `2:executor`) selects the **worker role prompt**, not the worker CLI (`codex` vs `claude`).
41
+
42
+ To launch Claude teammates, use the team worker CLI env vars:
43
+
44
+ ```bash
45
+ # Force all teammates to Claude CLI
46
+ OMX_TEAM_WORKER_CLI=claude omx team 2:executor "update docs and report"
47
+
48
+ # Mixed team (worker 1 = Codex, worker 2 = Claude)
49
+ OMX_TEAM_WORKER_CLI_MAP=codex,claude omx team 2:executor "split doc/code tasks"
50
+
51
+ # Auto mode: Claude is selected when worker launch args/model contains 'claude'
52
+ OMX_TEAM_WORKER_CLI=auto OMX_TEAM_WORKER_LAUNCH_ARGS="--model claude-..." omx team 2:executor "run mixed validation"
53
+ ```
54
+
38
55
  ## Preconditions
39
56
 
40
57
  Before running `$team`, confirm:
@@ -72,6 +89,7 @@ If duplicates exist, remove extras before `omx team` to prevent HUD ending up in
72
89
  - `OMX_TEAM_WORKER=<team>/worker-<n>`
73
90
  - `OMX_TEAM_STATE_ROOT=<leader-cwd>/.omx/state`
74
91
  - `OMX_TEAM_LEADER_CWD=<leader-cwd>`
92
+ - worker CLI selected by `OMX_TEAM_WORKER_CLI` / `OMX_TEAM_WORKER_CLI_MAP` (`codex` or `claude`)
75
93
  - optional worktree metadata envs when `--worktree` is used
76
94
  7. Wait for worker readiness (`capture-pane` polling)
77
95
  8. Write per-worker `inbox.md` and trigger via `tmux send-keys`
@@ -80,7 +98,7 @@ If duplicates exist, remove extras before `omx team` to prevent HUD ending up in
80
98
  Important:
81
99
 
82
100
  - Leader remains in existing pane
83
- - Worker panes are independent full Codex sessions
101
+ - Worker panes are independent full Codex/Claude CLI sessions
84
102
  - Workers may run in separate git worktrees (`omx team --worktree[=<name>]`) while sharing one team state root
85
103
  - Worker ACKs go to `mailbox/leader-fixed.json`
86
104
  - Notify hook updates worker heartbeat and nudges leader during active team mode