triflux 9.7.10 → 9.7.12
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.
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
{
|
|
10
10
|
"name": "triflux",
|
|
11
11
|
"description": "CLI-first multi-model orchestrator for Claude Code. Routes tasks to Codex, Gemini, and Claude CLIs with automatic triage, DAG-based parallel execution, headless psmux sessions, and cost-optimized routing. Includes 41 skills, HUD status bar, hook orchestrator, and shell-based CLI routing.",
|
|
12
|
-
"version": "9.7.
|
|
12
|
+
"version": "9.7.12",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "tellang"
|
|
15
15
|
},
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
]
|
|
31
31
|
}
|
|
32
32
|
],
|
|
33
|
-
"version": "9.7.
|
|
33
|
+
"version": "9.7.12"
|
|
34
34
|
}
|
package/bin/triflux.mjs
CHANGED
|
@@ -2856,7 +2856,7 @@ async function checkHubRunning() {
|
|
|
2856
2856
|
try {
|
|
2857
2857
|
const cacheFile = join(homedir(), ".claude", "cache", "tfx-preflight.json");
|
|
2858
2858
|
const cached = JSON.parse(readFileSync(cacheFile, "utf8"));
|
|
2859
|
-
if (Date.now() - cached.timestamp <
|
|
2859
|
+
if (Date.now() - cached.timestamp < 3_600_000 && cached.hub?.ok) return true;
|
|
2860
2860
|
} catch {}
|
|
2861
2861
|
const port = Number(process.env.TFX_HUB_PORT || "27888");
|
|
2862
2862
|
try {
|
package/hub/team/backend.mjs
CHANGED
|
@@ -22,7 +22,7 @@ export class CodexBackend {
|
|
|
22
22
|
const cwdFlag = opts.cwd ? ` --cwd '${opts.cwd}'` : "";
|
|
23
23
|
// Codex 0.117.0+: config.toml에 sandbox 설정이 있으면 CLI 플래그 중복 불가
|
|
24
24
|
// --dangerously-bypass-approvals-and-sandbox 대신 exec 서브커맨드만 사용 (config가 sandbox 관리)
|
|
25
|
-
return `codex exec ${prompt} --output-last-message '${resultFile}' --color never${modelFlag}${cwdFlag}`;
|
|
25
|
+
return `codex exec ${prompt} --output-last-message '${resultFile}' --color never --skip-git-repo-check${modelFlag}${cwdFlag}`;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
env() { return {}; }
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ const PKG_ROOT = join(dirname(__filename), "..");
|
|
|
12
12
|
|
|
13
13
|
const CACHE_DIR = join(homedir(), ".claude", "cache");
|
|
14
14
|
const CACHE_FILE = join(CACHE_DIR, "tfx-preflight.json");
|
|
15
|
-
const CACHE_TTL_MS =
|
|
15
|
+
const CACHE_TTL_MS = 3_600_000; // 1시간 (세션당 1회, SessionStart 훅에서 갱신)
|
|
16
16
|
|
|
17
17
|
function checkRoute() {
|
|
18
18
|
const routePath = join(homedir(), ".claude", "scripts", "tfx-route.sh");
|