drizzy-agent 0.4.0 → 0.4.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/README.md +3 -5
- package/dist/cli/index.js +12 -12
- package/dist/index.js +2 -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.1",
|
|
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.1",
|
|
5570
|
+
"drizzy-agent-darwin-x64": "0.4.1",
|
|
5571
|
+
"drizzy-agent-darwin-x64-baseline": "0.4.1",
|
|
5572
|
+
"drizzy-agent-linux-arm64": "0.4.1",
|
|
5573
|
+
"drizzy-agent-linux-arm64-musl": "0.4.1",
|
|
5574
|
+
"drizzy-agent-linux-x64": "0.4.1",
|
|
5575
|
+
"drizzy-agent-linux-x64-baseline": "0.4.1",
|
|
5576
|
+
"drizzy-agent-linux-x64-musl": "0.4.1",
|
|
5577
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.4.1",
|
|
5578
|
+
"drizzy-agent-windows-x64": "0.4.1",
|
|
5579
|
+
"drizzy-agent-windows-x64-baseline": "0.4.1"
|
|
5580
5580
|
},
|
|
5581
5581
|
overrides: {
|
|
5582
5582
|
"@opencode-ai/sdk": "^1.2.24"
|
package/dist/index.js
CHANGED
|
@@ -74698,11 +74698,11 @@ async function resolveSubagentExecution(args, executorCtx, parentAgent, category
|
|
|
74698
74698
|
Coder-Junior is spawned automatically when you specify a category. Pick the appropriate category for your task domain.`
|
|
74699
74699
|
};
|
|
74700
74700
|
}
|
|
74701
|
-
if (
|
|
74701
|
+
if (parentAgent?.toLowerCase().trim() === "planner" && agentName.toLowerCase() === "planner") {
|
|
74702
74702
|
return {
|
|
74703
74703
|
agentToUse: "",
|
|
74704
74704
|
categoryModel: undefined,
|
|
74705
|
-
error: `You are
|
|
74705
|
+
error: `You are the planner agent. You cannot delegate to another planner agent via task.
|
|
74706
74706
|
|
|
74707
74707
|
Create the work plan directly - that's your job as the planning agent.`
|
|
74708
74708
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzy-agent",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
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.1",
|
|
80
|
+
"drizzy-agent-darwin-x64": "0.4.1",
|
|
81
|
+
"drizzy-agent-darwin-x64-baseline": "0.4.1",
|
|
82
|
+
"drizzy-agent-linux-arm64": "0.4.1",
|
|
83
|
+
"drizzy-agent-linux-arm64-musl": "0.4.1",
|
|
84
|
+
"drizzy-agent-linux-x64": "0.4.1",
|
|
85
|
+
"drizzy-agent-linux-x64-baseline": "0.4.1",
|
|
86
|
+
"drizzy-agent-linux-x64-musl": "0.4.1",
|
|
87
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.4.1",
|
|
88
|
+
"drizzy-agent-windows-x64": "0.4.1",
|
|
89
|
+
"drizzy-agent-windows-x64-baseline": "0.4.1"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.24"
|