opencode-orchestrator 0.1.20 â 0.1.22
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 +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -39,6 +39,8 @@ A 6-agent collaborative system that turns any LLM into a reliable coding team.
|
|
|
39
39
|
- **ðĨ 6-Agent Team** â Specialized roles working together
|
|
40
40
|
- **ðĄïļ Resilient Execution** â Never stops on errors. Pivots strategy (Plan/Search) until success.
|
|
41
41
|
- **⥠Full Autonomy** â `/auto` is all you need. Relentless execution until 100% complete.
|
|
42
|
+
- **ðïļ Rust-Powered Core** â Critical logic written in Rust for **peak performance** and **memory efficiency**.
|
|
43
|
+
- **ðŠķ Thin TS Wrapper** â Minimal JavaScript overhead. The heavy lifting happens in the native binary.
|
|
42
44
|
|
|
43
45
|
---
|
|
44
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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",
|
|
58
58
|
"postinstall": "node dist/scripts/postinstall.js 2>/dev/null || true"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|