drizzy-agent 0.5.2 → 0.5.3

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 CHANGED
@@ -8,14 +8,19 @@ Built for those who want the power of multi-model AI agents without the complexi
8
8
 
9
9
  DrizzyAgent provides **discipline agents** that work together to complete coding tasks:
10
10
 
11
- | Agent | Purpose | Model |
12
- |-------|---------|-------|
13
- | **Coder** | Main orchestrator - plans, delegates, drives to completion | Claude Opus / Kimi K2.5 / GLM-5 |
14
- | **GPTCoder** | Deep autonomous worker - explores, researches, executes end-to-end | GPT-5.3 Codex |
15
- | **Planner** | Strategic planner - interviews, identifies scope, builds plans | Claude Opus / Kimi K2.5 / GLM-5 |
16
- | **Oracle** | Architecture consultant - debugging, complex logic decisions | High-IQ reasoning models |
17
- | **Librarian** | Documentation/code search - external references, OSS examples | Research models |
18
- | **Explore** | Fast codebase grep - pattern discovery, cross-layer search | Fast models |
11
+ | Agent | Purpose | Default Model Chain |
12
+ |-------|---------|---------------------|
13
+ | **Coder** | Main orchestrator - plans, delegates, drives to completion | Claude Opus 4.6 / Kimi K2.5 / GPT-5.4 / GLM-5 |
14
+ | **GPTCoder** | Deep autonomous worker - explores, researches, executes end-to-end | GPT-5.4 |
15
+ | **Planner** | Strategic planner - interviews, identifies scope, builds plans | Claude Opus 4.6 / Kimi K2.5 / GPT-5.4 / Gemini 3.1 Pro |
16
+ | **Oracle** | Architecture consultant - debugging, complex logic decisions | GPT-5.4 / Kimi K2.5 / Gemini 3.1 Pro / Claude Opus 4.6 |
17
+ | **Librarian** | Documentation/code search - external references, OSS examples | Gemini 3 Flash / GLM-4.7 / Claude Sonnet 4.5 |
18
+ | **Explore** | Fast codebase grep - pattern discovery, cross-layer search | Custom resolver (Claude / Copilot / OpenAI) |
19
+ | **Atlas** | Plan executor - runs Planner-generated plans step by step | Kimi K2.5 / Claude Sonnet 4.6 / GPT-5.4 / Gemini 3.1 Pro |
20
+ | **Coder Junior** | Delegated sub-tasks from Coder via category system | Claude Sonnet 4.6 / GPT-5.4 / Gemini 3 Flash |
21
+ | **Plan Consultant** | Pre-planning analysis - scope clarification, ambiguity detection | Claude Opus 4.6 / Kimi K2.5 / GPT-5.4 / Gemini 3.1 Pro |
22
+ | **Plan Reviewer** | Plan quality review - verifiability, completeness checks | GPT-5.4 / Kimi K2.5 / Claude Opus 4.6 / Gemini 3.1 Pro |
23
+ | **Multimodal Looker** | Image and visual analysis | GPT-5.4 / Kimi K2.5 / Gemini 3 Flash |
19
24
 
20
25
  ## Key Features
21
26
 
@@ -27,14 +32,18 @@ Type `ultrawork` (or `ulw`). Every agent activates. Doesn't stop until done.
27
32
 
28
33
  When Coder delegates, it picks a **category**, not a model:
29
34
 
30
- | Category | For |
31
- |----------|-----|
32
- | `visual-engineering` | Frontend, UI/UX, design |
33
- | `deep` | Autonomous research + execution |
34
- | `quick` | Single-file changes, typos |
35
- | `ultrabrain` | Hard logic, architecture decisions |
35
+ | Category | For | Default Model Chain |
36
+ |----------|-----|---------------------|
37
+ | `visual-engineering` | Frontend, UI/UX, design | Gemini 3.1 Pro / GLM-5 / Claude Opus 4.6 / Kimi K2.5 |
38
+ | `ultrabrain` | Hard logic, architecture decisions | GPT-5.4 / Gemini 3.1 Pro / Claude Opus 4.6 / Kimi K2.5 |
39
+ | `deep` | Autonomous research + execution | GPT-5.4 / Claude Opus 4.6 / Gemini 3.1 Pro / Kimi K2.5 |
40
+ | `artistry` | Creative, unconventional approaches | Gemini 3.1 Pro / Claude Opus 4.6 / GPT-5.4 / Kimi K2.5 |
41
+ | `quick` | Single-file changes, typos | Claude Haiku 4.5 / Gemini 3 Flash / GPT-5.1 Codex Mini |
42
+ | `unspecified-low` | General tasks, low effort | Claude Sonnet 4.6 / Kimi K2.5 / GPT-5.4 / Gemini 3 Flash |
43
+ | `unspecified-high` | General tasks, high effort | Claude Opus 4.6 / GPT-5.4 / GLM-5 / Kimi K2.5 |
44
+ | `writing` | Documentation, prose, technical writing | Gemini 3 Flash / Kimi K2.5 / Claude Sonnet 4.6 |
36
45
 
37
- The harness maps categories to the right models automatically.
46
+ The harness maps categories to the right models automatically based on provider availability.
38
47
 
39
48
  ### Built-in Tools
40
49
 
@@ -96,12 +105,12 @@ Create `.opencode/drizzy-agent.jsonc` or `~/.config/opencode/drizzy-agent.jsonc`
96
105
  {
97
106
  "agents": {
98
107
  "coder": {
99
- "model": "anthropic/claude-opus-4-6"
108
+ "model": "claude-opus-4-6"
100
109
  }
101
110
  },
102
111
  "categories": {
103
112
  "visual-engineering": {
104
- "model": "anthropic/claude-opus-4-6"
113
+ "model": "gemini-3.1-pro"
105
114
  }
106
115
  },
107
116
  "disabled_hooks": []
@@ -143,7 +152,7 @@ You can add explicit overrides on top of the computed defaults:
143
152
  "_install_defaults": { /* ... */ },
144
153
  "agents": {
145
154
  "coder": {
146
- "model": "claude-opus-4" // This overrides the computed default
155
+ "model": "claude-opus-4-6" // This overrides the computed default
147
156
  }
148
157
  },
149
158
  "categories": {
@@ -169,10 +178,10 @@ Or manually override by editing `~/.config/opencode/drizzy-agent.jsonc`:
169
178
  ```jsonc
170
179
  {
171
180
  "agents": {
172
- "coder": { "model": "claude-opus-4" }
181
+ "coder": { "model": "claude-opus-4-6" }
173
182
  },
174
183
  "categories": {
175
- "deep": { "model": "o3-mini" }
184
+ "deep": { "model": "gpt-5.4" }
176
185
  }
177
186
  }
178
187
  ```
@@ -194,7 +203,7 @@ bun test
194
203
 
195
204
  ```
196
205
  src/
197
- ├── agents/ # 11 agent implementations
206
+ ├── agents/ # 11 agents (Coder, GPTCoder, Oracle, Librarian, Explore, Atlas, Planner, Plan Consultant, Plan Reviewer, Coder Junior, Multimodal Looker)
198
207
  ├── hooks/ # 46 lifecycle hooks
199
208
  ├── tools/ # 26 built-in tools
200
209
  ├── features/ # Core feature modules
package/dist/cli/index.js CHANGED
@@ -5330,8 +5330,9 @@ function createAutoUpdateCheckerHook(ctx, options = {}) {
5330
5330
  const isCliRunMode = process.env.OPENCODE_CLI_RUN_MODE === "true";
5331
5331
  const getToastMessage = (isUpdate, latestVersion) => {
5332
5332
  if (isCoderEnabled) {
5333
- return isUpdate ? `Coder on steroids is steering OpenCode.
5334
- v${latestVersion} available. Restart to apply.` : "Coder on steroids is steering OpenCode.";
5333
+ return isUpdate ? `Drizzy is taking the wheel.
5334
+ v${latestVersion} available. Restart to apply.` : `Drizzy is taking the wheel.
5335
+ Keep your seatbelt on.`;
5335
5336
  }
5336
5337
  return isUpdate ? `DrizzyAgent is active.
5337
5338
  v${latestVersion} available. Restart OpenCode to apply.` : "DrizzyAgent is active.";
@@ -5419,7 +5420,7 @@ var {
5419
5420
  // package.json
5420
5421
  var package_default = {
5421
5422
  name: "drizzy-agent",
5422
- version: "0.5.2",
5423
+ version: "0.5.3",
5423
5424
  description: "DrizzyAgent - AI agent plugin for OpenCode",
5424
5425
  main: "dist/index.js",
5425
5426
  types: "dist/index.d.ts",
@@ -5495,17 +5496,17 @@ var package_default = {
5495
5496
  typescript: "^5.7.3"
5496
5497
  },
5497
5498
  optionalDependencies: {
5498
- "drizzy-agent-darwin-arm64": "0.5.2",
5499
- "drizzy-agent-darwin-x64": "0.5.2",
5500
- "drizzy-agent-darwin-x64-baseline": "0.5.2",
5501
- "drizzy-agent-linux-arm64": "0.5.2",
5502
- "drizzy-agent-linux-arm64-musl": "0.5.2",
5503
- "drizzy-agent-linux-x64": "0.5.2",
5504
- "drizzy-agent-linux-x64-baseline": "0.5.2",
5505
- "drizzy-agent-linux-x64-musl": "0.5.2",
5506
- "drizzy-agent-linux-x64-musl-baseline": "0.5.2",
5507
- "drizzy-agent-windows-x64": "0.5.2",
5508
- "drizzy-agent-windows-x64-baseline": "0.5.2"
5499
+ "drizzy-agent-darwin-arm64": "0.5.3",
5500
+ "drizzy-agent-darwin-x64": "0.5.3",
5501
+ "drizzy-agent-darwin-x64-baseline": "0.5.3",
5502
+ "drizzy-agent-linux-arm64": "0.5.3",
5503
+ "drizzy-agent-linux-arm64-musl": "0.5.3",
5504
+ "drizzy-agent-linux-x64": "0.5.3",
5505
+ "drizzy-agent-linux-x64-baseline": "0.5.3",
5506
+ "drizzy-agent-linux-x64-musl": "0.5.3",
5507
+ "drizzy-agent-linux-x64-musl-baseline": "0.5.3",
5508
+ "drizzy-agent-windows-x64": "0.5.3",
5509
+ "drizzy-agent-windows-x64-baseline": "0.5.3"
5509
5510
  },
5510
5511
  overrides: {
5511
5512
  "@opencode-ai/sdk": "^1.2.24"
@@ -6389,71 +6390,71 @@ async function selectOrCancel(params) {
6389
6390
  async function promptInstallConfig(detected) {
6390
6391
  const initial = detectedToInitialValues(detected);
6391
6392
  const claude = await selectOrCancel({
6392
- message: "Do you have a Claude Pro/Max subscription?",
6393
+ message: "Will you use your Claude Pro/Max subscription?",
6393
6394
  options: [
6394
- { value: "no", label: "No", hint: "Will use opencode/big-pickle as fallback" },
6395
- { value: "yes", label: "Yes (standard)", hint: "Claude Opus 4.5 for orchestration" },
6396
- { value: "max20", label: "Yes (max20 mode)", hint: "Full power with Claude Sonnet 4.6 for Librarian" }
6395
+ { value: "no", label: "No", hint: "" },
6396
+ { value: "yes", label: "Yes (standard)", hint: "" },
6397
+ { value: "max20", label: "Yes (max20 mode)", hint: "" }
6397
6398
  ],
6398
6399
  initialValue: initial.claude
6399
6400
  });
6400
6401
  if (!claude)
6401
6402
  return null;
6402
6403
  const openai = await selectOrCancel({
6403
- message: "Do you have an OpenAI/ChatGPT Plus subscription?",
6404
+ message: "Will you use your ChatGPT Plus/Pro subscription or API Key?",
6404
6405
  options: [
6405
- { value: "no", label: "No", hint: "Oracle will use fallback models" },
6406
- { value: "yes", label: "Yes", hint: "GPT-5.4 for Oracle (high-IQ debugging)" }
6406
+ { value: "no", label: "No", hint: "" },
6407
+ { value: "yes", label: "Yes", hint: "" }
6407
6408
  ],
6408
6409
  initialValue: initial.openai
6409
6410
  });
6410
6411
  if (!openai)
6411
6412
  return null;
6412
6413
  const gemini = await selectOrCancel({
6413
- message: "Will you integrate Google Gemini?",
6414
+ message: "Will you use Google Gemini API Key?",
6414
6415
  options: [
6415
- { value: "no", label: "No", hint: "Frontend/docs agents will use fallback" },
6416
- { value: "yes", label: "Yes", hint: "Beautiful UI generation with Gemini 3 Pro" }
6416
+ { value: "no", label: "No", hint: "" },
6417
+ { value: "yes", label: "Yes", hint: "" }
6417
6418
  ],
6418
6419
  initialValue: initial.gemini
6419
6420
  });
6420
6421
  if (!gemini)
6421
6422
  return null;
6422
6423
  const copilot = await selectOrCancel({
6423
- message: "Do you have a GitHub Copilot subscription?",
6424
+ message: "Will you use your GitHub Copilot subscription?",
6424
6425
  options: [
6425
- { value: "no", label: "No", hint: "Only native providers will be used" },
6426
- { value: "yes", label: "Yes", hint: "Fallback option when native providers unavailable" }
6426
+ { value: "no", label: "No", hint: "" },
6427
+ { value: "yes", label: "Yes", hint: "" }
6427
6428
  ],
6428
6429
  initialValue: initial.copilot
6429
6430
  });
6430
6431
  if (!copilot)
6431
6432
  return null;
6432
6433
  const opencodeZen = await selectOrCancel({
6433
- message: "Do you have access to OpenCode Zen (opencode/ models)?",
6434
+ message: "Will you use OpenCode Zen (opencode/ models)?",
6434
6435
  options: [
6435
- { value: "no", label: "No", hint: "Will use other configured providers" },
6436
- { value: "yes", label: "Yes", hint: "opencode/claude-opus-4-6, opencode/gpt-5.4, etc." }
6436
+ { value: "no", label: "No", hint: "" },
6437
+ { value: "yes", label: "Yes", hint: "" }
6437
6438
  ],
6438
6439
  initialValue: initial.opencodeZen
6439
6440
  });
6440
6441
  if (!opencodeZen)
6441
6442
  return null;
6442
6443
  const zaiCodingPlan = await selectOrCancel({
6443
- message: "Do you have a Z.ai Coding Plan subscription?",
6444
+ message: "Will you use your Z.ai Coding Plan subscription?",
6444
6445
  options: [
6445
- { value: "no", label: "No", hint: "Will use other configured providers" },
6446
- { value: "yes", label: "Yes", hint: "Fallback for Librarian and Multimodal Looker" }
6446
+ { value: "no", label: "No", hint: "" },
6447
+ { value: "yes", label: "Yes", hint: "" }
6447
6448
  ],
6448
6449
  initialValue: initial.zaiCodingPlan
6449
6450
  });
6450
6451
  if (!zaiCodingPlan)
6451
6452
  return null;
6452
6453
  const kimiForCoding = await selectOrCancel({
6453
- message: "Do you have a Kimi For Coding subscription?",
6454
+ message: "Will you use your Kimi For Coding subscription?",
6454
6455
  options: [
6455
- { value: "no", label: "No", hint: "Will use other configured providers" },
6456
- { value: "yes", label: "Yes", hint: "Kimi K2.5 for Coder/Planner fallback" }
6456
+ { value: "no", label: "No", hint: "" },
6457
+ { value: "yes", label: "Yes", hint: "" }
6457
6458
  ],
6458
6459
  initialValue: initial.kimiForCoding
6459
6460
  });
@@ -6577,19 +6578,6 @@ async function runTuiInstaller(args, version) {
6577
6578
  return 1;
6578
6579
  }
6579
6580
  spinner.stop(`Config written to ${import_picocolors5.default.cyan(drizzyResult.configPath)}`);
6580
- if (!config.hasClaude) {
6581
- console.log();
6582
- console.log(import_picocolors5.default.bgRed(import_picocolors5.default.white(import_picocolors5.default.bold(" CRITICAL WARNING "))));
6583
- console.log();
6584
- console.log(import_picocolors5.default.red(import_picocolors5.default.bold(" Coder agent is STRONGLY optimized for Claude Opus 4.5.")));
6585
- console.log(import_picocolors5.default.red(" Without Claude, you may experience significantly degraded performance:"));
6586
- console.log(import_picocolors5.default.dim(" \u2022 Reduced orchestration quality"));
6587
- console.log(import_picocolors5.default.dim(" \u2022 Weaker tool selection and delegation"));
6588
- console.log(import_picocolors5.default.dim(" \u2022 Less reliable task completion"));
6589
- console.log();
6590
- console.log(import_picocolors5.default.yellow(" Consider subscribing to Claude Pro/Max for the best experience."));
6591
- console.log();
6592
- }
6593
6581
  if (!config.hasClaude && !config.hasOpenAI && !config.hasGemini && !config.hasCopilot && !config.hasOpencodeZen) {
6594
6582
  M2.warn("No model providers configured. Using opencode/big-pickle as fallback.");
6595
6583
  }
package/dist/index.js CHANGED
@@ -40762,8 +40762,9 @@ function createAutoUpdateCheckerHook(ctx, options = {}) {
40762
40762
  const isCliRunMode = process.env.OPENCODE_CLI_RUN_MODE === "true";
40763
40763
  const getToastMessage = (isUpdate, latestVersion) => {
40764
40764
  if (isCoderEnabled) {
40765
- return isUpdate ? `Coder on steroids is steering OpenCode.
40766
- v${latestVersion} available. Restart to apply.` : "Coder on steroids is steering OpenCode.";
40765
+ return isUpdate ? `Drizzy is taking the wheel.
40766
+ v${latestVersion} available. Restart to apply.` : `Drizzy is taking the wheel.
40767
+ Keep your seatbelt on.`;
40767
40768
  }
40768
40769
  return isUpdate ? `DrizzyAgent is active.
40769
40770
  v${latestVersion} available. Restart OpenCode to apply.` : "DrizzyAgent is active.";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzy-agent",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
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.2",
80
- "drizzy-agent-darwin-x64": "0.5.2",
81
- "drizzy-agent-darwin-x64-baseline": "0.5.2",
82
- "drizzy-agent-linux-arm64": "0.5.2",
83
- "drizzy-agent-linux-arm64-musl": "0.5.2",
84
- "drizzy-agent-linux-x64": "0.5.2",
85
- "drizzy-agent-linux-x64-baseline": "0.5.2",
86
- "drizzy-agent-linux-x64-musl": "0.5.2",
87
- "drizzy-agent-linux-x64-musl-baseline": "0.5.2",
88
- "drizzy-agent-windows-x64": "0.5.2",
89
- "drizzy-agent-windows-x64-baseline": "0.5.2"
79
+ "drizzy-agent-darwin-arm64": "0.5.3",
80
+ "drizzy-agent-darwin-x64": "0.5.3",
81
+ "drizzy-agent-darwin-x64-baseline": "0.5.3",
82
+ "drizzy-agent-linux-arm64": "0.5.3",
83
+ "drizzy-agent-linux-arm64-musl": "0.5.3",
84
+ "drizzy-agent-linux-x64": "0.5.3",
85
+ "drizzy-agent-linux-x64-baseline": "0.5.3",
86
+ "drizzy-agent-linux-x64-musl": "0.5.3",
87
+ "drizzy-agent-linux-x64-musl-baseline": "0.5.3",
88
+ "drizzy-agent-windows-x64": "0.5.3",
89
+ "drizzy-agent-windows-x64-baseline": "0.5.3"
90
90
  },
91
91
  "overrides": {
92
92
  "@opencode-ai/sdk": "^1.2.24"