crawd 0.9.3 → 0.9.4

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": "crawd",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "description": "CLI for crawd.bot - AI agent livestreaming platform",
5
5
  "type": "module",
6
6
  "types": "./dist/types.d.ts",
@@ -982,12 +982,13 @@ export class Coordinator {
982
982
  await nudgeOp
983
983
  } catch {}
984
984
 
985
- if (noReply) {
986
- this.logger.log('[Coordinator] Agent sent NO_REPLY during plan nudge, going to sleep')
985
+ if (noReply && !this.hasPendingPlanSteps()) {
986
+ this.logger.log('[Coordinator] Agent sent NO_REPLY with no pending steps, going to sleep')
987
987
  this.goSleep()
988
988
  return
989
989
  }
990
990
 
991
+ // Keep nudging if plan has pending steps, even after NO_REPLY
991
992
  this.checkPlanProgress()
992
993
  }
993
994