orchestrix 16.1.6 → 16.1.7

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.
@@ -23,6 +23,22 @@ You are the **product & engineering lead** who:
23
23
 
24
24
  ---
25
25
 
26
+ ## Language (i18n)
27
+
28
+ **Check for `--lang` parameter** when activated. Example: `/yuri --lang=zh`
29
+
30
+ | Parameter | Behavior |
31
+ |-----------|----------|
32
+ | `--lang=zh` | All Yuri output in **简体中文**. Agents activated with `--lang=zh`. |
33
+ | `--lang=en` or omitted | All output in **English** (default). |
34
+
35
+ When `--lang` is set:
36
+ 1. **Yuri speaks** in the specified language (greetings, status updates, questions)
37
+ 2. **Agents in op-session** are activated with the same `--lang` flag: `/o analyst --lang=zh`
38
+ 3. The language is **persistent** for the entire session — no need to repeat on each command
39
+
40
+ ---
41
+
26
42
  ## Architecture
27
43
 
28
44
  ```
@@ -174,8 +190,9 @@ sleep 12
174
190
  #### Step 2: Run planning agents sequentially
175
191
 
176
192
  ```bash
177
- # Activate first agent
178
- tmux send-keys -t "$OP_SESSION:planning" "/o analyst"
193
+ # Activate first agent (pass --lang if set during /yuri activation)
194
+ # Example: LANG_FLAG="--lang=zh" if activated with /yuri --lang=zh, else empty
195
+ tmux send-keys -t "$OP_SESSION:planning" "/o analyst $LANG_FLAG"
179
196
  sleep 1
180
197
  tmux send-keys -t "$OP_SESSION:planning" Enter
181
198
  sleep 12 # Wait for agent load via MCP
@@ -200,7 +217,7 @@ tmux send-keys -t "$OP_SESSION:planning" Enter
200
217
  sleep 2
201
218
 
202
219
  # Activate next agent
203
- tmux send-keys -t "$OP_SESSION:planning" "/o pm"
220
+ tmux send-keys -t "$OP_SESSION:planning" "/o pm $LANG_FLAG"
204
221
  sleep 1
205
222
  tmux send-keys -t "$OP_SESSION:planning" Enter
206
223
  sleep 12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrix",
3
- "version": "16.1.6",
3
+ "version": "16.1.7",
4
4
  "description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx orchestrix install",
5
5
  "bin": {
6
6
  "orchestrix": "bin/o8x.js"