opencode-orchestrator 0.6.1 → 0.6.2

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/README.md +4 -2
  2. 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/Linux
237
- tail -f /tmp/opencode-orchestrator.log
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/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.1",
5
+ "version": "0.6.2",
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 /tmp/opencode-orchestrator.log"
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",