opencode-orchestrator 1.2.66 → 1.2.67

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.66`
12
+ **Version:** `1.2.67`
13
13
  <!-- VERSION:END -->
14
14
  </div>
15
15
 
@@ -139,9 +139,9 @@ Inside an OpenCode environment:
139
139
 
140
140
  ---
141
141
 
142
- ## 🧪 Test Harness System
142
+ ## 🧪 Test Utilities
143
143
 
144
- **Production-grade test infrastructure** inspired by modern testing practices:
144
+ Reusable test helpers keep filesystem, task, and process-heavy flows deterministic:
145
145
 
146
146
  ```
147
147
  tests/harness/
@@ -231,7 +231,7 @@ Maintains focus across thousands of conversation turns using a 4-tier memory str
231
231
 
232
232
  ---
233
233
 
234
- ## Performance Benchmarks
234
+ ## ⚙️ Performance Benchmarks
235
235
 
236
236
  | Metric | Improvement |
237
237
  |:-------|:------------|
@@ -292,8 +292,8 @@ The installation process is **production-safe** with multiple protection layers:
292
292
 
293
293
  ## 🧪 Testing & Stability
294
294
 
295
- ### Test Harness System
296
- A production-grade test harness (`tests/harness/`) provides:
295
+ ### Test Utilities
296
+ Reusable helpers under `tests/harness/` provide:
297
297
  - **Disposable tmpdir**: Automatic cleanup with `Symbol.asyncDispose` / `Symbol.dispose`
298
298
  - **Test builders**: Factory functions for `ParallelTask`, `BackgroundTask`, `Todo`
299
299
  - **Mock utilities**: Console, process, timers, file system, event emitter mocks
@@ -391,7 +391,6 @@ function removeFromConfig(configDir) {
391
391
  log("Config file does not exist", { configFile });
392
392
  return { success: false, backupFile: null };
393
393
  }
394
- backupFile = createBackup(configFile);
395
394
  const content = readFileSync(configFile, "utf-8");
396
395
  originalContent = content;
397
396
  const trimmedContent = content.trim();
@@ -424,6 +423,7 @@ function removeFromConfig(configDir) {
424
423
  log("Plugin not found in config", { configFile });
425
424
  return { success: false, backupFile };
426
425
  }
426
+ backupFile = createBackup(configFile);
427
427
  const removedCount = originalLength - config.plugin.length;
428
428
  log("Removing plugin from config", {
429
429
  plugin: PLUGIN_NAME,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "opencode-orchestrator",
3
3
  "displayName": "OpenCode Orchestrator",
4
4
  "description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
5
- "version": "1.2.66",
5
+ "version": "1.2.67",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {