omo-suites 1.10.0 → 1.12.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 +27 -0
- package/dist/cli/omocs.js +1335 -65
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ All notable changes to OMO Suites will be documented in this file.
|
|
|
5
5
|
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.12.0] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- `omocs compact config` — scan and clean stale config entries (duplicate plugins, empty MCP servers, stale provider keys)
|
|
12
|
+
- `omocs compact memory` — trim old workspace memory notes with archiving (--keep, --older-than)
|
|
13
|
+
- `omocs compact index` — clean up orphaned workspace indexes for non-existent workspaces
|
|
14
|
+
- `omocs compact stats` — trim old stats data with archiving (--keep-days)
|
|
15
|
+
- `omocs compact all` — run all compact operations with combined summary
|
|
16
|
+
- All compact subcommands default to dry-run; use `--fix` to apply changes
|
|
17
|
+
- Automatic backup before any destructive operation
|
|
18
|
+
|
|
19
|
+
## [1.11.0] - 2026-03-25
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- `omocs memory list|add|search|remove` — Workspace Memory Notes
|
|
23
|
+
- Workspace-scoped persistent notes stored in `~/.omocs/memory/`
|
|
24
|
+
- Supports fuzzy search and global notes via `--global`
|
|
25
|
+
- `omocs completion <shell>` — Shell Completions
|
|
26
|
+
- Generates completion scripts for bash, zsh, and fish
|
|
27
|
+
- Includes subcommands and flags
|
|
28
|
+
- Enhanced `omocs doctor`
|
|
29
|
+
- Added checks for Provider endpoint ping, Config file validity, oh-my-opencode installation, Skills directory, and Disk space
|
|
30
|
+
- `omocs index build|show|clean` — Workspace Index
|
|
31
|
+
- Scans workspace to build a cacheable JSON index
|
|
32
|
+
- Detects tech stack, entry points, and key files
|
|
33
|
+
- Respects `.gitignore` and skips noisy directories
|
|
34
|
+
|
|
8
35
|
## [1.10.0] - 2026-03-25
|
|
9
36
|
|
|
10
37
|
### Added
|