opencode-orchestrator 0.4.24 → 0.4.25

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 +3 -3
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -352,13 +352,13 @@ npm run dev:test
352
352
  ### Release Scripts
353
353
 
354
354
  ```bash
355
- # Release patch version (0.4.7 → 0.4.8)
355
+ # Release patch version (0.4.1 → 0.4.2)
356
356
  npm run release:patch
357
357
 
358
- # Release minor version (0.4.7 → 0.5.0)
358
+ # Release minor version (0.4.1 → 0.5.0)
359
359
  npm run release:minor
360
360
 
361
- # Release major version (0.4.7 → 1.0.0)
361
+ # Release major version (0.4.1 → 1.0.0)
362
362
  npm run release:major
363
363
  ```
364
364
 
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.4.24",
5
+ "version": "0.4.25",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -42,10 +42,9 @@
42
42
  "postinstall": "node dist/scripts/postinstall.js",
43
43
  "preuninstall": "node dist/scripts/preuninstall.js",
44
44
  "prepublishOnly": "npm run build",
45
- "release:ship": "npm publish --access public && git add -A && git commit -m \"chore(release): v$(node -p \\\"require('./package.json').version\\\")\" && git tag -a \"v$(node -p \\\"require('./package.json').version\\\")\" -m \"v$(node -p \\\"require('./package.json').version\\\")\" && git push --follow-tags && gh release create \"v$(node -p \\\"require('./package.json').version\\\")\" --title \"v$(node -p \\\"require('./package.json').version\\\")\" --notes \"Release v$(node -p \\\"require('./package.json').version\\\")\" --latest",
46
- "release:patch": "npm run build && npm version patch && npm run release:ship",
47
- "release:minor": "npm run build && npm version minor && npm run release:ship",
48
- "release:major": "npm run build && npm version major && npm run release:ship",
45
+ "release:patch": "npm run build && npm version patch && git push --follow-tags && npm publish --access public",
46
+ "release:minor": "npm run build && npm version minor && git push --follow-tags && npm publish --access public",
47
+ "release:major": "npm run build && npm version major && git push --follow-tags && npm publish --access public",
49
48
  "dev:link": "npm run build && npm unlink opencode-orchestrator || shx echo 'Not linked' && shx rm -rf $(npm root -g)/opencode-orchestrator && npm link && echo 'SUCCESS: Re-linked. Restart OpenCode.'",
50
49
  "dev:unlink": "npm unlink opencode-orchestrator || shx echo 'Not linked' && shx rm -rf $(npm root -g)/opencode-orchestrator && echo 'SUCCESS: Unlinked and Cleaned'",
51
50
  "dev:status": "echo '=== Global Link Status ===' && shx ls -l $(npm root -g)/opencode-orchestrator || echo 'Not linked'",