omo-suites 1.7.3 → 1.7.5

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 CHANGED
@@ -5,6 +5,16 @@ 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.7.5] - 2026-03-07
9
+
10
+ ### Added
11
+ - `omo` command alias — both `omo` and `omocs` now work
12
+
13
+ ## [1.7.4] - 2026-03-07
14
+
15
+ ### Fixed
16
+ - Sidebar width increased from 14 to 18 chars — Launchboard text no longer breaks box drawing
17
+
8
18
  ## [1.7.3] - 2026-03-07
9
19
 
10
20
  ### Fixed
package/dist/cli/omocs.js CHANGED
@@ -640,7 +640,7 @@ function renderScreen(ctx) {
640
640
  `));
641
641
  }
642
642
  function renderFull(ctx, cols, rows, output) {
643
- const menuWidth = 14;
643
+ const menuWidth = 18;
644
644
  const contentWidth = cols - menuWidth - 3;
645
645
  const totalWidth = cols;
646
646
  const commandBarHeight = 2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omo-suites",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "description": "OMO Suites — OpenCode plugin + CLI toolkit. Multi-model orchestration, profiles, agent routing, MCP/LSP management.",
5
5
  "type": "module",
6
6
  "main": "dist/plugin.js",
@@ -10,7 +10,8 @@
10
10
  }
11
11
  },
12
12
  "bin": {
13
- "omocs": "dist/cli/omocs.js"
13
+ "omocs": "dist/cli/omocs.js",
14
+ "omo": "dist/cli/omocs.js"
14
15
  },
15
16
  "files": [
16
17
  "dist/",