claude-overnight 1.11.12 → 1.11.13

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/swarm.js +0 -6
  2. package/package.json +1 -1
package/dist/swarm.js CHANGED
@@ -211,12 +211,6 @@ export class Swarm {
211
211
  this.rateLimitResetsAt = undefined;
212
212
  consecutiveWaits++;
213
213
  }
214
- // Soft delay: high utilization, pace requests
215
- if (this.rateLimitUtilization > 0.75) {
216
- const delay = Math.floor((this.rateLimitUtilization - 0.75) * 60000);
217
- if (delay > 0)
218
- await sleep(delay);
219
- }
220
214
  }
221
215
  // ── Agent execution ──
222
216
  async runAgent(task) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-overnight",
3
- "version": "1.11.12",
3
+ "version": "1.11.13",
4
4
  "description": "Run 10, 100, or 1000 Claude agents overnight. Parallel autonomous AI coding with thinking waves, iterative quality steering, crash recovery, and rate limit handling. Built on the Claude Agent SDK.",
5
5
  "type": "module",
6
6
  "bin": {