@mstar-harness/opencode 2.0.1 → 2.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/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ The monorepo root [CHANGELOG.md](../../CHANGELOG.md) summarizes cross-surface re
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.0.2] - 2026-08-08
10
+
11
+ ### Fixed
12
+
13
+ - OpenCode plugin entry now default-exports `{ server: MorningStarHarnessPlugin }` so helper function exports are not registered as plugins (fixes `plugin config hook failed: N.config` / `N.dispose` on startup).
14
+
15
+ - Version alignment with harness **2.0.2** (no OpenCode package API change).
16
+
17
+ See root [CHANGELOG.md](../../CHANGELOG.md) **2.0.2**.
18
+
9
19
  ## [2.0.1] - 2026-08-08
10
20
 
11
21
  ### Fixed
package/dist/mstar.js CHANGED
@@ -772,8 +772,12 @@ var MorningStarHarnessPlugin = async () => {
772
772
  }
773
773
  };
774
774
  };
775
+ var mstar_default = {
776
+ server: MorningStarHarnessPlugin
777
+ };
775
778
  export {
776
779
  validateStatusWrite,
777
780
  validateDispatchAssignment,
781
+ mstar_default as default,
778
782
  MorningStarHarnessPlugin
779
783
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mstar-harness/opencode",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Morning Star harness OpenCode plugin — skills bootstrap + engine-backed runtime hooks (status lint, dispatch validation, Enforcement: hard gates).",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -36,6 +36,6 @@
36
36
  "access": "public"
37
37
  },
38
38
  "devDependencies": {
39
- "@mstar-harness/engine": "2.0.1"
39
+ "@mstar-harness/engine": "2.0.2"
40
40
  }
41
41
  }