@oeronteros-1/opencode-orchestra 1.0.12 → 1.0.14

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.
@@ -1,84 +0,0 @@
1
- # OpenCode Orchestra 1.0.0
2
-
3
- OpenCode Orchestra 1.0.0 is the first stable release of the model-routing and specialist-agent orchestration plugin for OpenCode. It combines automatic model discovery, profile-aware worker planning, budget controls, local diagnostics, usage telemetry, and a token-protected dashboard in one installable package.
4
-
5
- ## Highlights
6
-
7
- ### Stable orchestration contract
8
-
9
- - One public `orch-lead`, a focused set of hidden specialist workers, and `orch-judge` for arbitration.
10
- - Dependency-aware task plans and profile classification for architecture, debugging, UI, research, review, security, performance, migration, and operations work.
11
- - Four distinct budget modes: `eco`, `balanced`, `quality`, and the maximum-throughput `ebobo` mode.
12
- - Automatic discovery of models from connected OpenCode providers, with manual pools and per-agent overrides always taking precedence.
13
-
14
- ### Cost-aware routing
15
-
16
- - Built-in offline model-price snapshot.
17
- - Optional self-hosted price endpoint and periodic refresh.
18
- - Explicit `priceInput` and `priceOutput` overrides for manual model entries.
19
- - Informational pre-run estimates and configurable spend warnings in `orchestra_route`.
20
- - Ordered cheaper fallback candidates exposed as resolver metadata for execution layers that implement retries.
21
-
22
- > Orchestra does not intercept OpenCode provider requests and does not automatically retry failed provider calls.
23
-
24
- ### Local dashboard and telemetry
25
-
26
- - Token, cost, model, agent, activity, projection, anomaly, and MCP status views.
27
- - Authenticated CSV/JSON report export.
28
- - Atomic, schema-validated configuration updates with backups and JSONC comment preservation.
29
- - Prompt and reply storage is disabled by default and can only be enabled explicitly with `telemetry.storeTexts: true`.
30
-
31
- ### Operations and diagnostics
32
-
33
- - `doctor` checks OpenCode configuration, Orchestra configuration, plugin registration, MCP entries, and local dependency paths.
34
- - `update` checks npm for a newer release.
35
- - `completion zsh|bash|pwsh` generates shell completions.
36
- - `/plugin-status` reports the loaded plugin version, budget, model strategy, and companion MCP status.
37
-
38
- ## Install or upgrade
39
-
40
- ```bash
41
- bunx @oeronteros-1/opencode-orchestra@latest install
42
- ```
43
-
44
- The installer is idempotent, preserves existing plugin/MCP configuration, creates backups before changes, and updates bare or pinned Orchestra plugin entries to `@latest`.
45
-
46
- To inspect proposed configuration changes without writing files:
47
-
48
- ```bash
49
- bunx @oeronteros-1/opencode-orchestra@latest install --dry-run
50
- ```
51
-
52
- After installation, restart OpenCode and run:
53
-
54
- ```text
55
- /plugin-status
56
- /orchestra-status
57
- ```
58
-
59
- ## Requirements
60
-
61
- - OpenCode with plugin support compatible with `@opencode-ai/plugin >= 1.18.18`.
62
- - Bun 1.2+ for the recommended installer command.
63
- - Node.js 22+ for Node-based development and runtime tooling.
64
-
65
- ## Upgrade notes
66
-
67
- - No configuration migration is required from 0.5.x.
68
- - Existing OpenCode configuration, plugin options, and MCP entries are preserved.
69
- - Use `--force` only to replace matching MCP entries with Orchestra defaults.
70
- - Text telemetry remains opt-in and is disabled by default.
71
- - The `pricing` section is now correctly represented in the published JSON Schema.
72
-
73
- ## Validation
74
-
75
- This release was validated with:
76
-
77
- - TypeScript checks for plugin and dashboard.
78
- - 67 automated tests covering routing, pricing, telemetry, diagnostics, dashboard, installer, and integration paths.
79
- - Production builds for the plugin and dashboard.
80
- - npm package dry-run inspection.
81
-
82
- ## Full changelog
83
-
84
- See [CHANGELOG.md](https://github.com/Oeronteros/opencode-orchestra/blob/v1.0.0/CHANGELOG.md).
@@ -1,21 +0,0 @@
1
- # OpenCode Orchestra 1.0.7
2
-
3
- Patch release focused on robust OpenCode integration and cross-runtime setup.
4
-
5
- ## Highlights
6
-
7
- - Added a stable `opencode-orchestra` plugin module ID while retaining compatible named server exports.
8
- - Added explicit package entrypoint and TypeScript export metadata.
9
- - Made the packaged CLI executable with Node.js while preserving Bun compatibility.
10
- - Improved config discovery precedence: global config, preferred project JSONC config, then plugin options.
11
- - Added a timeout and graceful fallback for connected-model discovery.
12
- - Made optional Codebase Memory and MemoryGraph provisioning best-effort so failures do not block plugin setup.
13
- - Removed unconditional initializer stderr output.
14
- - Added regression coverage for entrypoint identity and config discovery.
15
-
16
- ## Validation
17
-
18
- - TypeScript typecheck passed.
19
- - 70 tests passed.
20
- - Dashboard and plugin production builds passed.
21
- - `node dist/cli.js --help` smoke test passed.