opencode-orchestrator 0.1.17 → 0.1.20

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 +5 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -6,8 +6,8 @@
6
6
 
7
7
  [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
8
8
  [![npm](https://img.shields.io/npm/v/opencode-orchestrator.svg)](https://www.npmjs.com/package/opencode-orchestrator)
9
+ [![npm downloads](https://img.shields.io/npm/dt/opencode-orchestrator.svg)](https://www.npmjs.com/package/opencode-orchestrator)
9
10
  [![OpenCode Plugin](https://img.shields.io/badge/OpenCode-Plugin-purple.svg)](https://opencode.ai)
10
-
11
11
  </div>
12
12
 
13
13
  ---
@@ -27,7 +27,7 @@ A 6-agent collaborative system that turns any LLM into a reliable coding team.
27
27
  | One big prompt → Hope it works | Atomic tasks → Verified every step |
28
28
  | Expensive model required | Any model works |
29
29
  | Errors compound silently | Self-correcting loop |
30
- | Unpredictable results | Consistent quality |
30
+ | Unpredictable results | **Relentless execution until success** |
31
31
 
32
32
  ---
33
33
 
@@ -37,8 +37,8 @@ A 6-agent collaborative system that turns any LLM into a reliable coding team.
37
37
  - **🧠 Micro-Task Architecture** — Atomic task decomposition for reliability
38
38
  - **🔄 Self-Correcting Loop** — Every change reviewed, errors auto-fixed
39
39
  - **👥 6-Agent Team** — Specialized roles working together
40
- - **🛡️ Circuit Breaker** — Stops after 3 same errors, prevents infinite loops
41
- - **⚡ Full Autonomy** — `/auto` command handles everything
40
+ - **🛡️ Resilient Execution** — Never stops on errors. Pivots strategy (Plan/Search) until success.
41
+ - **⚡ Full Autonomy** — `/auto` is all you need. Relentless execution until 100% complete.
42
42
 
43
43
  ---
44
44
 
@@ -59,7 +59,7 @@ User Request
59
59
  │ Search → Code → Review → Fix │
60
60
  │ ↑ │ │
61
61
  │ └──────────────────────┘ │
62
- │ (until PASS)
62
+ │ (Never gives up)
63
63
  └──────────────────────────────────────────┘
64
64
 
65
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-orchestrator",
3
- "version": "0.1.17",
3
+ "version": "0.1.20",
4
4
  "description": "6-Agent collaborative architecture for OpenCode - Make any model reliable",
5
5
  "author": "agnusdei1207",
6
6
  "license": "MIT",
@@ -54,7 +54,7 @@
54
54
  "release:patch": "bun run build:full && bun run test && bun run version:patch && bun run publish:npm && bun run release:git",
55
55
  "release:minor": "bun run build:full && bun run test && bun run version:minor && bun run publish:npm && bun run release:git",
56
56
  "release:major": "bun run build:full && bun run test && bun run version:major && bun run publish:npm && bun run release:git",
57
- "release:git": "git add -A && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\" && git push && git push --tags",
57
+ "release:git": "git add -A && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\" && git push && git push --tags && gh release create \"v$(node -p \"require('./package.json').version\")\" bin/orchestrator --title \"v$(node -p \"require('./package.json').version\")\" --generate-notes",
58
58
  "postinstall": "node dist/scripts/postinstall.js 2>/dev/null || true"
59
59
  },
60
60
  "dependencies": {