triflux 9.7.8 → 9.7.9
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.9",
|
|
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.9"
|
|
34
34
|
}
|
package/hub/team/ansi.mjs
CHANGED
|
@@ -22,6 +22,7 @@ export function moveDown(n = 1) { return `${ESC}[${n}B`; }
|
|
|
22
22
|
// ── 줄 제어 ──
|
|
23
23
|
export const clearLine = `${ESC}[2K`;
|
|
24
24
|
export const clearToEnd = `${ESC}[K`;
|
|
25
|
+
export const eraseBelow = `${ESC}[J`;
|
|
25
26
|
|
|
26
27
|
// ── 색상 (triflux 디자인 시스템) ──
|
|
27
28
|
export const RESET = `${ESC}[0m`;
|
package/hub/team/tui-lite.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { altScreenOff, altScreenOn, BG, bold, box, clearScreen, color, cursorHide, cursorHome, cursorShow, dim, FG, MOCHA, padRight, progressBar, statusBadge, stripAnsi, truncate, wcswidth } from "./ansi.mjs";
|
|
1
|
+
import { altScreenOff, altScreenOn, BG, bold, box, clearScreen, clearToEnd, color, cursorHide, cursorHome, cursorShow, dim, eraseBelow, FG, MOCHA, padRight, progressBar, statusBadge, stripAnsi, truncate, wcswidth } from "./ansi.mjs";
|
|
2
2
|
|
|
3
3
|
const FALLBACK_COLUMNS = 100, FALLBACK_ROWS = 24;
|
|
4
4
|
const VALID_TABS = new Set(["log", "detail", "files"]);
|
|
@@ -335,8 +335,11 @@ export function createLiteDashboard(opts = {}) {
|
|
|
335
335
|
attachInput();
|
|
336
336
|
frameCount++;
|
|
337
337
|
const rowsOut = buildRows();
|
|
338
|
-
if (isTTY)
|
|
339
|
-
|
|
338
|
+
if (isTTY) {
|
|
339
|
+
const width = viewportColumns();
|
|
340
|
+
const padded = rowsOut.map((line) => padRight(String(line ?? ""), width) + clearToEnd);
|
|
341
|
+
write(cursorHome + padded.join("\n") + eraseBelow);
|
|
342
|
+
} else write(`${rowsOut.join("\n")}\n`);
|
|
340
343
|
}
|
|
341
344
|
|
|
342
345
|
function close() {
|