triflux 6.0.12 → 6.0.14
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/hub/team/headless.mjs +4 -4
- package/hud/hud-qos-status.mjs +5 -5
- package/package.json +1 -1
package/hub/team/headless.mjs
CHANGED
|
@@ -20,11 +20,11 @@ import {
|
|
|
20
20
|
|
|
21
21
|
const RESULT_DIR = join(tmpdir(), "tfx-headless");
|
|
22
22
|
|
|
23
|
-
/** CLI별 브랜드 — 이모지 +
|
|
23
|
+
/** CLI별 브랜드 — 이모지 + 공식 색상 (HUD와 통일) */
|
|
24
24
|
const CLI_BRAND = {
|
|
25
|
-
codex: { emoji: "\u{
|
|
26
|
-
gemini: { emoji: "\u{1F535}", label: "Gemini", ansi: "\x1b[
|
|
27
|
-
claude: { emoji: "\u{1F7E0}", label: "Claude", ansi: "\x1b[
|
|
25
|
+
codex: { emoji: "\u{26AA}", label: "Codex", ansi: "\x1b[97m" }, // ⚪ bright white (codexWhite)
|
|
26
|
+
gemini: { emoji: "\u{1F535}", label: "Gemini", ansi: "\x1b[38;5;39m" }, // 🔵 geminiBlue
|
|
27
|
+
claude: { emoji: "\u{1F7E0}", label: "Claude", ansi: "\x1b[38;2;232;112;64m" }, // 🟠 claudeOrange
|
|
28
28
|
};
|
|
29
29
|
const ANSI_RESET = "\x1b[0m";
|
|
30
30
|
const ANSI_DIM = "\x1b[2m";
|
package/hud/hud-qos-status.mjs
CHANGED
|
@@ -449,17 +449,17 @@ function getTeamRow() {
|
|
|
449
449
|
? `${Math.round((Date.now() - teamState.startedAt) / 60000)}m`
|
|
450
450
|
: "";
|
|
451
451
|
|
|
452
|
-
// CLI
|
|
453
|
-
|
|
454
|
-
|
|
452
|
+
// CLI 브랜드: 단일문자 + ANSI 색상 (x=codex, g=gemini, c=claude)
|
|
453
|
+
// CLI 브랜드 색상 통일 — 프로바이더 행과 동일 (codexWhite, geminiBlue, claudeOrange)
|
|
454
|
+
const cliTag = (cli) => cli === "codex" ? bold(codexWhite("x")) : cli === "gemini" ? bold(geminiBlue("g")) : bold(claudeOrange("c"));
|
|
455
|
+
// 멤버 상태: 태그 + 상태기호 (60col 이상)
|
|
455
456
|
const memberIcons = (CURRENT_TIER === "full" || CURRENT_TIER === "compact" || CURRENT_TIER === "minimal") ? workers.map((m) => {
|
|
456
457
|
const task = tasks.find((t) => t.owner === m.name);
|
|
457
458
|
const status = task?.status === "completed" ? green("✓")
|
|
458
459
|
: task?.status === "in_progress" ? yellow("⋯")
|
|
459
460
|
: task?.status === "failed" ? red("✗")
|
|
460
461
|
: dim("◌");
|
|
461
|
-
|
|
462
|
-
return `${emoji}${status}`;
|
|
462
|
+
return `${cliTag(m.cli)}${status}`;
|
|
463
463
|
}).join(" ") : "";
|
|
464
464
|
|
|
465
465
|
// 진행 텍스트 — "team" 제거, 숫자만
|