triflux 2.4.3 → 2.4.4

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.
Files changed (2) hide show
  1. package/bin/triflux.mjs +9 -2
  2. package/package.json +1 -1
package/bin/triflux.mjs CHANGED
@@ -296,11 +296,18 @@ function cmdDoctor(options = {}) {
296
296
  const hudScript = join(CLAUDE_DIR, "hud", "hud-qos-status.mjs");
297
297
  if (existsSync(hudScript)) {
298
298
  try {
299
- execSync(`"${process.execPath}" "${hudScript}" --refresh-gemini`, { timeout: 15000, stdio: "ignore" });
299
+ execSync(`"${process.execPath}" "${hudScript}" --refresh-claude-usage`, { timeout: 20000, stdio: "ignore" });
300
+ ok("Claude 사용량 캐시 재생성됨");
301
+ } catch { warn("Claude 사용량 캐시 재생성 실패 — 다음 API 호출 시 자동 생성"); }
302
+ try {
303
+ execSync(`"${process.execPath}" "${hudScript}" --refresh-codex-rate-limits`, { timeout: 15000, stdio: "ignore" });
304
+ ok("Codex 레이트 리밋 캐시 재생성됨");
305
+ } catch { warn("Codex 레이트 리밋 캐시 재생성 실패"); }
306
+ try {
307
+ execSync(`"${process.execPath}" "${hudScript}" --refresh-gemini-quota`, { timeout: 15000, stdio: "ignore" });
300
308
  ok("Gemini 쿼터 캐시 재생성됨");
301
309
  } catch { warn("Gemini 쿼터 캐시 재생성 실패"); }
302
310
  }
303
- info("Claude/Codex 캐시는 다음 사용 시 자동 생성됩니다");
304
311
  console.log(`\n ${LINE}`);
305
312
  console.log(` ${GREEN_BRIGHT}${BOLD}✓ 캐시 초기화 + 재생성 완료${RESET}\n`);
306
313
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triflux",
3
- "version": "2.4.3",
3
+ "version": "2.4.4",
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": {