@skj1724/oh-my-opencode 3.19.9 → 3.19.10
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/cli/index.js +1 -1
- package/dist/index.js +9 -0
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -8467,7 +8467,7 @@ var import_picocolors2 = __toESM(require_picocolors(), 1);
|
|
|
8467
8467
|
// package.json
|
|
8468
8468
|
var package_default = {
|
|
8469
8469
|
name: "@skj1724/oh-my-opencode",
|
|
8470
|
-
version: "3.19.
|
|
8470
|
+
version: "3.19.10",
|
|
8471
8471
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
8472
8472
|
main: "dist/index.js",
|
|
8473
8473
|
types: "dist/index.d.ts",
|
package/dist/index.js
CHANGED
|
@@ -24911,6 +24911,15 @@ function classifyProviderError(error) {
|
|
|
24911
24911
|
};
|
|
24912
24912
|
}
|
|
24913
24913
|
if (statusCode === 429) {
|
|
24914
|
+
if (isGenericQuotaMessage(message)) {
|
|
24915
|
+
return {
|
|
24916
|
+
category: "quota",
|
|
24917
|
+
retryable: false,
|
|
24918
|
+
shouldFallback: true,
|
|
24919
|
+
statusCode,
|
|
24920
|
+
reason: `Quota exceeded: ${message.substring(0, 100)}`
|
|
24921
|
+
};
|
|
24922
|
+
}
|
|
24914
24923
|
return {
|
|
24915
24924
|
category: "rate_limit",
|
|
24916
24925
|
retryable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skj1724/oh-my-opencode",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.10",
|
|
4
4
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|