coder-config 0.44.41 → 0.44.42

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/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.44.41';
5
+ const VERSION = '0.44.42';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.44.41",
3
+ "version": "0.44.42",
4
4
  "description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
@@ -117,7 +117,12 @@ class TerminalServer {
117
117
  delayedCmdSent = true;
118
118
  // Small delay after detecting ready state
119
119
  setTimeout(() => {
120
- ptyProcess.write(delayedCmd + '\r');
120
+ // Send command first, then Enter separately
121
+ // Claude Code treats large text as paste and waits for Enter confirmation
122
+ ptyProcess.write(delayedCmd);
123
+ setTimeout(() => {
124
+ ptyProcess.write('\r');
125
+ }, 100);
121
126
  }, 200);
122
127
  }
123
128
  }
@@ -130,7 +135,11 @@ class TerminalServer {
130
135
  setTimeout(() => {
131
136
  if (!delayedCmdSent) {
132
137
  delayedCmdSent = true;
133
- ptyProcess.write(delayedCmd + '\r');
138
+ // Send command first, then Enter separately
139
+ ptyProcess.write(delayedCmd);
140
+ setTimeout(() => {
141
+ ptyProcess.write('\r');
142
+ }, 100);
134
143
  }
135
144
  }, delayedCmdDelay);
136
145
  }