oh-my-opencode 3.1.0 → 3.1.1
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 +17 -9
- package/dist/cli/index.test.d.ts +1 -0
- package/dist/config/schema.d.ts +543 -3
- package/dist/index.js +467 -155
- package/dist/shared/model-resolver.d.ts +4 -4
- package/dist/tools/delegate-task/constants.d.ts +18 -0
- package/dist/tools/delegate-task/tools.d.ts +3 -2
- package/package.json +8 -8
package/dist/cli/index.js
CHANGED
|
@@ -8075,7 +8075,7 @@ var import_picocolors2 = __toESM(require_picocolors(), 1);
|
|
|
8075
8075
|
// package.json
|
|
8076
8076
|
var package_default = {
|
|
8077
8077
|
name: "oh-my-opencode",
|
|
8078
|
-
version: "3.1.
|
|
8078
|
+
version: "3.1.1",
|
|
8079
8079
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
8080
8080
|
main: "dist/index.js",
|
|
8081
8081
|
types: "dist/index.d.ts",
|
|
@@ -8148,13 +8148,13 @@ var package_default = {
|
|
|
8148
8148
|
typescript: "^5.7.3"
|
|
8149
8149
|
},
|
|
8150
8150
|
optionalDependencies: {
|
|
8151
|
-
"oh-my-opencode-darwin-arm64": "3.1.
|
|
8152
|
-
"oh-my-opencode-darwin-x64": "3.1.
|
|
8153
|
-
"oh-my-opencode-linux-arm64": "3.1.
|
|
8154
|
-
"oh-my-opencode-linux-arm64-musl": "3.1.
|
|
8155
|
-
"oh-my-opencode-linux-x64": "3.1.
|
|
8156
|
-
"oh-my-opencode-linux-x64-musl": "3.1.
|
|
8157
|
-
"oh-my-opencode-windows-x64": "3.1.
|
|
8151
|
+
"oh-my-opencode-darwin-arm64": "3.1.1",
|
|
8152
|
+
"oh-my-opencode-darwin-x64": "3.1.1",
|
|
8153
|
+
"oh-my-opencode-linux-arm64": "3.1.1",
|
|
8154
|
+
"oh-my-opencode-linux-arm64-musl": "3.1.1",
|
|
8155
|
+
"oh-my-opencode-linux-x64": "3.1.1",
|
|
8156
|
+
"oh-my-opencode-linux-x64-musl": "3.1.1",
|
|
8157
|
+
"oh-my-opencode-windows-x64": "3.1.1"
|
|
8158
8158
|
},
|
|
8159
8159
|
trustedDependencies: [
|
|
8160
8160
|
"@ast-grep/cli",
|
|
@@ -23347,7 +23347,15 @@ var AgentOverrideConfigSchema = exports_external.object({
|
|
|
23347
23347
|
description: exports_external.string().optional(),
|
|
23348
23348
|
mode: exports_external.enum(["subagent", "primary", "all"]).optional(),
|
|
23349
23349
|
color: exports_external.string().regex(/^#[0-9A-Fa-f]{6}$/).optional(),
|
|
23350
|
-
permission: AgentPermissionSchema.optional()
|
|
23350
|
+
permission: AgentPermissionSchema.optional(),
|
|
23351
|
+
maxTokens: exports_external.number().optional(),
|
|
23352
|
+
thinking: exports_external.object({
|
|
23353
|
+
type: exports_external.enum(["enabled", "disabled"]),
|
|
23354
|
+
budgetTokens: exports_external.number().optional()
|
|
23355
|
+
}).optional(),
|
|
23356
|
+
reasoningEffort: exports_external.enum(["low", "medium", "high", "xhigh"]).optional(),
|
|
23357
|
+
textVerbosity: exports_external.enum(["low", "medium", "high"]).optional(),
|
|
23358
|
+
providerOptions: exports_external.record(exports_external.string(), exports_external.unknown()).optional()
|
|
23351
23359
|
});
|
|
23352
23360
|
var AgentOverridesSchema = exports_external.object({
|
|
23353
23361
|
build: AgentOverrideConfigSchema.optional(),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|