opencode-orchestrator 0.4.7 → 0.4.8

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 +2 -2
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.1 → 0.4.2)
355
+ # Release patch version (0.4.7 → 0.4.8)
356
356
  npm run release:patch
357
357
 
358
- # Release minor version (0.4.1 → 0.5.0)
358
+ # Release minor version (0.4.7 → 0.5.0)
359
359
  npm run release:minor
360
360
 
361
- # Release major version (0.4.1 → 1.0.0)
361
+ # Release major version (0.4.7 → 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.7",
5
+ "version": "0.4.8",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -42,7 +42,7 @@
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",
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
46
  "release:patch": "npm run build && npm version patch && npm run release:ship",
47
47
  "release:minor": "npm run build && npm version minor && npm run release:ship",
48
48
  "release:major": "npm run build && npm version major && npm run release:ship",