triflux 6.0.13 → 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 +2 -1
- 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
|
@@ -450,7 +450,8 @@ function getTeamRow() {
|
|
|
450
450
|
: "";
|
|
451
451
|
|
|
452
452
|
// CLI 브랜드: 단일문자 + ANSI 색상 (x=codex, g=gemini, c=claude)
|
|
453
|
-
|
|
453
|
+
// CLI 브랜드 색상 통일 — 프로바이더 행과 동일 (codexWhite, geminiBlue, claudeOrange)
|
|
454
|
+
const cliTag = (cli) => cli === "codex" ? bold(codexWhite("x")) : cli === "gemini" ? bold(geminiBlue("g")) : bold(claudeOrange("c"));
|
|
454
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);
|