drizzy-agent 0.4.0 → 0.4.2
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/README.md +3 -5
- package/dist/cli/index.js +14 -12
- package/dist/index.js +4 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# DrizzyAgent
|
|
2
2
|
|
|
3
|
-
**DrizzyAgent** is an AI agent harness that extends
|
|
4
|
-
|
|
5
|
-
> If you have a stale cached plugin install, clear it with: `rm -rf ~/.cache/opencode/node_modules/drizzy-agent`
|
|
3
|
+
**DrizzyAgent** is an AI agent harness that extends OpenCode (oh-my-opencode fork) with multi-agent orchestration. It provides a powerful system for coding tasks with specialized agents for different types of work.
|
|
6
4
|
|
|
7
5
|
Built for those who want the power of multi-model AI agents without the complexity of managing them manually.
|
|
8
6
|
|
|
@@ -98,12 +96,12 @@ Create `.opencode/drizzy-agent.jsonc` or `~/.config/opencode/drizzy-agent.jsonc`
|
|
|
98
96
|
{
|
|
99
97
|
"agents": {
|
|
100
98
|
"coder": {
|
|
101
|
-
"model": "claude-opus-4"
|
|
99
|
+
"model": "anthropic/claude-opus-4-6"
|
|
102
100
|
}
|
|
103
101
|
},
|
|
104
102
|
"categories": {
|
|
105
103
|
"visual-engineering": {
|
|
106
|
-
"model": "claude-opus-4"
|
|
104
|
+
"model": "anthropic/claude-opus-4-6"
|
|
107
105
|
}
|
|
108
106
|
},
|
|
109
107
|
"disabled_hooks": []
|
package/dist/cli/index.js
CHANGED
|
@@ -5490,7 +5490,7 @@ var {
|
|
|
5490
5490
|
// package.json
|
|
5491
5491
|
var package_default = {
|
|
5492
5492
|
name: "drizzy-agent",
|
|
5493
|
-
version: "0.4.
|
|
5493
|
+
version: "0.4.2",
|
|
5494
5494
|
description: "DrizzyAgent - AI agent plugin for OpenCode",
|
|
5495
5495
|
main: "dist/index.js",
|
|
5496
5496
|
types: "dist/index.d.ts",
|
|
@@ -5566,17 +5566,17 @@ var package_default = {
|
|
|
5566
5566
|
typescript: "^5.7.3"
|
|
5567
5567
|
},
|
|
5568
5568
|
optionalDependencies: {
|
|
5569
|
-
"drizzy-agent-darwin-arm64": "0.4.
|
|
5570
|
-
"drizzy-agent-darwin-x64": "0.4.
|
|
5571
|
-
"drizzy-agent-darwin-x64-baseline": "0.4.
|
|
5572
|
-
"drizzy-agent-linux-arm64": "0.4.
|
|
5573
|
-
"drizzy-agent-linux-arm64-musl": "0.4.
|
|
5574
|
-
"drizzy-agent-linux-x64": "0.4.
|
|
5575
|
-
"drizzy-agent-linux-x64-baseline": "0.4.
|
|
5576
|
-
"drizzy-agent-linux-x64-musl": "0.4.
|
|
5577
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.4.
|
|
5578
|
-
"drizzy-agent-windows-x64": "0.4.
|
|
5579
|
-
"drizzy-agent-windows-x64-baseline": "0.4.
|
|
5569
|
+
"drizzy-agent-darwin-arm64": "0.4.2",
|
|
5570
|
+
"drizzy-agent-darwin-x64": "0.4.2",
|
|
5571
|
+
"drizzy-agent-darwin-x64-baseline": "0.4.2",
|
|
5572
|
+
"drizzy-agent-linux-arm64": "0.4.2",
|
|
5573
|
+
"drizzy-agent-linux-arm64-musl": "0.4.2",
|
|
5574
|
+
"drizzy-agent-linux-x64": "0.4.2",
|
|
5575
|
+
"drizzy-agent-linux-x64-baseline": "0.4.2",
|
|
5576
|
+
"drizzy-agent-linux-x64-musl": "0.4.2",
|
|
5577
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.4.2",
|
|
5578
|
+
"drizzy-agent-windows-x64": "0.4.2",
|
|
5579
|
+
"drizzy-agent-windows-x64-baseline": "0.4.2"
|
|
5580
5580
|
},
|
|
5581
5581
|
overrides: {
|
|
5582
5582
|
"@opencode-ai/sdk": "^1.2.24"
|
|
@@ -24476,6 +24476,8 @@ function getAgentConfigKey(agentName) {
|
|
|
24476
24476
|
return reversed;
|
|
24477
24477
|
if (lower === "plan-consultant")
|
|
24478
24478
|
return "planConsultant";
|
|
24479
|
+
if (lower === "plan-reviewer")
|
|
24480
|
+
return "planReviewer";
|
|
24479
24481
|
if (AGENT_DISPLAY_NAMES[lower] !== undefined)
|
|
24480
24482
|
return lower;
|
|
24481
24483
|
return lower;
|
package/dist/index.js
CHANGED
|
@@ -16651,6 +16651,8 @@ function getAgentConfigKey(agentName) {
|
|
|
16651
16651
|
return reversed;
|
|
16652
16652
|
if (lower === "plan-consultant")
|
|
16653
16653
|
return "planConsultant";
|
|
16654
|
+
if (lower === "plan-reviewer")
|
|
16655
|
+
return "planReviewer";
|
|
16654
16656
|
if (AGENT_DISPLAY_NAMES[lower] !== undefined)
|
|
16655
16657
|
return lower;
|
|
16656
16658
|
return lower;
|
|
@@ -74698,11 +74700,11 @@ async function resolveSubagentExecution(args, executorCtx, parentAgent, category
|
|
|
74698
74700
|
Coder-Junior is spawned automatically when you specify a category. Pick the appropriate category for your task domain.`
|
|
74699
74701
|
};
|
|
74700
74702
|
}
|
|
74701
|
-
if (
|
|
74703
|
+
if (parentAgent?.toLowerCase().trim() === "planner" && agentName.toLowerCase() === "planner") {
|
|
74702
74704
|
return {
|
|
74703
74705
|
agentToUse: "",
|
|
74704
74706
|
categoryModel: undefined,
|
|
74705
|
-
error: `You are
|
|
74707
|
+
error: `You are the planner agent. You cannot delegate to another planner agent via task.
|
|
74706
74708
|
|
|
74707
74709
|
Create the work plan directly - that's your job as the planning agent.`
|
|
74708
74710
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzy-agent",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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.4.
|
|
80
|
-
"drizzy-agent-darwin-x64": "0.4.
|
|
81
|
-
"drizzy-agent-darwin-x64-baseline": "0.4.
|
|
82
|
-
"drizzy-agent-linux-arm64": "0.4.
|
|
83
|
-
"drizzy-agent-linux-arm64-musl": "0.4.
|
|
84
|
-
"drizzy-agent-linux-x64": "0.4.
|
|
85
|
-
"drizzy-agent-linux-x64-baseline": "0.4.
|
|
86
|
-
"drizzy-agent-linux-x64-musl": "0.4.
|
|
87
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.4.
|
|
88
|
-
"drizzy-agent-windows-x64": "0.4.
|
|
89
|
-
"drizzy-agent-windows-x64-baseline": "0.4.
|
|
79
|
+
"drizzy-agent-darwin-arm64": "0.4.2",
|
|
80
|
+
"drizzy-agent-darwin-x64": "0.4.2",
|
|
81
|
+
"drizzy-agent-darwin-x64-baseline": "0.4.2",
|
|
82
|
+
"drizzy-agent-linux-arm64": "0.4.2",
|
|
83
|
+
"drizzy-agent-linux-arm64-musl": "0.4.2",
|
|
84
|
+
"drizzy-agent-linux-x64": "0.4.2",
|
|
85
|
+
"drizzy-agent-linux-x64-baseline": "0.4.2",
|
|
86
|
+
"drizzy-agent-linux-x64-musl": "0.4.2",
|
|
87
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.4.2",
|
|
88
|
+
"drizzy-agent-windows-x64": "0.4.2",
|
|
89
|
+
"drizzy-agent-windows-x64-baseline": "0.4.2"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.24"
|