@ekkos/cli 1.2.11 → 1.2.13
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/dist/commands/run.js +5 -5
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -1084,7 +1084,10 @@ async function run(options) {
|
|
|
1084
1084
|
}
|
|
1085
1085
|
}
|
|
1086
1086
|
// Check PTY availability early (deterministic, no async race)
|
|
1087
|
-
|
|
1087
|
+
// Windows: SKIP node-pty entirely. ConPTY corrupts Ink's cursor management sequences
|
|
1088
|
+
// (hide/show/move), causing ghost ▊ block cursor artifacts. Use stdio:'inherit' spawn
|
|
1089
|
+
// instead so Ink gets direct terminal access. Hooks still handle session tracking.
|
|
1090
|
+
const loadedPty = isWindows ? null : await loadPty();
|
|
1088
1091
|
const usePty = loadedPty !== null;
|
|
1089
1092
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1090
1093
|
// CONCURRENT STARTUP: Spawn Claude while animation runs
|
|
@@ -1134,10 +1137,7 @@ async function run(options) {
|
|
|
1134
1137
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1135
1138
|
// STARTUP BANNER WITH COLOR PULSE ANIMATION
|
|
1136
1139
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1137
|
-
|
|
1138
|
-
// cursor repositioning (\x1B[6A, \b, etc.), leaving the terminal in a dirty state that
|
|
1139
|
-
// causes Ink rendering artifacts in Claude Code. Use a clean static banner instead.
|
|
1140
|
-
const skipFancyIntro = isWindows || process.env.EKKOS_REMOTE_SESSION === '1' || process.env.EKKOS_NO_SPLASH === '1';
|
|
1140
|
+
const skipFancyIntro = process.env.EKKOS_REMOTE_SESSION === '1' || process.env.EKKOS_NO_SPLASH === '1';
|
|
1141
1141
|
if (!skipFancyIntro) {
|
|
1142
1142
|
const logoLines = [
|
|
1143
1143
|
' ▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄ ▄▄',
|