omo-suites 1.16.0 → 1.17.0
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/CHANGELOG.md +26 -2
- package/dist/cli/omocs.js +4934 -35224
- package/dist/plugin.js +1081 -13353
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,31 @@
|
|
|
1
1
|
---
|
|
2
2
|
# OMO Suites Changelog
|
|
3
3
|
|
|
4
|
-
## [1.
|
|
4
|
+
## [1.17.0] — 2026-04-07
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
- **Version correction** — Fixed version mismatch (npm published v1.8.4, CHANGELOG had v1.16.0). Reset to proper semver v1.9.0.
|
|
8
|
+
- **Updated major dependencies:**
|
|
9
|
+
- `@opencode-ai/plugin` → latest
|
|
10
|
+
- `commander` → latest (14.x)
|
|
11
|
+
- `inquirer` → latest (13.x)
|
|
12
|
+
- `better-sqlite3` → latest (12.x)
|
|
13
|
+
- `typescript` → latest (5.x/6.x)
|
|
14
|
+
- `@types/node` → latest
|
|
15
|
+
- `ora` → latest (9.x)
|
|
16
|
+
- **Removed `@types/bun`** dev dependency — project uses Node.js, not Bun.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- **tsconfig.json** — Changed `"types": ["bun"]` to `"types": ["node"]` for proper Node.js type resolution.
|
|
20
|
+
- Fixed any breaking changes from major dependency bumps.
|
|
21
|
+
|
|
22
|
+
## [1.8.4] — 2026-04-03
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- **`omocs key set <apikey>`** — Set 1mr.tech reseller API key from command line (no wizard). Validates against API, encrypts and saves to opencode.json, prints token balance.
|
|
26
|
+
- **`omocs key status`** — Check current 1mr.tech token balance from saved config.
|
|
27
|
+
|
|
28
|
+
## [1.8.0] - 2026-03-31
|
|
5
29
|
### Added
|
|
6
30
|
- Shell Completion: updated `omocs completion` with all 34 CLI commands for bash, zsh, and fish.
|
|
7
31
|
- CI/CD: GitHub Actions workflows for continuous integration (`ci.yml`) and automated npm releases (`release.yml`).
|
|
@@ -12,7 +36,7 @@
|
|
|
12
36
|
- Test Fix: corrected password mismatch in `crypto.test.ts` encrypt/decrypt test.
|
|
13
37
|
- All 221 tests now pass (16 test files, 0 failures).
|
|
14
38
|
|
|
15
|
-
## [1.
|
|
39
|
+
## [1.7.0] - 2026-03-28
|
|
16
40
|
### Added
|
|
17
41
|
- Diagnostics: `omocs doctor` and `omocs self-test` for system health checks and core integration validation.
|
|
18
42
|
- Configuration Management: strict config validation (`omocs config validate`), plus `import`/`export` for profiles.
|