@adhdev/daemon-core 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/dist/index.mjs CHANGED
@@ -3270,9 +3270,8 @@ ${lastSnapshot}`;
3270
3270
  };
3271
3271
  this.recordTrace("submit_echo_missing", diagnostic);
3272
3272
  if (this.requirePromptEchoBeforeSubmit) {
3273
- const message = `${this.cliName} prompt echo was not observed on the PTY screen before submit`;
3274
- LOG.warn("CLI", `[${this.cliType}] ${message} elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs} screen=${JSON.stringify(diagnostic.screenText).slice(0, 240)}`);
3275
- completion.rejectOnce(new Error(message));
3273
+ 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)}`);
3274
+ this.submitSendKey(state, completion);
3276
3275
  return;
3277
3276
  }
3278
3277
  LOG.warn("CLI", `[${this.cliType}] prompt echo was not observed before submit; sending submit key anyway elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs}`);