omo-suites 1.12.0 → 1.14.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 -0
- package/README.md +8 -0
- package/dist/cli/omocs.js +2229 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ 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.14.0] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Auto system** — automatic background checks run on every `omocs` command (non-blocking)
|
|
12
|
+
- **Auto-Doctor** — workspace health check on first run per day (missing config, AGENTS.md, .gitignore)
|
|
13
|
+
- **Auto-Index** — rebuild workspace index when file structure changes (new/renamed files detected)
|
|
14
|
+
- **Auto-Compact** — periodic cleanup of stale memory, stats, and orphaned indexes (every 7 days)
|
|
15
|
+
- **Auto-Template Suggest** — detect empty projects and suggest matching saved templates
|
|
16
|
+
- `omocs auto run` — manually trigger all auto checks
|
|
17
|
+
- `omocs auto status` — view auto check state and timings
|
|
18
|
+
- `omocs auto reset` — force re-run all checks
|
|
19
|
+
- `omocs auto suppress <warning>` — hide specific warnings
|
|
20
|
+
- Auto checks are silent unless there are warnings or fixes to report
|
|
21
|
+
|
|
22
|
+
## [1.13.0] - 2026-03-26
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- `omocs session list|search|show|diff` — browse, search, and inspect OpenCode sessions
|
|
26
|
+
- `omocs worktree create|list|remove|prune` — git worktree management for task isolation
|
|
27
|
+
- `omocs squad launch|status|kill|clean` — launch and manage parallel OpenCode agents via tmux
|
|
28
|
+
- `omocs template save|load|list|delete|export` — save, load, and share config templates
|
|
29
|
+
- `omocs fallback show|add|remove` — view and edit model fallback chains
|
|
30
|
+
- `omocs watch start|generate` — auto-regenerate AGENTS.md on project structure changes
|
|
31
|
+
- `omocs marketplace search|install|uninstall|installed|publish` — community plugin registry
|
|
32
|
+
- All 7 commands close feature gaps identified in competitor analysis (Claude Squad, ccmanager, agent-session-manager, nca)
|
|
33
|
+
|
|
8
34
|
## [1.12.0] - 2026-03-26
|
|
9
35
|
|
|
10
36
|
### Added
|
package/README.md
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝╚══════╝
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
+
<p align="center">
|
|
11
|
+
<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
|
+
<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
|
+
<a href="https://www.npmjs.com/package/omo-suites"><img src="https://img.shields.io/npm/l/omo-suites.svg" alt="License" /></a>
|
|
14
|
+
<a href="https://github.com/TheFahmi/omo-suites-installer"><img src="https://img.shields.io/github/stars/TheFahmi/omo-suites-installer.svg?style=social" alt="GitHub Stars" /></a>
|
|
15
|
+
<a href="https://www.npmjs.com/package/omo-suites"><img src="https://img.shields.io/node/v/omo-suites.svg" alt="Node Version" /></a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
10
18
|
# OMO Suites
|
|
11
19
|
|
|
12
20
|
**The open-source OpenCode power toolkit. More profiles. More tools. Zero cost.**
|