@different-ai/opencode-browser 4.0.2 → 4.0.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/plugin.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@different-ai/opencode-browser",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Browser automation plugin for OpenCode (native messaging + per-tab ownership).",
5
5
  "type": "module",
6
6
  "bin": {
package/src/plugin.ts CHANGED
@@ -177,7 +177,8 @@ const plugin: Plugin = {
177
177
  loaded: true,
178
178
  sessionId,
179
179
  pid: process.pid,
180
- tools: plugin.tools.map(t => t.name),
180
+ pluginVersion: getPackageVersion(),
181
+ tools: plugin.tools.map(t => ({ name: t.name, description: t.description })),
181
182
  timestamp: new Date().toISOString(),
182
183
  });
183
184
  }