@kradle/cli 0.0.14 → 0.0.15

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.
@@ -158,7 +158,9 @@ export class Runner {
158
158
  catch (error) {
159
159
  const errorMessage = error instanceof Error ? error.message : String(error);
160
160
  // Check for rate limiting
161
- if (errorMessage.includes("429") || errorMessage.toLowerCase().includes("rate limit")) {
161
+ if (errorMessage.includes("429") ||
162
+ errorMessage.toLowerCase().includes("rate limit") ||
163
+ errorMessage.toLowerCase().includes("you may need to stop or wait")) {
162
164
  // Re-queue for later
163
165
  this.updateState(index, { status: "queued", error: undefined });
164
166
  this.activeRuns.delete(index);
@@ -401,5 +401,5 @@
401
401
  ]
402
402
  }
403
403
  },
404
- "version": "0.0.14"
404
+ "version": "0.0.15"
405
405
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kradle/cli",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "Kradle's CLI. Manage challenges, evaluations, agents and more!",
5
5
  "keywords": [
6
6
  "cli"