triflux 4.2.2 → 4.2.3

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/bin/triflux.mjs CHANGED
@@ -2441,7 +2441,7 @@ async function main() {
2441
2441
  case "nr": {
2442
2442
  const scriptPath = join(PKG_ROOT, "scripts", "notion-read.mjs");
2443
2443
  try {
2444
- execFileSync(process.execPath, [scriptPath, ...cmdArgs], { stdio: "inherit", timeout: 660000 });
2444
+ execFileSync(process.execPath, [scriptPath, ...cmdArgs], { stdio: "inherit", timeout: 660000, windowsHide: true });
2445
2445
  } catch (e) {
2446
2446
  throw createCliError(e.message || "notion-read 실행 실패", {
2447
2447
  exitCode: e.status || EXIT_ERROR,
package/hub/team/pane.mjs CHANGED
@@ -46,6 +46,7 @@ function muxExec(args, opts = {}) {
46
46
  encoding: "utf8",
47
47
  timeout: 10000,
48
48
  stdio: ["pipe", "pipe", "pipe"],
49
+ windowsHide: true,
49
50
  ...opts,
50
51
  });
51
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triflux",
3
- "version": "4.2.2",
3
+ "version": "4.2.3",
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": {