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 CHANGED
@@ -48,7 +48,7 @@ Add the plugin to your OpenCode config:
48
48
  ```jsonc
49
49
  {
50
50
  "$schema": "https://opencode.ai/config.json",
51
- "plugin": ["@lazyopencode/core"]
51
+ "plugin": ["lazyopencode-core"]
52
52
  }
53
53
  ```
54
54
 
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, LazyOpenCodeV2Plugin };
13
- export default LazyOpenCodeV2Plugin;
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, LazyOpenCodeV2Plugin };
78
- export default LazyOpenCodeV2Plugin;
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)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lazyopencode-core",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Governed team runtime for AI coding in OpenCode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",