drizzy-agent 0.6.3 → 0.7.0
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 -3
- package/dist/agents/builtin-agents/{atlas-agent.d.ts → orchestrator-agent.d.ts} +1 -1
- package/dist/agents/{atlas → orchestrator}/agent.d.ts +9 -9
- package/dist/agents/{atlas → orchestrator}/default.d.ts +3 -3
- package/dist/agents/{atlas → orchestrator}/gemini.d.ts +3 -3
- package/dist/agents/{atlas → orchestrator}/gpt.d.ts +3 -3
- package/dist/agents/orchestrator/index.d.ts +2 -0
- package/dist/agents/{atlas → orchestrator}/prompt-section-builder.d.ts +1 -1
- package/dist/agents/types.d.ts +2 -2
- package/dist/cli/index.js +26 -26
- package/dist/config/schema/agent-names.d.ts +3 -3
- package/dist/config/schema/agent-overrides.d.ts +1 -1
- package/dist/config/schema/drizzy-agent-config.d.ts +2 -2
- package/dist/config/schema/hooks.d.ts +1 -1
- package/dist/create-hooks.d.ts +1 -1
- package/dist/drizzy-agent.schema.json +2 -2
- package/dist/features/boulder-state/types.d.ts +1 -1
- package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
- package/dist/features/hook-message-injector/injector.d.ts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/{atlas → orchestrator}/event-handler.d.ts +3 -3
- package/dist/hooks/orchestrator/hook-name.d.ts +1 -0
- package/dist/hooks/orchestrator/idle-event.d.ts +8 -0
- package/dist/hooks/orchestrator/index.d.ts +3 -0
- package/dist/hooks/{atlas/atlas-hook.d.ts → orchestrator/orchestrator-hook.d.ts} +2 -2
- package/dist/hooks/{atlas → orchestrator}/types.d.ts +1 -1
- package/dist/hooks/planner-md-only/agent-resolution.d.ts +1 -1
- package/dist/index.js +111 -111
- package/dist/plugin/hooks/create-continuation-hooks.d.ts +2 -2
- package/dist/shared/agent-display-names.d.ts +1 -1
- package/dist/shared/agent-model-defaults.d.ts +2 -2
- package/package.json +12 -12
- package/dist/agents/atlas/index.d.ts +0 -2
- package/dist/hooks/atlas/hook-name.d.ts +0 -1
- package/dist/hooks/atlas/idle-event.d.ts +0 -8
- package/dist/hooks/atlas/index.d.ts +0 -3
- /package/dist/hooks/{atlas → orchestrator}/boulder-continuation-injector.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/coder-path.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/is-abort-error.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/recent-model-resolver.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/session-last-agent.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/subagent-session-id.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/system-reminder-templates.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/tool-execute-after.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/tool-execute-before.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/verification-reminders.d.ts +0 -0
- /package/dist/hooks/{atlas → orchestrator}/write-edit-tool-policy.d.ts +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { HookName, DrizzyAgentConfig } from "../../config";
|
|
2
2
|
import type { BackgroundManager } from "../../features/background-agent";
|
|
3
3
|
import type { PluginContext } from "../types";
|
|
4
|
-
import { createGptPermissionContinuationHook, createTodoContinuationEnforcer, createBackgroundNotificationHook, createStopContinuationGuardHook, createCompactionContextInjector, createCompactionTodoPreserverHook,
|
|
4
|
+
import { createGptPermissionContinuationHook, createTodoContinuationEnforcer, createBackgroundNotificationHook, createStopContinuationGuardHook, createCompactionContextInjector, createCompactionTodoPreserverHook, createOrchestratorHook } from "../../hooks";
|
|
5
5
|
import { createUnstableAgentBabysitter } from "../unstable-agent-babysitter";
|
|
6
6
|
export type ContinuationHooks = {
|
|
7
7
|
gptPermissionContinuation: ReturnType<typeof createGptPermissionContinuationHook> | null;
|
|
@@ -11,7 +11,7 @@ export type ContinuationHooks = {
|
|
|
11
11
|
todoContinuationEnforcer: ReturnType<typeof createTodoContinuationEnforcer> | null;
|
|
12
12
|
unstableAgentBabysitter: ReturnType<typeof createUnstableAgentBabysitter> | null;
|
|
13
13
|
backgroundNotificationHook: ReturnType<typeof createBackgroundNotificationHook> | null;
|
|
14
|
-
|
|
14
|
+
orchestratorHook: ReturnType<typeof createOrchestratorHook> | null;
|
|
15
15
|
};
|
|
16
16
|
type SessionRecovery = {
|
|
17
17
|
setOnAbortCallback: (callback: (sessionID: string) => void) => void;
|
|
@@ -7,6 +7,6 @@ export declare const AGENT_DISPLAY_NAMES: Record<string, string>;
|
|
|
7
7
|
export declare function getAgentDisplayName(configKey: string): string;
|
|
8
8
|
/**
|
|
9
9
|
* Resolve an agent name (display name or config key) to its lowercase config key.
|
|
10
|
-
* "
|
|
10
|
+
* "Orchestrator" → "orchestrator", "orchestrator" → "orchestrator", "unknown" → "unknown"
|
|
11
11
|
*/
|
|
12
12
|
export declare function getAgentConfigKey(agentName: string): string;
|
|
@@ -52,7 +52,7 @@
|
|
|
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
|
+
* | **orchestrator** | k2p5 → claude-sonnet-4-6 → claude-sonnet-4-5 → gpt-5.4 → gemini-3.1-pro |
|
|
56
56
|
* | **coder-junior** | claude-sonnet-4-6 → gpt-5.3-codex → gemini-3-flash (runtime only) |
|
|
57
57
|
*
|
|
58
58
|
* ## Category Model Chains
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
*
|
|
79
79
|
* The following changed from install-time defaults after unification:
|
|
80
80
|
* - **librarian**: Now uses gemini-3-flash first (was glm-4.7)
|
|
81
|
-
* - **
|
|
81
|
+
* - **orchestrator**: Now uses k2p5 first (was claude-sonnet-4-6)
|
|
82
82
|
* - **gptcoder**: Now allows github-copilot fallback (was OpenAI-only)
|
|
83
83
|
*
|
|
84
84
|
* These simplifications achieve true single source of truth.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzy-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
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.
|
|
80
|
-
"drizzy-agent-darwin-x64": "0.
|
|
81
|
-
"drizzy-agent-darwin-x64-baseline": "0.
|
|
82
|
-
"drizzy-agent-linux-arm64": "0.
|
|
83
|
-
"drizzy-agent-linux-arm64-musl": "0.
|
|
84
|
-
"drizzy-agent-linux-x64": "0.
|
|
85
|
-
"drizzy-agent-linux-x64-baseline": "0.
|
|
86
|
-
"drizzy-agent-linux-x64-musl": "0.
|
|
87
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.
|
|
88
|
-
"drizzy-agent-windows-x64": "0.
|
|
89
|
-
"drizzy-agent-windows-x64-baseline": "0.
|
|
79
|
+
"drizzy-agent-darwin-arm64": "0.7.0",
|
|
80
|
+
"drizzy-agent-darwin-x64": "0.7.0",
|
|
81
|
+
"drizzy-agent-darwin-x64-baseline": "0.7.0",
|
|
82
|
+
"drizzy-agent-linux-arm64": "0.7.0",
|
|
83
|
+
"drizzy-agent-linux-arm64-musl": "0.7.0",
|
|
84
|
+
"drizzy-agent-linux-x64": "0.7.0",
|
|
85
|
+
"drizzy-agent-linux-x64-baseline": "0.7.0",
|
|
86
|
+
"drizzy-agent-linux-x64-musl": "0.7.0",
|
|
87
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.7.0",
|
|
88
|
+
"drizzy-agent-windows-x64": "0.7.0",
|
|
89
|
+
"drizzy-agent-windows-x64-baseline": "0.7.0"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.24"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const HOOK_NAME = "atlas";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { PluginInput } from "@opencode-ai/plugin";
|
|
2
|
-
import type { AtlasHookOptions, SessionState } from "./types";
|
|
3
|
-
export declare function handleAtlasSessionIdle(input: {
|
|
4
|
-
ctx: PluginInput;
|
|
5
|
-
options?: AtlasHookOptions;
|
|
6
|
-
getState: (sessionID: string) => SessionState;
|
|
7
|
-
sessionID: string;
|
|
8
|
-
}): Promise<void>;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|