opencode-orchestrator 1.2.6 → 1.2.13
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/core/agents/index.d.ts +1 -0
- package/dist/core/agents/manager/task-poller.d.ts +1 -0
- package/dist/core/cleanup/cleanup-scheduler.d.ts +11 -0
- package/dist/core/loop/mission-loop.d.ts +1 -30
- package/dist/core/notification/task-toast-manager.d.ts +6 -0
- package/dist/core/sync/todo-parser.d.ts +5 -0
- package/dist/core/sync/todo-sync-service.d.ts +35 -0
- package/dist/hooks/registry.d.ts +4 -4
- package/dist/hooks/types.d.ts +5 -5
- package/dist/index.js +15921 -1806
- package/dist/plugin-handlers/chat-message-handler.d.ts +17 -1
- package/dist/plugin-handlers/interfaces/index.d.ts +1 -0
- package/dist/plugin-handlers/interfaces/tool-hook.d.ts +14 -0
- package/dist/plugin-handlers/tool-execute-handler.d.ts +2 -11
- package/dist/plugin-handlers/tool-execute-pre-handler.d.ts +2 -7
- package/dist/shared/constants/system-messages.d.ts +2 -0
- package/dist/shared/loop/interfaces/index.d.ts +3 -2
- package/dist/shared/loop/interfaces/mission-loop.d.ts +29 -0
- package/dist/tools/ast/index.d.ts +3 -28
- package/dist/tools/background-cmd/check.d.ts +2 -11
- package/dist/tools/background-cmd/kill.d.ts +2 -9
- package/dist/tools/background-cmd/list.d.ts +2 -14
- package/dist/tools/background-cmd/run.d.ts +2 -15
- package/dist/tools/callAgent.d.ts +2 -17
- package/dist/tools/lsp/index.d.ts +2 -11
- package/dist/tools/parallel/cancel-task.d.ts +2 -9
- package/dist/tools/parallel/delegate-task.d.ts +2 -25
- package/dist/tools/parallel/get-task-result.d.ts +2 -9
- package/dist/tools/parallel/list-tasks.d.ts +2 -9
- package/dist/tools/parallel/update-todo.d.ts +2 -23
- package/dist/tools/search.d.ts +11 -142
- package/dist/tools/slashCommand.d.ts +2 -9
- package/dist/tools/web/cache-docs.d.ts +2 -16
- package/dist/tools/web/codesearch.d.ts +2 -13
- package/dist/tools/web/webfetch.d.ts +2 -13
- package/dist/tools/web/websearch.d.ts +2 -11
- package/package.json +4 -4
|
@@ -4,16 +4,5 @@
|
|
|
4
4
|
* Search open source code using grep.app
|
|
5
5
|
* Useful for finding patterns and examples from verified repositories
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
args: {
|
|
10
|
-
query: import("zod").ZodString;
|
|
11
|
-
language: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12
|
-
repo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13
|
-
};
|
|
14
|
-
execute(args: {
|
|
15
|
-
query: string;
|
|
16
|
-
language?: string | undefined;
|
|
17
|
-
repo?: string | undefined;
|
|
18
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
19
|
-
};
|
|
7
|
+
import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
8
|
+
export declare const codesearchTool: ToolDefinition;
|
|
@@ -4,16 +4,5 @@
|
|
|
4
4
|
* Fetches content from a URL and converts HTML to Markdown
|
|
5
5
|
* Used by Planner and Worker agents for documentation research
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
args: {
|
|
10
|
-
url: import("zod").ZodString;
|
|
11
|
-
cache: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12
|
-
selector: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13
|
-
};
|
|
14
|
-
execute(args: {
|
|
15
|
-
url: string;
|
|
16
|
-
cache?: boolean | undefined;
|
|
17
|
-
selector?: string | undefined;
|
|
18
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
19
|
-
};
|
|
7
|
+
import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
8
|
+
export declare const webfetchTool: ToolDefinition;
|
|
@@ -4,14 +4,5 @@
|
|
|
4
4
|
* Searches the web for information using multiple providers
|
|
5
5
|
* Priority: SearXNG (local) > Brave Search > DuckDuckGo (fallback)
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
args: {
|
|
10
|
-
query: import("zod").ZodString;
|
|
11
|
-
maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12
|
-
};
|
|
13
|
-
execute(args: {
|
|
14
|
-
query: string;
|
|
15
|
-
maxResults?: number | undefined;
|
|
16
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
17
|
-
};
|
|
7
|
+
import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
8
|
+
export declare const websearchTool: ToolDefinition;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
3
|
"displayName": "OpenCode Orchestrator",
|
|
4
4
|
"description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.13",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"node": ">=24"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@opencode-ai/plugin": "^1.1.
|
|
74
|
-
"@opencode-ai/sdk": "^1.1.
|
|
75
|
-
"zod": "4.
|
|
73
|
+
"@opencode-ai/plugin": "^1.1.35",
|
|
74
|
+
"@opencode-ai/sdk": "^1.1.35",
|
|
75
|
+
"zod": "^4.3.6"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@types/node": "^22.0.0",
|