@ekkos/cli 0.2.3 → 0.2.4

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.
@@ -54,15 +54,15 @@ catch {
54
54
  function getConfig(options) {
55
55
  return {
56
56
  slashOpenDelayMs: options.slashOpenDelayMs ??
57
- parseInt(process.env.EKKOS_SLASH_OPEN_DELAY_MS || '1000', 10),
57
+ parseInt(process.env.EKKOS_SLASH_OPEN_DELAY_MS || '500', 10), // was 1000
58
58
  charDelayMs: options.charDelayMs ??
59
59
  parseInt(process.env.EKKOS_CHAR_DELAY_MS || '25', 10),
60
60
  postEnterDelayMs: options.postEnterDelayMs ??
61
- parseInt(process.env.EKKOS_POST_ENTER_DELAY_MS || '500', 10),
61
+ parseInt(process.env.EKKOS_POST_ENTER_DELAY_MS || '300', 10), // was 500
62
62
  clearWaitMs: options.clearWaitMs ??
63
- parseInt(process.env.EKKOS_CLEAR_WAIT_MS || '5000', 10),
63
+ parseInt(process.env.EKKOS_CLEAR_WAIT_MS || '2500', 10), // was 5000
64
64
  idlePromptMs: parseInt(process.env.EKKOS_IDLE_PROMPT_MS || '250', 10),
65
- paletteRetryMs: parseInt(process.env.EKKOS_PALETTE_RETRY_MS || '500', 10),
65
+ paletteRetryMs: parseInt(process.env.EKKOS_PALETTE_RETRY_MS || '400', 10), // was 500
66
66
  debugLogPath: options.debugLogPath ??
67
67
  process.env.EKKOS_DEBUG_LOG_PATH ??
68
68
  path.join(os.homedir(), '.ekkos', 'auto-continue.debug.log')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekkos/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Setup ekkOS memory for AI coding assistants (Claude Code, Cursor, Windsurf)",
5
5
  "main": "dist/index.js",
6
6
  "bin": {