omo-suites 1.12.0 → 1.13.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 +12 -0
- package/README.md +8 -0
- package/dist/cli/omocs.js +1734 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.13.0] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- `omocs session list|search|show|diff` — browse, search, and inspect OpenCode sessions
|
|
12
|
+
- `omocs worktree create|list|remove|prune` — git worktree management for task isolation
|
|
13
|
+
- `omocs squad launch|status|kill|clean` — launch and manage parallel OpenCode agents via tmux
|
|
14
|
+
- `omocs template save|load|list|delete|export` — save, load, and share config templates
|
|
15
|
+
- `omocs fallback show|add|remove` — view and edit model fallback chains
|
|
16
|
+
- `omocs watch start|generate` — auto-regenerate AGENTS.md on project structure changes
|
|
17
|
+
- `omocs marketplace search|install|uninstall|installed|publish` — community plugin registry
|
|
18
|
+
- All 7 commands close feature gaps identified in competitor analysis (Claude Squad, ccmanager, agent-session-manager, nca)
|
|
19
|
+
|
|
8
20
|
## [1.12.0] - 2026-03-26
|
|
9
21
|
|
|
10
22
|
### 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.**
|