@ekkos/cli 1.2.10 → 1.2.11
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 +7 -2
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -1134,7 +1134,10 @@ async function run(options) {
|
|
|
1134
1134
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1135
1135
|
// STARTUP BANNER WITH COLOR PULSE ANIMATION
|
|
1136
1136
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1137
|
-
|
|
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';
|
|
1138
1141
|
if (!skipFancyIntro) {
|
|
1139
1142
|
const logoLines = [
|
|
1140
1143
|
' ▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄ ▄▄',
|
|
@@ -1320,8 +1323,10 @@ async function run(options) {
|
|
|
1320
1323
|
console.log('');
|
|
1321
1324
|
}
|
|
1322
1325
|
else {
|
|
1326
|
+
// Static banner for Windows / remote / no-splash — no cursor manipulation
|
|
1327
|
+
console.log('');
|
|
1328
|
+
console.log(chalk_1.default.hex('#FF6B35').bold(' ekkOS_Pulse') + chalk_1.default.gray(' — Context is finite. Intelligence isn\'t.'));
|
|
1323
1329
|
console.log('');
|
|
1324
|
-
console.log(chalk_1.default.cyan(' ekkOS remote session ready'));
|
|
1325
1330
|
if (bypass) {
|
|
1326
1331
|
console.log(chalk_1.default.yellow(' ⚡ Bypass permissions mode enabled'));
|
|
1327
1332
|
}
|