@oh-my-pi/pi-coding-agent 12.12.2 → 12.12.3

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": "@oh-my-pi/pi-coding-agent",
3
- "version": "12.12.2",
3
+ "version": "12.12.3",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "bin": {
@@ -84,12 +84,12 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@mozilla/readability": "0.6.0",
87
- "@oh-my-pi/omp-stats": "12.12.2",
88
- "@oh-my-pi/pi-agent-core": "12.12.2",
89
- "@oh-my-pi/pi-ai": "12.12.2",
90
- "@oh-my-pi/pi-natives": "12.12.2",
91
- "@oh-my-pi/pi-tui": "12.12.2",
92
- "@oh-my-pi/pi-utils": "12.12.2",
87
+ "@oh-my-pi/omp-stats": "12.12.3",
88
+ "@oh-my-pi/pi-agent-core": "12.12.3",
89
+ "@oh-my-pi/pi-ai": "12.12.3",
90
+ "@oh-my-pi/pi-natives": "12.12.3",
91
+ "@oh-my-pi/pi-tui": "12.12.3",
92
+ "@oh-my-pi/pi-utils": "12.12.3",
93
93
  "@sinclair/typebox": "^0.34.48",
94
94
  "@xterm/headless": "^6.0.0",
95
95
  "ajv": "^8.18.0",
@@ -3554,7 +3554,7 @@ Be thorough - include exact file paths, function names, error messages, and tech
3554
3554
 
3555
3555
  #isRetryableErrorMessage(errorMessage: string): boolean {
3556
3556
  // Match: overloaded_error, rate limit, usage limit, 429, 500, 502, 503, 504, service unavailable, connection error, fetch failed, retry delay exceeded
3557
- return /overloaded|rate.?limit|usage.?limit|too many requests|429|500|502|503|504|service.?unavailable|server error|internal error|connection.?error|fetch failed|retry delay/i.test(
3557
+ return /overloaded|rate.?limit|usage.?limit|too many requests|429|500|502|503|504|service.?unavailable|server error|internal error|connection.?error|unable to connect|fetch failed|retry delay/i.test(
3558
3558
  errorMessage,
3559
3559
  );
3560
3560
  }