@phenx-inc/ctlsurf 0.3.5 → 0.3.6

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/out/main/index.js CHANGED
@@ -9949,12 +9949,6 @@ class WorkerWsClient {
9949
9949
  this.send({ type: "terminal_resize", cols, rows });
9950
9950
  }
9951
9951
  sendChatLog(entry) {
9952
- log$3("[worker-ws] chat_log DEBUG", {
9953
- type: entry.type,
9954
- chars: entry.content.length,
9955
- lines: entry.content.split("\n").length,
9956
- preview: entry.content.slice(0, 500)
9957
- });
9958
9952
  this.send({ type: "chat_log", entry });
9959
9953
  }
9960
9954
  doConnect() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phenx-inc/ctlsurf",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Agent-agnostic terminal and desktop app for ctlsurf — run Claude Code, Codex, or any coding agent with live session logging and remote control",
5
5
  "main": "out/main/index.js",
6
6
  "bin": {
@@ -135,12 +135,6 @@ export class WorkerWsClient {
135
135
  }
136
136
 
137
137
  sendChatLog(entry: { type: string; content: string; ts?: string }): void {
138
- log('[worker-ws] chat_log DEBUG', {
139
- type: entry.type,
140
- chars: entry.content.length,
141
- lines: entry.content.split('\n').length,
142
- preview: entry.content.slice(0, 500),
143
- })
144
138
  this.send({ type: 'chat_log', entry })
145
139
  }
146
140