opencode-immune 1.0.83 → 1.0.84

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.
@@ -4123,7 +4123,6 @@ import { fileURLToPath } from "url";
4123
4123
  import { createHash } from "crypto";
4124
4124
  import { tmpdir } from "os";
4125
4125
  import { execFile } from "child_process";
4126
- var PLUGIN_VERSION = "1.0.83";
4127
4126
  var PLUGIN_PACKAGE_NAME = "opencode-immune";
4128
4127
  var PLUGIN_DIRNAME = dirname(fileURLToPath(import.meta.url));
4129
4128
  function getServerAuthHeaders() {
@@ -4150,7 +4149,7 @@ async function getPluginVersion() {
4150
4149
  }
4151
4150
  } catch {
4152
4151
  }
4153
- return PLUGIN_VERSION;
4152
+ return "0.0.0";
4154
4153
  }
4155
4154
  async function installLatestPluginUpdate(state, currentVersion, latestVersion) {
4156
4155
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-immune",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin: session recovery, auto-retry, multi-cycle automation, context monitoring",
6
6
  "exports": {
@@ -14,6 +14,7 @@
14
14
  "scripts": {
15
15
  "build": "esbuild plugin.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/plugin/server.js && esbuild plugin.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/plugin.js",
16
16
  "dev": "node ./node_modules/typescript/bin/tsc --project tsconfig.json --watch",
17
+ "release": "cd .. && bash scripts/release-plugin.sh",
17
18
  "prepublishOnly": "npm run build"
18
19
  },
19
20
  "dependencies": {