triflux 9.7.3 → 9.7.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 +3 -3
  2. package/package.json +1 -1
package/bin/triflux.mjs CHANGED
@@ -688,7 +688,7 @@ function buildSetupDryRunPlan() {
688
688
  }
689
689
 
690
690
  function cmdSetup(options = {}) {
691
- const { dryRun = false } = options;
691
+ const { dryRun = false, overrideVersion } = options;
692
692
  if (dryRun) {
693
693
  printJson(buildSetupDryRunPlan());
694
694
  return;
@@ -935,7 +935,7 @@ function cmdSetup(options = {}) {
935
935
  }
936
936
 
937
937
  console.log(`\n${DIM}설치 위치: ${CLAUDE_DIR}${RESET}`);
938
- console.log(`${DIM}버전: v${PKG.version}${RESET}\n`);
938
+ console.log(`${DIM}버전: v${overrideVersion || PKG.version}${RESET}\n`);
939
939
  }
940
940
 
941
941
  function addDoctorCheck(report, entry) {
@@ -2384,7 +2384,7 @@ function cmdUpdate() {
2384
2384
 
2385
2385
  // setup 재실행 — 개선된 cmdSetup()이 Gemini 프로필, CLI 확인, 요약 테이블 포함
2386
2386
  console.log(`\n${CYAN}── 설정 동기화 ──${RESET}`);
2387
- cmdSetup({ fromUpdate: true });
2387
+ cmdSetup({ fromUpdate: true, overrideVersion: newVer });
2388
2388
 
2389
2389
  // hook-orchestrator apply — settings.json 훅 경로를 올바른 절대경로로 갱신
2390
2390
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triflux",
3
- "version": "9.7.3",
3
+ "version": "9.7.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": {