orchestrix 16.1.7 → 16.1.8

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.
@@ -254,12 +254,20 @@ AGENT_LOAD_WAIT=15
254
254
  # Auto-start workflow command (sent to SM window)
255
255
  AUTO_START_COMMAND="1"
256
256
 
257
+ # Language flag: read from $ORCHESTRIX_LANG (e.g., "zh") or empty for English.
258
+ # Yuri sets this before calling start-orchestrix.sh to propagate frontend locale.
259
+ LANG_FLAG=""
260
+ if [ -n "$ORCHESTRIX_LANG" ] && [ "$ORCHESTRIX_LANG" != "en" ]; then
261
+ LANG_FLAG="--lang=$ORCHESTRIX_LANG"
262
+ echo "🌐 Language: $ORCHESTRIX_LANG"
263
+ fi
264
+
257
265
  # Agent activation commands (MCP version uses /o command)
258
266
  declare -a AGENT_COMMANDS=(
259
- "/o architect" # Window 0 - Architect
260
- "/o sm" # Window 1 - SM
261
- "/o dev" # Window 2 - Dev
262
- "/o qa" # Window 3 - QA
267
+ "/o architect $LANG_FLAG" # Window 0 - Architect
268
+ "/o sm $LANG_FLAG" # Window 1 - SM
269
+ "/o dev $LANG_FLAG" # Window 2 - Dev
270
+ "/o qa $LANG_FLAG" # Window 3 - QA
263
271
  )
264
272
 
265
273
  declare -a AGENT_NAMES=(
@@ -254,10 +254,10 @@ tmux kill-session -t "$OP_SESSION"
254
254
  # Launch dev session with same op-{name}
255
255
  # start-orchestrix.sh reads ORCHESTRIX_SESSION and uses it as the session name
256
256
  # instead of its default "orchestrix-{repo-id}" naming.
257
- ORCHESTRIX_SESSION="$OP_SESSION" bash "$WORK_DIR/.orchestrix-core/scripts/start-orchestrix.sh"
257
+ ORCHESTRIX_SESSION="$OP_SESSION" ORCHESTRIX_LANG="$LANG" bash "$WORK_DIR/.orchestrix-core/scripts/start-orchestrix.sh"
258
258
  ```
259
259
 
260
- **Important**: Pass `ORCHESTRIX_SESSION` inline (not `export`) to avoid polluting Yuri's own shell environment. The script creates a new `op-{name}` session with 4 dev agent windows.
260
+ **Important**: Pass `ORCHESTRIX_SESSION` and `ORCHESTRIX_LANG` inline (not `export`) to avoid polluting Yuri's own shell environment. `$LANG` is `zh` or `en` based on your `--lang` activation parameter. The script creates a new `op-{name}` session with 4 dev agent windows, all using the same language.
261
261
 
262
262
  ### Phase B: Remote Development Monitoring
263
263
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrix",
3
- "version": "16.1.7",
3
+ "version": "16.1.8",
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"