opencode-orchestrator 1.2.67 → 1.2.68

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
@@ -9,7 +9,7 @@
9
9
  [![MIT License](https://img.shields.io/badge/license-MIT-red.svg)](LICENSE)
10
10
  [![npm](https://img.shields.io/npm/v/opencode-orchestrator.svg)](https://www.npmjs.com/package/opencode-orchestrator)
11
11
  <!-- VERSION:START -->
12
- **Version:** `1.2.67`
12
+ **Version:** `1.2.68`
13
13
  <!-- VERSION:END -->
14
14
  </div>
15
15
 
@@ -24,6 +24,15 @@ npm install -g opencode-orchestrator
24
24
 
25
25
  Install hooks are source-checkout safe, prefer `opencode.jsonc` when present, preserve sibling plugin entries, and skip automatic config mutation in CI environments.
26
26
 
27
+ To remove the plugin safely later, run:
28
+
29
+ ```bash
30
+ npm explore -g opencode-orchestrator -- npm run cleanup:plugin
31
+ npm uninstall -g opencode-orchestrator
32
+ ```
33
+
34
+ `npm uninstall -g` does not run dependency uninstall hooks in the npm 11 flow verified for this repo, so config cleanup is explicit.
35
+
27
36
  Inside an OpenCode environment:
28
37
  ```bash
29
38
  /task "Implement a new authentication module with JWT and audit logs"
@@ -284,6 +293,18 @@ The installation process is **production-safe** with multiple protection layers:
284
293
  7. ✅ **Timeout protection** — 30s timeout prevents hanging
285
294
  8. ✅ **Graceful degradation** — exits 0 on non-critical failures
286
295
 
296
+ ### Safe Removal
297
+ OpenCode config cleanup is provided as an explicit command because global package uninstall does not invoke dependency uninstall hooks in the npm flow validated for this package.
298
+
299
+ ```bash
300
+ npm explore -g opencode-orchestrator -- npm run cleanup:plugin
301
+ npm uninstall -g opencode-orchestrator
302
+ ```
303
+
304
+ Manual fallback:
305
+ - Open `~/.config/opencode/opencode.json` or `opencode.jsonc`
306
+ - Remove `"opencode-orchestrator"` from the `plugin` array
307
+
287
308
  ### Configuration Logs
288
309
  - Unix: `/tmp/opencode-orchestrator.log`
289
310
  - Windows: `%TEMP%\opencode-orchestrator.log`