drizzy-agent 0.5.6 → 0.5.8
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/agents/builtin-agents/model-resolution.d.ts +1 -0
- package/dist/cli/index.js +29 -25
- package/dist/features/claude-code-agent-loader/claude-model-mapper.d.ts +1 -4
- package/dist/features/claude-code-agent-loader/types.d.ts +1 -4
- package/dist/index.js +41 -34
- package/dist/shared/agent-model-defaults.d.ts +5 -5
- package/package.json +12 -12
package/dist/cli/index.js
CHANGED
|
@@ -3423,8 +3423,8 @@ var init_agent_model_defaults = __esm(() => {
|
|
|
3423
3423
|
},
|
|
3424
3424
|
gptcoder: {
|
|
3425
3425
|
chain: [
|
|
3426
|
-
{ providers: ["openai", "venice", "opencode"], model: "gpt-5.
|
|
3427
|
-
{ providers: ["github-copilot"], model: "gpt-5.
|
|
3426
|
+
{ providers: ["openai", "venice", "opencode"], model: "gpt-5.3-codex", variant: "medium" },
|
|
3427
|
+
{ providers: ["github-copilot"], model: "gpt-5.3-codex", variant: "medium" }
|
|
3428
3428
|
],
|
|
3429
3429
|
includeInInstall: true,
|
|
3430
3430
|
requiresAnyProvider: ["openai", "github-copilot", "venice", "opencode"]
|
|
@@ -3463,8 +3463,8 @@ var init_agent_model_defaults = __esm(() => {
|
|
|
3463
3463
|
explore: {
|
|
3464
3464
|
chain: [
|
|
3465
3465
|
{ providers: ["github-copilot"], model: "grok-code-fast-1" },
|
|
3466
|
-
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true },
|
|
3467
3466
|
{ providers: ["anthropic", "opencode"], model: "claude-haiku-4-5" },
|
|
3467
|
+
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true },
|
|
3468
3468
|
{ providers: ["opencode"], model: "gpt-5-nano", alwaysAvailable: true }
|
|
3469
3469
|
],
|
|
3470
3470
|
includeInInstall: true,
|
|
@@ -3493,7 +3493,7 @@ var init_agent_model_defaults = __esm(() => {
|
|
|
3493
3493
|
includeInInstall: true
|
|
3494
3494
|
},
|
|
3495
3495
|
"coder-junior": {
|
|
3496
|
-
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.
|
|
3496
|
+
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.3-codex", variant: "medium" }, { providers: GEMINI_PROVIDERS, model: "gemini-3-flash" }],
|
|
3497
3497
|
includeInInstall: false
|
|
3498
3498
|
}
|
|
3499
3499
|
};
|
|
@@ -3553,14 +3553,14 @@ var init_agent_model_defaults = __esm(() => {
|
|
|
3553
3553
|
chain: [
|
|
3554
3554
|
{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" },
|
|
3555
3555
|
{ providers: KIMI_K25_PROVIDERS, model: "kimi-k2.5" },
|
|
3556
|
-
{ providers: OPENAI_NATIVE_PROVIDERS, model: "gpt-5.
|
|
3556
|
+
{ providers: OPENAI_NATIVE_PROVIDERS, model: "gpt-5.3-codex", variant: "medium" },
|
|
3557
3557
|
{ providers: GEMINI_PROVIDERS, model: "gemini-3-flash" },
|
|
3558
3558
|
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true }
|
|
3559
3559
|
],
|
|
3560
3560
|
includeInInstall: true
|
|
3561
3561
|
},
|
|
3562
3562
|
"unspecified-high": {
|
|
3563
|
-
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-opus-4-6", variant: "max" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.
|
|
3563
|
+
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-opus-4-6", variant: "max" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.3-codex", variant: "high" }, { providers: ["zai-coding-plan", "opencode"], model: "glm-5" }, { providers: ["kimi-for-coding"], model: "k2p5" }, { providers: KIMI_K25_PROVIDERS, model: "kimi-k2.5" }],
|
|
3564
3564
|
includeInInstall: true
|
|
3565
3565
|
},
|
|
3566
3566
|
writing: {
|
|
@@ -3605,14 +3605,18 @@ var init_provider_model_id_transform = () => {};
|
|
|
3605
3605
|
|
|
3606
3606
|
// src/cli/fallback-chain-resolution.ts
|
|
3607
3607
|
function resolveModelFromChain(fallbackChain, availability) {
|
|
3608
|
+
let lastResort = null;
|
|
3608
3609
|
for (const entry of fallbackChain) {
|
|
3609
3610
|
if (entry.alwaysAvailable) {
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3611
|
+
if (!lastResort) {
|
|
3612
|
+
const provider = entry.providers[0];
|
|
3613
|
+
const transformedModel = transformModelForProvider(provider, entry.model);
|
|
3614
|
+
lastResort = {
|
|
3615
|
+
model: `${provider}/${transformedModel}`,
|
|
3616
|
+
variant: entry.variant
|
|
3617
|
+
};
|
|
3618
|
+
}
|
|
3619
|
+
continue;
|
|
3616
3620
|
}
|
|
3617
3621
|
for (const provider of entry.providers) {
|
|
3618
3622
|
if (isProviderAvailable(provider, availability)) {
|
|
@@ -3624,7 +3628,7 @@ function resolveModelFromChain(fallbackChain, availability) {
|
|
|
3624
3628
|
}
|
|
3625
3629
|
}
|
|
3626
3630
|
}
|
|
3627
|
-
return
|
|
3631
|
+
return lastResort;
|
|
3628
3632
|
}
|
|
3629
3633
|
function getCoderFallbackChain() {
|
|
3630
3634
|
return CLI_AGENT_MODEL_REQUIREMENTS.coder.fallbackChain;
|
|
@@ -29254,7 +29258,7 @@ function createMcpOAuthCommand() {
|
|
|
29254
29258
|
// package.json
|
|
29255
29259
|
var package_default = {
|
|
29256
29260
|
name: "drizzy-agent",
|
|
29257
|
-
version: "0.5.
|
|
29261
|
+
version: "0.5.8",
|
|
29258
29262
|
description: "DrizzyAgent - AI agent plugin for OpenCode",
|
|
29259
29263
|
main: "dist/index.js",
|
|
29260
29264
|
types: "dist/index.d.ts",
|
|
@@ -29330,17 +29334,17 @@ var package_default = {
|
|
|
29330
29334
|
typescript: "^5.7.3"
|
|
29331
29335
|
},
|
|
29332
29336
|
optionalDependencies: {
|
|
29333
|
-
"drizzy-agent-darwin-arm64": "0.5.
|
|
29334
|
-
"drizzy-agent-darwin-x64": "0.5.
|
|
29335
|
-
"drizzy-agent-darwin-x64-baseline": "0.5.
|
|
29336
|
-
"drizzy-agent-linux-arm64": "0.5.
|
|
29337
|
-
"drizzy-agent-linux-arm64-musl": "0.5.
|
|
29338
|
-
"drizzy-agent-linux-x64": "0.5.
|
|
29339
|
-
"drizzy-agent-linux-x64-baseline": "0.5.
|
|
29340
|
-
"drizzy-agent-linux-x64-musl": "0.5.
|
|
29341
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.5.
|
|
29342
|
-
"drizzy-agent-windows-x64": "0.5.
|
|
29343
|
-
"drizzy-agent-windows-x64-baseline": "0.5.
|
|
29337
|
+
"drizzy-agent-darwin-arm64": "0.5.8",
|
|
29338
|
+
"drizzy-agent-darwin-x64": "0.5.8",
|
|
29339
|
+
"drizzy-agent-darwin-x64-baseline": "0.5.8",
|
|
29340
|
+
"drizzy-agent-linux-arm64": "0.5.8",
|
|
29341
|
+
"drizzy-agent-linux-arm64-musl": "0.5.8",
|
|
29342
|
+
"drizzy-agent-linux-x64": "0.5.8",
|
|
29343
|
+
"drizzy-agent-linux-x64-baseline": "0.5.8",
|
|
29344
|
+
"drizzy-agent-linux-x64-musl": "0.5.8",
|
|
29345
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.5.8",
|
|
29346
|
+
"drizzy-agent-windows-x64": "0.5.8",
|
|
29347
|
+
"drizzy-agent-windows-x64-baseline": "0.5.8"
|
|
29344
29348
|
},
|
|
29345
29349
|
overrides: {
|
|
29346
29350
|
"@opencode-ai/sdk": "^1.2.24"
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
2
|
export type AgentScope = "user" | "project";
|
|
3
3
|
export type ClaudeCodeAgentConfig = Omit<AgentConfig, "model"> & {
|
|
4
|
-
model?: string
|
|
5
|
-
providerID: string;
|
|
6
|
-
modelID: string;
|
|
7
|
-
};
|
|
4
|
+
model?: string;
|
|
8
5
|
};
|
|
9
6
|
export interface AgentFrontmatter {
|
|
10
7
|
name?: string;
|
package/dist/index.js
CHANGED
|
@@ -16691,8 +16691,8 @@ var AGENT_MODEL_DEFAULTS = {
|
|
|
16691
16691
|
},
|
|
16692
16692
|
gptcoder: {
|
|
16693
16693
|
chain: [
|
|
16694
|
-
{ providers: ["openai", "venice", "opencode"], model: "gpt-5.
|
|
16695
|
-
{ providers: ["github-copilot"], model: "gpt-5.
|
|
16694
|
+
{ providers: ["openai", "venice", "opencode"], model: "gpt-5.3-codex", variant: "medium" },
|
|
16695
|
+
{ providers: ["github-copilot"], model: "gpt-5.3-codex", variant: "medium" }
|
|
16696
16696
|
],
|
|
16697
16697
|
includeInInstall: true,
|
|
16698
16698
|
requiresAnyProvider: ["openai", "github-copilot", "venice", "opencode"]
|
|
@@ -16731,8 +16731,8 @@ var AGENT_MODEL_DEFAULTS = {
|
|
|
16731
16731
|
explore: {
|
|
16732
16732
|
chain: [
|
|
16733
16733
|
{ providers: ["github-copilot"], model: "grok-code-fast-1" },
|
|
16734
|
-
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true },
|
|
16735
16734
|
{ providers: ["anthropic", "opencode"], model: "claude-haiku-4-5" },
|
|
16735
|
+
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true },
|
|
16736
16736
|
{ providers: ["opencode"], model: "gpt-5-nano", alwaysAvailable: true }
|
|
16737
16737
|
],
|
|
16738
16738
|
includeInInstall: true,
|
|
@@ -16761,7 +16761,7 @@ var AGENT_MODEL_DEFAULTS = {
|
|
|
16761
16761
|
includeInInstall: true
|
|
16762
16762
|
},
|
|
16763
16763
|
"coder-junior": {
|
|
16764
|
-
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.
|
|
16764
|
+
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.3-codex", variant: "medium" }, { providers: GEMINI_PROVIDERS, model: "gemini-3-flash" }],
|
|
16765
16765
|
includeInInstall: false
|
|
16766
16766
|
}
|
|
16767
16767
|
};
|
|
@@ -16821,14 +16821,14 @@ var CATEGORY_MODEL_DEFAULTS = {
|
|
|
16821
16821
|
chain: [
|
|
16822
16822
|
{ providers: CLAUDE_PROVIDERS, model: "claude-sonnet-4-6" },
|
|
16823
16823
|
{ providers: KIMI_K25_PROVIDERS, model: "kimi-k2.5" },
|
|
16824
|
-
{ providers: OPENAI_NATIVE_PROVIDERS, model: "gpt-5.
|
|
16824
|
+
{ providers: OPENAI_NATIVE_PROVIDERS, model: "gpt-5.3-codex", variant: "medium" },
|
|
16825
16825
|
{ providers: GEMINI_PROVIDERS, model: "gemini-3-flash" },
|
|
16826
16826
|
{ providers: ["opencode"], model: "minimax-m2.5-free", alwaysAvailable: true }
|
|
16827
16827
|
],
|
|
16828
16828
|
includeInInstall: true
|
|
16829
16829
|
},
|
|
16830
16830
|
"unspecified-high": {
|
|
16831
|
-
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-opus-4-6", variant: "max" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.
|
|
16831
|
+
chain: [{ providers: CLAUDE_PROVIDERS, model: "claude-opus-4-6", variant: "max" }, { providers: OPENAI_PROVIDERS, model: "gpt-5.3-codex", variant: "high" }, { providers: ["zai-coding-plan", "opencode"], model: "glm-5" }, { providers: ["kimi-for-coding"], model: "k2p5" }, { providers: KIMI_K25_PROVIDERS, model: "kimi-k2.5" }],
|
|
16832
16832
|
includeInInstall: true
|
|
16833
16833
|
},
|
|
16834
16834
|
writing: {
|
|
@@ -19036,23 +19036,6 @@ import { existsSync as existsSync16, readdirSync as readdirSync5, readFileSync a
|
|
|
19036
19036
|
import { basename as basename2, join as join20 } from "path";
|
|
19037
19037
|
init_logger();
|
|
19038
19038
|
|
|
19039
|
-
// src/shared/model-format-normalizer.ts
|
|
19040
|
-
function normalizeModelFormat(model) {
|
|
19041
|
-
if (!model) {
|
|
19042
|
-
return;
|
|
19043
|
-
}
|
|
19044
|
-
if (typeof model === "object" && "providerID" in model && "modelID" in model) {
|
|
19045
|
-
return { providerID: model.providerID, modelID: model.modelID };
|
|
19046
|
-
}
|
|
19047
|
-
if (typeof model === "string") {
|
|
19048
|
-
const parts = model.split("/");
|
|
19049
|
-
if (parts.length >= 2) {
|
|
19050
|
-
return { providerID: parts[0], modelID: parts.slice(1).join("/") };
|
|
19051
|
-
}
|
|
19052
|
-
}
|
|
19053
|
-
return;
|
|
19054
|
-
}
|
|
19055
|
-
|
|
19056
19039
|
// src/features/claude-code-agent-loader/claude-model-mapper.ts
|
|
19057
19040
|
var ANTHROPIC_PREFIX = "anthropic/";
|
|
19058
19041
|
var CLAUDE_CODE_ALIAS_MAP = new Map([
|
|
@@ -19080,8 +19063,7 @@ function mapClaudeModelString(model) {
|
|
|
19080
19063
|
return;
|
|
19081
19064
|
}
|
|
19082
19065
|
function mapClaudeModelToOpenCode(model) {
|
|
19083
|
-
|
|
19084
|
-
return mappedModel ? normalizeModelFormat(mappedModel) : undefined;
|
|
19066
|
+
return mapClaudeModelString(model);
|
|
19085
19067
|
}
|
|
19086
19068
|
|
|
19087
19069
|
// src/features/claude-code-plugin-loader/agent-loader.ts
|
|
@@ -19358,14 +19340,18 @@ function isProviderAvailable(provider, availability) {
|
|
|
19358
19340
|
}
|
|
19359
19341
|
// src/cli/fallback-chain-resolution.ts
|
|
19360
19342
|
function resolveModelFromChain(fallbackChain, availability) {
|
|
19343
|
+
let lastResort = null;
|
|
19361
19344
|
for (const entry of fallbackChain) {
|
|
19362
19345
|
if (entry.alwaysAvailable) {
|
|
19363
|
-
|
|
19364
|
-
|
|
19365
|
-
|
|
19366
|
-
|
|
19367
|
-
|
|
19368
|
-
|
|
19346
|
+
if (!lastResort) {
|
|
19347
|
+
const provider = entry.providers[0];
|
|
19348
|
+
const transformedModel = transformModelForProvider(provider, entry.model);
|
|
19349
|
+
lastResort = {
|
|
19350
|
+
model: `${provider}/${transformedModel}`,
|
|
19351
|
+
variant: entry.variant
|
|
19352
|
+
};
|
|
19353
|
+
}
|
|
19354
|
+
continue;
|
|
19369
19355
|
}
|
|
19370
19356
|
for (const provider of entry.providers) {
|
|
19371
19357
|
if (isProviderAvailable(provider, availability)) {
|
|
@@ -19377,7 +19363,7 @@ function resolveModelFromChain(fallbackChain, availability) {
|
|
|
19377
19363
|
}
|
|
19378
19364
|
}
|
|
19379
19365
|
}
|
|
19380
|
-
return
|
|
19366
|
+
return lastResort;
|
|
19381
19367
|
}
|
|
19382
19368
|
function getCoderFallbackChain() {
|
|
19383
19369
|
return CLI_AGENT_MODEL_REQUIREMENTS.coder.fallbackChain;
|
|
@@ -74390,6 +74376,23 @@ Available categories: ${categoryNames.join(", ")}`
|
|
|
74390
74376
|
fallbackChain: configuredFallbackChain ?? requirement?.fallbackChain
|
|
74391
74377
|
};
|
|
74392
74378
|
}
|
|
74379
|
+
// src/shared/model-format-normalizer.ts
|
|
74380
|
+
function normalizeModelFormat(model) {
|
|
74381
|
+
if (!model) {
|
|
74382
|
+
return;
|
|
74383
|
+
}
|
|
74384
|
+
if (typeof model === "object" && "providerID" in model && "modelID" in model) {
|
|
74385
|
+
return { providerID: model.providerID, modelID: model.modelID };
|
|
74386
|
+
}
|
|
74387
|
+
if (typeof model === "string") {
|
|
74388
|
+
const parts = model.split("/");
|
|
74389
|
+
if (parts.length >= 2) {
|
|
74390
|
+
return { providerID: parts[0], modelID: parts.slice(1).join("/") };
|
|
74391
|
+
}
|
|
74392
|
+
}
|
|
74393
|
+
return;
|
|
74394
|
+
}
|
|
74395
|
+
|
|
74393
74396
|
// src/tools/delegate-task/subagent-resolver.ts
|
|
74394
74397
|
init_logger();
|
|
74395
74398
|
async function resolveSubagentExecution(args, executorCtx, parentAgent, categoryExamples) {
|
|
@@ -91993,9 +91996,9 @@ function applyEnvironmentContext(config4, directory, options = {}) {
|
|
|
91993
91996
|
|
|
91994
91997
|
// src/agents/builtin-agents/model-resolution.ts
|
|
91995
91998
|
function applyModelResolution(input) {
|
|
91996
|
-
const { uiSelectedModel, userModel, requirement, availableModels, systemDefaultModel } = input;
|
|
91999
|
+
const { uiSelectedModel, userModel, computedDefaultModel, requirement, availableModels, systemDefaultModel } = input;
|
|
91997
92000
|
return resolveModelPipeline({
|
|
91998
|
-
intent: { uiSelectedModel, userModel },
|
|
92001
|
+
intent: { uiSelectedModel, userModel, categoryDefaultModel: computedDefaultModel },
|
|
91999
92002
|
constraints: { availableModels },
|
|
92000
92003
|
policy: { fallbackChain: requirement?.fallbackChain, systemDefaultModel }
|
|
92001
92004
|
});
|
|
@@ -92047,6 +92050,7 @@ function collectPendingBuiltinAgents(input) {
|
|
|
92047
92050
|
continue;
|
|
92048
92051
|
const agentConfigKey = getAgentConfigKey(agentName);
|
|
92049
92052
|
const override = getExplicitAgentOverride(agentOverrides, agentConfigKey);
|
|
92053
|
+
const effectiveOverride = getEffectiveAgentOverride(agentOverrides, agentConfigKey);
|
|
92050
92054
|
const requirement = AGENT_MODEL_REQUIREMENTS[agentConfigKey];
|
|
92051
92055
|
if (requirement?.requiresModel && availableModels) {
|
|
92052
92056
|
if (!isModelAvailable(requirement.requiresModel, availableModels)) {
|
|
@@ -92057,6 +92061,7 @@ function collectPendingBuiltinAgents(input) {
|
|
|
92057
92061
|
let resolution = applyModelResolution({
|
|
92058
92062
|
uiSelectedModel: isPrimaryAgent && !override?.model ? uiSelectedModel : undefined,
|
|
92059
92063
|
userModel: override?.model,
|
|
92064
|
+
computedDefaultModel: effectiveOverride?.model,
|
|
92060
92065
|
requirement,
|
|
92061
92066
|
availableModels,
|
|
92062
92067
|
systemDefaultModel
|
|
@@ -92156,6 +92161,7 @@ function maybeCreateGptcoderConfig(input) {
|
|
|
92156
92161
|
if (disabledAgents.includes("gptcoder"))
|
|
92157
92162
|
return;
|
|
92158
92163
|
const gptcoderOverride = getExplicitAgentOverride(agentOverrides, "gptcoder");
|
|
92164
|
+
const effectiveGptcoderOverride = getEffectiveAgentOverride(agentOverrides, "gptcoder");
|
|
92159
92165
|
const gptcoderRequirement = AGENT_MODEL_REQUIREMENTS["gptcoder"];
|
|
92160
92166
|
const hasGptcoderExplicitConfig = hasExplicitAgentOverride(agentOverrides, "gptcoder");
|
|
92161
92167
|
const hasRequiredProvider = !gptcoderRequirement?.requiresProvider || hasGptcoderExplicitConfig || isFirstRunNoCache || isAnyProviderConnected(gptcoderRequirement.requiresProvider, availableModels);
|
|
@@ -92163,6 +92169,7 @@ function maybeCreateGptcoderConfig(input) {
|
|
|
92163
92169
|
return;
|
|
92164
92170
|
let gptcoderResolution = applyModelResolution({
|
|
92165
92171
|
userModel: gptcoderOverride?.model,
|
|
92172
|
+
computedDefaultModel: effectiveGptcoderOverride?.model,
|
|
92166
92173
|
requirement: gptcoderRequirement,
|
|
92167
92174
|
availableModels,
|
|
92168
92175
|
systemDefaultModel
|
|
@@ -44,16 +44,16 @@
|
|
|
44
44
|
* | Agent | Unified Chain |
|
|
45
45
|
* |-------|---------------|
|
|
46
46
|
* | **coder** | claude-opus-4-6 → k2p5 → kimi-k2.5 → gpt-5.4 → glm-5 → big-pickle |
|
|
47
|
-
* | **gptcoder** | gpt-5.
|
|
47
|
+
* | **gptcoder** | gpt-5.3-codex (openai/venice/opencode) → gpt-5.3-codex (github-copilot) |
|
|
48
48
|
* | **planner** | claude-opus-4-6 → k2p5 → gpt-5.4 → gemini-3.1-pro |
|
|
49
49
|
* | **oracle** | gpt-5.4 → kimi-k2.5 → gemini-3.1-pro → claude-opus-4-6 → big-pickle (free) |
|
|
50
50
|
* | **librarian** | gemini-3-flash → glm-4.7 → claude-sonnet-4-5 → minimax → big-pickle → glm-4.7-free |
|
|
51
|
-
* | **explore** |
|
|
51
|
+
* | **explore** | grok-code-fast-1 (copilot) → claude-haiku-4-5 → minimax-m2.5-free (free) → gpt-5-nano (free) |
|
|
52
52
|
* | **multimodal-looker** | gpt-5.4 → k2p5 → gemini-3-flash → glm-4.6v → gpt-5-nano |
|
|
53
53
|
* | **plan-consultant** | claude-opus-4-6 → k2p5 → gpt-5.4 → gemini-3.1-pro |
|
|
54
54
|
* | **plan-reviewer** | gpt-5.4 → kimi-k2.5 → claude-opus-4-6 → gemini-3.1-pro → big-pickle (free) |
|
|
55
55
|
* | **atlas** | k2p5 → claude-sonnet-4-6 → claude-sonnet-4-5 → gpt-5.4 → gemini-3.1-pro |
|
|
56
|
-
* | **coder-junior** | claude-sonnet-4-6 → gpt-5.
|
|
56
|
+
* | **coder-junior** | claude-sonnet-4-6 → gpt-5.3-codex → gemini-3-flash (runtime only) |
|
|
57
57
|
*
|
|
58
58
|
* ## Category Model Chains
|
|
59
59
|
*
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
* | **deep** | gpt-5.4 → claude-opus-4-6 → gemini-3.1-pro → kimi-k2.5 → big-pickle (free) |
|
|
65
65
|
* | **artistry** | gemini-3.1-pro → claude-opus-4-6 → gpt-5.4 → kimi-k2.5 → minimax-m2.5-free (free) |
|
|
66
66
|
* | **quick** | claude-haiku-4-5 → gemini-3-flash → gpt-5.1-codex-mini → gpt-5-nano (free) |
|
|
67
|
-
* | **unspecified-low** | claude-sonnet-4-6 → kimi-k2.5 → gpt-5.
|
|
68
|
-
* | **unspecified-high** | claude-opus-4-6 → gpt-5.
|
|
67
|
+
* | **unspecified-low** | claude-sonnet-4-6 → kimi-k2.5 → gpt-5.3-codex → gemini-3-flash → minimax-m2.5-free (free) |
|
|
68
|
+
* | **unspecified-high** | claude-opus-4-6 → gpt-5.3-codex → glm-5 → k2p5 → kimi-k2.5 |
|
|
69
69
|
* | **writing** | gemini-3-flash → k2p5 → claude-sonnet-4-6 |
|
|
70
70
|
*
|
|
71
71
|
* ## Special Cases
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzy-agent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"description": "DrizzyAgent - AI agent plugin for OpenCode",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -76,17 +76,17 @@
|
|
|
76
76
|
"typescript": "^5.7.3"
|
|
77
77
|
},
|
|
78
78
|
"optionalDependencies": {
|
|
79
|
-
"drizzy-agent-darwin-arm64": "0.5.
|
|
80
|
-
"drizzy-agent-darwin-x64": "0.5.
|
|
81
|
-
"drizzy-agent-darwin-x64-baseline": "0.5.
|
|
82
|
-
"drizzy-agent-linux-arm64": "0.5.
|
|
83
|
-
"drizzy-agent-linux-arm64-musl": "0.5.
|
|
84
|
-
"drizzy-agent-linux-x64": "0.5.
|
|
85
|
-
"drizzy-agent-linux-x64-baseline": "0.5.
|
|
86
|
-
"drizzy-agent-linux-x64-musl": "0.5.
|
|
87
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.5.
|
|
88
|
-
"drizzy-agent-windows-x64": "0.5.
|
|
89
|
-
"drizzy-agent-windows-x64-baseline": "0.5.
|
|
79
|
+
"drizzy-agent-darwin-arm64": "0.5.8",
|
|
80
|
+
"drizzy-agent-darwin-x64": "0.5.8",
|
|
81
|
+
"drizzy-agent-darwin-x64-baseline": "0.5.8",
|
|
82
|
+
"drizzy-agent-linux-arm64": "0.5.8",
|
|
83
|
+
"drizzy-agent-linux-arm64-musl": "0.5.8",
|
|
84
|
+
"drizzy-agent-linux-x64": "0.5.8",
|
|
85
|
+
"drizzy-agent-linux-x64-baseline": "0.5.8",
|
|
86
|
+
"drizzy-agent-linux-x64-musl": "0.5.8",
|
|
87
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.5.8",
|
|
88
|
+
"drizzy-agent-windows-x64": "0.5.8",
|
|
89
|
+
"drizzy-agent-windows-x64-baseline": "0.5.8"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.24"
|