@beastmode-develeap/beastmode 0.1.7 → 0.1.9

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.js CHANGED
@@ -4401,7 +4401,9 @@ Respond concisely using the board data above. Do not try to fetch data externall
4401
4401
  });
4402
4402
  child.stderr?.on("data", (data) => {
4403
4403
  const text = data.toString("utf-8").trim();
4404
- if (text) sendToClient(session, { type: "error", message: text });
4404
+ if (!text) return;
4405
+ if (text.includes("configuration file not found") || text.includes("backup file exists") || text.includes("manually restore it by running") || text.includes("Not logged in") || text.includes("CLAUDE_CODE_")) return;
4406
+ sendToClient(session, { type: "error", message: text });
4405
4407
  });
4406
4408
  child.on("exit", () => {
4407
4409
  session.process = null;