omnish 2.1.2 → 2.1.4
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 -0
- package/README.md +6 -0
- package/dist/downloads/omnish-claude/install.sh +0 -0
- package/dist/downloads/omnish-claude/uninstall.sh +0 -0
- package/dist/downloads/omnish-claude.tar.gz +0 -0
- package/dist/downloads/omnish-cursor/install.sh +0 -0
- package/dist/downloads/omnish-cursor/uninstall.sh +0 -0
- package/dist/downloads/omnish-cursor.tar.gz +0 -0
- package/dist/index.js +331 -326
- package/dist/omnish-claude/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-claude/install.sh +0 -0
- package/dist/omnish-claude/scripts/doctor.sh +0 -0
- package/dist/omnish-claude/uninstall.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-session-start.sh +0 -0
- package/dist/omnish-cursor/install.sh +0 -0
- package/dist/omnish-cursor/scripts/doctor.sh +0 -0
- package/dist/omnish-cursor/uninstall.sh +0 -0
- package/package.json +24 -31
- package/scripts/check-native-modules.mjs +11 -3
- package/scripts/check-node-version.mjs +19 -0
- package/scripts/node-version.mjs +212 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.4] - 2026-07-11
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **`preinstall` Node version guard** with OS-specific upgrade instructions when Node is below 22.13.
|
|
15
|
+
- **Runtime CLI check** — `omnish` exits early on unsupported Node with the same guidance.
|
|
16
|
+
- **`contrib/install-omnish.sh`** — bootstrap script that tries nvm/fnm, sets Node 22 default, then runs `npm install -g omnish`.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Native module postinstall errors** now explain Node ABI mismatches and how to reinstall/rebuild.
|
|
21
|
+
- **Docs** — README, quick-start, and troubleshooting cover Node 22.13+ requirement and guided install.
|
|
22
|
+
|
|
23
|
+
## [2.1.3] - 2026-07-11
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- **Watch `sys` kind:** Linux journal/auth log adapter with topic classification (`login`, `fail`, `sudo`, `reboot`, `accounts`, `firewall`), `system-monitor` preset, and `/watch presets` / `/watch apply preset` chat commands ([docs/features/watch.md](docs/features/watch.md), [ADR-0019](docs/adr/0019-watch-sys-journal-adapter.md)).
|
|
28
|
+
- **`contrib/host-lockdown/`:** lockdown, restore, and verify scripts for inbound access hardening.
|
|
29
|
+
- **`contrib/operator-pack-eligapris/`:** cowork pack import scripts and operator profile.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Watch store and manager updates for `sys` rules; documentation and ADR index.
|
|
34
|
+
|
|
35
|
+
## [2.1.2] - 2026-06-25
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- **Omnish Chat:** file upload, collapsible multi-line input, clear chat, and look-and-feel refresh.
|
|
40
|
+
- **Omnish Chat routing:** `all` / `*` targets for messages, files, and notifications.
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- Message bubble layout and inline formatting that broke across line wraps.
|
|
45
|
+
|
|
46
|
+
## [2.1.1] - 2026-06-24
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
|
|
50
|
+
- **Omnish Chat:** command input enhancements and contextual formatting between 2.1.0 and 2.1.2 chat polish.
|
|
51
|
+
|
|
10
52
|
## [2.1.0] - 2026-06-23
|
|
11
53
|
|
|
12
54
|
### Added
|
|
@@ -22,6 +64,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
22
64
|
|
|
23
65
|
- Documentation and formatting updates across chat components and feature docs.
|
|
24
66
|
|
|
67
|
+
[2.1.4]: https://github.com/labKnowledge/omnish/compare/v2.1.3...v2.1.4
|
|
68
|
+
[2.1.3]: https://github.com/eligapris/omnish/compare/v2.1.2...v2.1.3
|
|
69
|
+
[2.1.2]: https://github.com/eligapris/omnish/compare/v2.1.1...v2.1.2
|
|
70
|
+
[2.1.1]: https://github.com/eligapris/omnish/compare/v2.1.0...v2.1.1
|
|
25
71
|
[2.1.0]: https://github.com/labKnowledge/omnish/compare/v2.0.1...v2.1.0
|
|
26
72
|
|
|
27
73
|
## [2.0.1] - 2026-06-18
|
package/README.md
CHANGED
|
@@ -109,6 +109,12 @@ Names are alphanumeric plus `_`/`-`, max 32 characters; several names are reserv
|
|
|
109
109
|
|
|
110
110
|
## Install from npm
|
|
111
111
|
|
|
112
|
+
**Requires Node.js 22.13+** (`node -v`). If install fails on version, see [Quick start — Installation](docs/guides/quick-start.md#installation) or run:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
curl -fsSL https://raw.githubusercontent.com/labKnowledge/omnish/main/contrib/install-omnish.sh | bash
|
|
116
|
+
```
|
|
117
|
+
|
|
112
118
|
```bash
|
|
113
119
|
npm install -g omnish
|
|
114
120
|
omnish link
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
Binary file
|