opencode-orchestrator 0.6.1 → 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.
- package/README.md +4 -2
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -233,8 +233,10 @@ npm uninstall -g opencode-orchestrator
|
|
|
233
233
|
|
|
234
234
|
**Log file location:**
|
|
235
235
|
```bash
|
|
236
|
-
# macOS/
|
|
237
|
-
|
|
236
|
+
# Find log path (macOS uses /var/folders/...)
|
|
237
|
+
npm run log
|
|
238
|
+
# or:
|
|
239
|
+
tail -f "$(node -e 'console.log(require("os").tmpdir())')/opencode-orchestrator.log"
|
|
238
240
|
|
|
239
241
|
# Windows
|
|
240
242
|
# C:\Users\<username>\AppData\Local\Temp\opencode-orchestrator.log
|
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.
|
|
5
|
+
"version": "0.6.3",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"reset:local": "brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode ~/.cache/opencode/node_modules/opencode-orchestrator && echo '=== Clean done ===' && brew install opencode && echo '{\"plugin\": [\"opencode-orchestrator\"], \"$schema\": \"https://opencode.ai/config.json\"}' > ~/.config/opencode/opencode.json && echo '=== Reset (Dev) complete. Run: opencode ==='",
|
|
61
61
|
"reset:prod": "brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode ~/.cache/opencode/node_modules/opencode-orchestrator && echo '=== Clean done ===' && brew install opencode && echo '{\"plugin\": [\"opencode-orchestrator\"], \"$schema\": \"https://opencode.ai/config.json\"}' > ~/.config/opencode/opencode.json && npm install -g opencode-orchestrator && echo '=== Reset (Prod) complete. Run: opencode ==='",
|
|
62
62
|
"ginstall": "npm install -g opencode-orchestrator",
|
|
63
|
-
"log": "tail -f /
|
|
63
|
+
"log": "tail -f \"$(node -e 'console.log(require(\"os\").tmpdir())')/opencode-orchestrator.log\""
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@opencode-ai/plugin": "^1.1.1",
|