triflux 10.9.24 → 10.9.26

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.
@@ -30,5 +30,5 @@
30
30
  ]
31
31
  }
32
32
  ],
33
- "version": "10.9.24"
33
+ "version": "10.9.26"
34
34
  }
@@ -15,7 +15,7 @@ const REQUIRED_TOOLS = ["codex", "codex-reply"];
15
15
 
16
16
  export { CODEX_MCP_EXECUTION_EXIT_CODE, CODEX_MCP_TRANSPORT_EXIT_CODE };
17
17
  export const DEFAULT_CODEX_MCP_TIMEOUT_MS = 10 * 60 * 1000;
18
- export const DEFAULT_CODEX_MCP_BOOTSTRAP_TIMEOUT_MS = 10 * 1000;
18
+ export const DEFAULT_CODEX_MCP_BOOTSTRAP_TIMEOUT_MS = 120 * 1000;
19
19
 
20
20
  /**
21
21
  * Codex MCP transport/bootstrap 계층 오류
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triflux",
3
- "version": "10.9.24",
3
+ "version": "10.9.26",
4
4
  "description": "CLI-first multi-model orchestrator for Claude Code — route tasks to Codex, Gemini, and Claude",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1716,12 +1716,8 @@ FALLBACK_EOF
1716
1716
  if [[ "$exit_code" -eq 0 ]]; then
1717
1717
  codex_transport_effective="mcp"
1718
1718
  elif [[ "$exit_code" -eq "$CODEX_MCP_TRANSPORT_EXIT_CODE" && "$TFX_CODEX_TRANSPORT" == "auto" ]]; then
1719
- echo "[tfx-route] Codex MCP bootstrap 실패(exit=${exit_code}). legacy exec 경로로 fallback합니다." >&2
1720
- : > "$STDOUT_LOG"
1721
- : > "$STDERR_LOG"
1722
- exit_code=0
1723
- run_codex_exec "$FULL_PROMPT" "$use_tee" || exit_code=$?
1724
- codex_transport_effective="exec-fallback"
1719
+ echo "[tfx-route] Codex MCP bootstrap 실패(exit=${exit_code}). exec fallback 비활성(stdin 블록 위험)." >&2
1720
+ codex_transport_effective="mcp-failed"
1725
1721
  else
1726
1722
  codex_transport_effective="mcp"
1727
1723
  fi