@adhdev/daemon-standalone 0.9.76-rc.31 → 0.9.76-rc.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-standalone",
3
- "version": "0.9.76-rc.31",
3
+ "version": "0.9.76-rc.32",
4
4
  "description": "ADHDev standalone daemon — embedded HTTP/WS server for local dashboard",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -41906,9 +41906,8 @@ ${lastSnapshot}`;
41906
41906
  };
41907
41907
  this.recordTrace("submit_echo_missing", diagnostic);
41908
41908
  if (this.requirePromptEchoBeforeSubmit) {
41909
- const message = `${this.cliName} prompt echo was not observed on the PTY screen before submit`;
41910
- LOG.warn("CLI", `[${this.cliType}] ${message} elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs} screen=${JSON.stringify(diagnostic.screenText).slice(0, 240)}`);
41911
- completion.rejectOnce(new Error(message));
41909
+ LOG.warn("CLI", `[${this.cliType}] prompt echo was not observed before submit; sending guarded submit key anyway elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs} screen=${JSON.stringify(diagnostic.screenText).slice(0, 240)}`);
41910
+ this.submitSendKey(state, completion);
41912
41911
  return;
41913
41912
  }
41914
41913
  LOG.warn("CLI", `[${this.cliType}] prompt echo was not observed before submit; sending submit key anyway elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs}`);