omo-suites 1.15.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 +46 -2
- package/README.md +3 -0
- package/dist/cli/omocs.js +5271 -35341
- package/dist/plugin.js +1081 -13353
- package/docs/API.md +336 -0
- package/docs/release/1.15.0.md +32 -0
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,52 @@
|
|
|
1
1
|
---
|
|
2
2
|
# OMO Suites Changelog
|
|
3
3
|
|
|
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
|
|
29
|
+
### Added
|
|
30
|
+
- Shell Completion: updated `omocs completion` with all 34 CLI commands for bash, zsh, and fish.
|
|
31
|
+
- CI/CD: GitHub Actions workflows for continuous integration (`ci.yml`) and automated npm releases (`release.yml`).
|
|
32
|
+
- API Documentation: comprehensive command reference at `docs/API.md` covering all commands, config schema, plugin API, and environment variables.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
- Test Fixes: resolved `vi.mock` hoisting issues in `auto.test.ts`, `store.test.ts`, and `telemetry.test.ts` using `vi.hoisted()`.
|
|
36
|
+
- Test Fix: corrected password mismatch in `crypto.test.ts` encrypt/decrypt test.
|
|
37
|
+
- All 221 tests now pass (16 test files, 0 failures).
|
|
38
|
+
|
|
39
|
+
## [1.7.0] - 2026-03-28
|
|
40
|
+
### Added
|
|
41
|
+
- Diagnostics: `omocs doctor` and `omocs self-test` for system health checks and core integration validation.
|
|
42
|
+
- Configuration Management: strict config validation (`omocs config validate`), plus `import`/`export` for profiles.
|
|
43
|
+
- Setup & Initialization: new setup wizard and bootstrap generator for templates (`omocs template`).
|
|
44
|
+
- Robust Operations: global `--debug` and `--verbose` flags across all commands, structured logging with auto-rotation, and retry wrappers with timeouts for network calls.
|
|
45
|
+
- Self-Update Mechanism: safe self-update flow with backup and rollback if verification fails.
|
|
46
|
+
- Plugin Architecture: plugin isolation layer.
|
|
47
|
+
- Telemetry: opt-in telemetry system.
|
|
48
|
+
- Testing & Release: Vitest foundation for unit and smoke testing, plus automated docs/release prep.
|
|
49
|
+
|
|
4
50
|
## Unreleased
|
|
5
51
|
### Added
|
|
6
|
-
- Setup Vitest foundation for unit and smoke testing
|
|
7
52
|
- Structured logging option via `src/utils/logger/index.ts` with auto rotation (`OMOCS_NO_LOGS` to disable)
|
|
8
|
-
# omocs bootstrap
|
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://github.com/TheFahmi/omo-suites-installer/actions/workflows/ci.yml)
|
|
2
|
+
|
|
1
3
|
```
|
|
2
4
|
██████╗ ███╗ ███╗ ██████╗ ███████╗██╗ ██╗██╗████████╗███████╗███████╗
|
|
3
5
|
██╔═══██╗████╗ ████║██╔═══██╗ ██╔════╝██║ ██║██║╚══██╔══╝██╔════╝██╔════╝
|
|
@@ -8,6 +10,7 @@
|
|
|
8
10
|
```
|
|
9
11
|
|
|
10
12
|
<p align="center">
|
|
13
|
+
<a href="https://github.com/TheFahmi/omo-suites-installer/actions/workflows/ci.yml"><img src="https://github.com/TheFahmi/omo-suites-installer/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
|
|
11
14
|
<a href="https://www.npmjs.com/package/omo-suites"><img src="https://img.shields.io/npm/v/omo-suites.svg" alt="NPM Version" /></a>
|
|
12
15
|
<a href="https://www.npmjs.com/package/omo-suites"><img src="https://img.shields.io/npm/dm/omo-suites.svg" alt="NPM Downloads" /></a>
|
|
13
16
|
<a href="https://www.npmjs.com/package/omo-suites"><img src="https://img.shields.io/npm/l/omo-suites.svg" alt="License" /></a>
|