@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.
@@ -1084,7 +1084,10 @@ async function run(options) {
1084
1084
  }
1085
1085
  }
1086
1086
  // Check PTY availability early (deterministic, no async race)
1087
- const loadedPty = await loadPty();
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
- // Skip cursor-manipulation animations on Windows ConPTY + cmd /c can't handle rapid
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
  ' ▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄ ▄▄',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekkos/cli",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "description": "Setup ekkOS memory for AI coding assistants (Claude Code, Cursor, Windsurf)",
5
5
  "main": "dist/index.js",
6
6
  "bin": {