@ekkos/cli 1.2.11 → 1.2.12

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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekkos/cli",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "description": "Setup ekkOS memory for AI coding assistants (Claude Code, Cursor, Windsurf)",
5
5
  "main": "dist/index.js",
6
6
  "bin": {