opencode-orchestrator 0.6.2 → 0.6.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/dist/index.js +1 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16518,6 +16518,7 @@ var OrchestratorPlugin = async (input) => {
16518
16518
  const parsed = detectSlashCommand(originalText);
16519
16519
  const sessionID = msgInput.sessionID;
16520
16520
  const agentName = (msgInput.agent || "").toLowerCase();
16521
+ log2("[index.ts] chat.message hook", { sessionID, agent: agentName, textLength: originalText.length });
16521
16522
  if (agentName === AGENT_NAMES.COMMANDER && !sessions.has(sessionID)) {
16522
16523
  const now = Date.now();
16523
16524
  sessions.set(sessionID, {
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": "0.6.2",
5
+ "version": "0.6.3",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {