@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.
package/package.json
CHANGED
|
@@ -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;
|