ayush-opencode 0.1.0 → 0.1.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/dist/index.d.ts +1 -3
- package/dist/index.js +2 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
* 2. Orchestration injection into Build/Plan agents for better delegation
|
|
7
7
|
*/
|
|
8
8
|
import type { Plugin } from "@opencode-ai/plugin";
|
|
9
|
-
|
|
9
|
+
declare const AyushOpenCodePlugin: Plugin;
|
|
10
10
|
export default AyushOpenCodePlugin;
|
|
11
|
-
export { explorerAgent, librarianAgent, oracleAgent, uiPlannerAgent, } from "./agents";
|
|
12
|
-
export { ORCHESTRATION_PROMPT } from "./orchestration/prompt";
|
|
13
11
|
export type { BuiltinAgentName, AgentOverrideConfig, AgentOverrides, } from "./agents";
|
package/dist/index.js
CHANGED
|
@@ -591,7 +591,7 @@ Wait for @explorer... then @librarian... (wastes time)
|
|
|
591
591
|
// src/index.ts
|
|
592
592
|
var AyushOpenCodePlugin = async (ctx) => {
|
|
593
593
|
return {
|
|
594
|
-
async
|
|
594
|
+
config: async (config) => {
|
|
595
595
|
config.agent = config.agent ?? {};
|
|
596
596
|
config.agent.explorer = explorerAgent;
|
|
597
597
|
config.agent.librarian = librarianAgent;
|
|
@@ -610,11 +610,5 @@ var AyushOpenCodePlugin = async (ctx) => {
|
|
|
610
610
|
};
|
|
611
611
|
var src_default = AyushOpenCodePlugin;
|
|
612
612
|
export {
|
|
613
|
-
|
|
614
|
-
oracleAgent,
|
|
615
|
-
librarianAgent,
|
|
616
|
-
explorerAgent,
|
|
617
|
-
src_default as default,
|
|
618
|
-
ORCHESTRATION_PROMPT,
|
|
619
|
-
AyushOpenCodePlugin
|
|
613
|
+
src_default as default
|
|
620
614
|
};
|
package/package.json
CHANGED