@adhdev/daemon-core 0.9.21 → 0.9.22

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/session-host-core",
3
- "version": "0.9.21",
3
+ "version": "0.9.22",
4
4
  "description": "ADHDev local session host core \u2014 session registry, protocol, buffers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.21",
3
+ "version": "0.9.22",
4
4
  "description": "ADHDev daemon core \u2014 CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1171,11 +1171,7 @@ export class ProviderCliAdapter implements CliAdapter {
1171
1171
  const screenText = this.terminalScreen.getText() || '';
1172
1172
  const effectiveScreenText = screenText || this.accumulatedBuffer;
1173
1173
  const noActiveTurn = !this.currentTurnScope;
1174
- const looksIdleChrome = /(^|\n)\s*[❯›>]\s*(?:\n|$)/m.test(effectiveScreenText)
1175
- || (/accept edits on/i.test(effectiveScreenText)
1176
- && (/Update available!/i.test(screenText)
1177
- || /\/effort/i.test(screenText)
1178
- || /^.*➜\s+\S+/m.test(effectiveScreenText)));
1174
+ const looksIdleChrome = /(^|\n)\s*[❯›>]\s*(?:\n|$)/m.test(effectiveScreenText);
1179
1175
  const parsedShowsLiveAssistantProgress = parsedStatus === 'generating'
1180
1176
  && !!lastParsedAssistant
1181
1177
  && parsedMessages.length > this.committedMessages.length;