@clwnd/opencode 0.15.4 → 0.15.5

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -254,8 +254,10 @@ var Drone = class _Drone {
254
254
  const s = tone.sigil;
255
255
  if (s) {
256
256
  const state = this.getOrCreate(s);
257
- if (chi === "pulse" && tone.kind === "roost-died") {
257
+ if (chi === "pulse" && (tone.kind === "roost-died" || tone.kind === "roost-evicted" || tone.kind === "roost-idle")) {
258
258
  state.inflightTools = 0;
259
+ state.responseText = "";
260
+ state.suspicious = false;
259
261
  }
260
262
  this.resetSilence(s);
261
263
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clwnd/opencode",
3
- "version": "0.15.4",
3
+ "version": "0.15.5",
4
4
  "description": "clwnd for opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",