lazyopencode-core 0.0.1 → 0.0.2
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 +1 -1
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { Plugin } from "@opencode-ai/plugin";
|
|
2
|
-
import { LazyOpenCodeV2Plugin } from "./v2.js";
|
|
3
2
|
/**
|
|
4
3
|
* @lazyopencode/core — Governed team runtime for AI coding in OpenCode.
|
|
5
4
|
*
|
|
@@ -9,5 +8,5 @@ import { LazyOpenCodeV2Plugin } from "./v2.js";
|
|
|
9
8
|
*/
|
|
10
9
|
declare const LazyOpenCodePluginV1: Plugin;
|
|
11
10
|
declare const LazyOpenCodePlugin: Plugin;
|
|
12
|
-
export { LazyOpenCodePlugin, LazyOpenCodePluginV1
|
|
13
|
-
export default
|
|
11
|
+
export { LazyOpenCodePlugin, LazyOpenCodePluginV1 };
|
|
12
|
+
export default LazyOpenCodePluginV1;
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,6 @@ import { registerLazyCommands } from "./hooks/lazy-command.js";
|
|
|
4
4
|
import { createLazyRuntime } from "./hooks/runtime.js";
|
|
5
5
|
import { getSkillsDir } from "./skills/index.js";
|
|
6
6
|
import { createCancelTaskTool, createCouncilTool } from "./tools/index.js";
|
|
7
|
-
import { LazyOpenCodeV2Plugin } from "./v2.js";
|
|
8
7
|
import { createOpenCodeControlPlane } from "./opencode-control-plane.js";
|
|
9
8
|
/**
|
|
10
9
|
* @lazyopencode/core — Governed team runtime for AI coding in OpenCode.
|
|
@@ -74,8 +73,8 @@ const LazyOpenCodePluginV1 = async (ctx) => {
|
|
|
74
73
|
};
|
|
75
74
|
};
|
|
76
75
|
const LazyOpenCodePlugin = LazyOpenCodePluginV1;
|
|
77
|
-
export { LazyOpenCodePlugin, LazyOpenCodePluginV1
|
|
78
|
-
export default
|
|
76
|
+
export { LazyOpenCodePlugin, LazyOpenCodePluginV1 };
|
|
77
|
+
export default LazyOpenCodePluginV1;
|
|
79
78
|
function mergeAgents(existing, lazyAgents) {
|
|
80
79
|
const merged = { ...existing };
|
|
81
80
|
for (const [name, defaults] of Object.entries(lazyAgents)) {
|