opencode-orchestrator 0.1.62 → 0.2.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 +43 -98
- package/dist/index.d.ts +3 -3
- package/dist/index.js +344 -749
- package/dist/shared/contracts/names.d.ts +1 -1
- package/dist/tools/callAgent.d.ts +2 -2
- package/dist/tools/search.d.ts +1 -1
- package/package.json +2 -1
|
@@ -3,6 +3,6 @@ export declare const AGENT_NAMES: {
|
|
|
3
3
|
readonly ARCHITECT: "architect";
|
|
4
4
|
readonly BUILDER: "builder";
|
|
5
5
|
readonly INSPECTOR: "inspector";
|
|
6
|
-
readonly
|
|
6
|
+
readonly RECORDER: "recorder";
|
|
7
7
|
};
|
|
8
8
|
export type AgentName = typeof AGENT_NAMES[keyof typeof AGENT_NAMES];
|
|
@@ -5,13 +5,13 @@ export declare const callAgentTool: {
|
|
|
5
5
|
architect: "architect";
|
|
6
6
|
builder: "builder";
|
|
7
7
|
inspector: "inspector";
|
|
8
|
-
|
|
8
|
+
recorder: "recorder";
|
|
9
9
|
}>;
|
|
10
10
|
task: import("zod").ZodString;
|
|
11
11
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12
12
|
};
|
|
13
13
|
execute(args: {
|
|
14
|
-
agent: "architect" | "builder" | "inspector" | "
|
|
14
|
+
agent: "architect" | "builder" | "inspector" | "recorder";
|
|
15
15
|
task: string;
|
|
16
16
|
context?: string | undefined;
|
|
17
17
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
package/dist/tools/search.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const grepSearchTool: (directory: string) => {
|
|
|
15
15
|
};
|
|
16
16
|
/**
|
|
17
17
|
* Glob search tool - finds files by pattern
|
|
18
|
-
* Used by Builder and
|
|
18
|
+
* Used by Builder and Recorder for file discovery
|
|
19
19
|
*/
|
|
20
20
|
export declare const globSearchTool: (directory: string) => {
|
|
21
21
|
description: string;
|
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": "0.
|
|
5
|
+
"version": "0.2.0",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"preuninstall": "node dist/scripts/preuninstall.js 2>/dev/null || true",
|
|
57
57
|
"prepublishOnly": "npm run build:js",
|
|
58
58
|
"dev:install": "npm run build:js && npm install -g .",
|
|
59
|
+
"dev:uninstall": "npm uninstall -g opencode-orchestrator",
|
|
59
60
|
"util:stars": "gh api repos/agnusdei1207/opencode-orchestrator/stargazers --jq '.[].login'"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|