opencode-orchestrator 1.2.50 → 1.2.52

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/dist/index.js +0 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2008,9 +2008,6 @@ var init_verification = __esm({
2008
2008
 
2009
2009
  // src/core/agents/logger.ts
2010
2010
  function log(..._args) {
2011
- if (process.env.DEBUG_PARALLEL_AGENT === "true") {
2012
- console.log("[parallel-agent]", ..._args);
2013
- }
2014
2011
  }
2015
2012
  var init_logger = __esm({
2016
2013
  "src/core/agents/logger.ts"() {
@@ -5406,7 +5403,6 @@ var ConcurrencyToken = class {
5406
5403
  this.autoReleaseMs = autoReleaseMs;
5407
5404
  this.autoReleaseTimer = setTimeout(() => {
5408
5405
  if (!this.released) {
5409
- console.warn(`[ConcurrencyToken] Auto-releasing ${key} after ${autoReleaseMs}ms`);
5410
5406
  this.release();
5411
5407
  }
5412
5408
  }, autoReleaseMs);
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.50",
5
+ "version": "1.2.52",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {