omnish 1.6.5 → 1.6.6

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
@@ -7,24 +7,68 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.6.6] - 2026-05-30
11
+
12
+ ### Fixed
13
+
14
+ - **macOS npm installs:** auto-fix `node-pty` `spawn-helper` execute permission at install (`postinstall`) and before the first PTY spawn so `!commands` and interactive sessions work after `npm install -g omnish`.
15
+
16
+ ### Changed
17
+
18
+ - Pre-declare npm `allowScripts` for native dependencies (`node-pty`, `better-sqlite3`, Baileys/sharp/protobufjs, `@parcel/watcher`) to reduce npm 11+ install warnings.
19
+
20
+ [1.6.6]: https://github.com/labKnowledge/omnish/compare/v1.6.5...v1.6.6
21
+
22
+ ## [1.6.5] - 2026-05-30
23
+
10
24
  ### Added
11
25
 
26
+ - **Chat agent daemon:** optional background agent with `chatAgentEnabled`, wrapper script, and `agent-notify` env wiring. See [docs/features/chat-agent-daemon.md](docs/features/chat-agent-daemon.md).
27
+ - **Job board coordinator (default on):** clearer status handoffs, end-of-tick supervisor review, primary agent via `/board agent`, richer list/tick feedback, live-status and file delivery via `omnish i -c sendto`, and competency docs.
12
28
  - **Dev tooling:** Prettier with root [`.prettierrc.json`](.prettierrc.json); run `pnpm format` or `pnpm format:check` before submitting PRs (CI enforces format check).
13
29
 
14
30
  ### Changed
15
31
 
16
32
  - **Documentation search (chat):** `/docs search` → **`/s q`** (shorthand **`/s`**, full form **`/search`**). List, show, and follow moved to `/s` / `/search`. Legacy **`/docs`**, **`/help search`**, and **`omnish docs`** still work. Host CLI: **`omnish search q`**.
33
+ - **`omnish start`:** start the gateway in the background by default (pairs with **`omnish stop`**). Foreground: **`omnish start -f`**. **`omnish run`** stays foreground unless **`-d`** is passed.
34
+ - **Board notifications:** easier coordinator/employee notify paths via board communication helpers.
35
+
36
+ ### Fixed
37
+
38
+ - **Board:** notification and competency wiring for coordinator workforce flows.
39
+
40
+ [1.6.5]: https://github.com/labKnowledge/omnish/compare/v1.6.4...v1.6.5
41
+
42
+ ## [1.6.4] - 2026-05-24
17
43
 
18
44
  ### Added
19
45
 
20
- - **`omnish start`:** start the gateway in the background by default (pairs with **`omnish stop`**). Foreground: **`omnish start -f`**. **`omnish run`** stays foreground unless **`-d`** is passed.
46
+ - **Digital employees / job board:** `/board` chat commands, employee harness, coordinator agent, competencies, example employee pack under `contrib/employee-pack-example/`, and guides ([docs/guides/digital-employees.md](docs/guides/digital-employees.md), [docs/features/job-board.md](docs/features/job-board.md)).
47
+ - **Shortcuts with input:** slash shortcuts can prompt for missing arguments interactively.
48
+ - **Whisper / transcribe:** transformers-backed transcribe path, config keys, and improved `/tr` / pull transcribe tooling.
21
49
 
22
- ## [1.6.2] - 2026-05-23
50
+ ### Fixed
51
+
52
+ - **Media `/edit` and transcribe:** parsing, tests, and reliability fixes for edit and transcription flows.
53
+
54
+ [1.6.4]: https://github.com/labKnowledge/omnish/compare/v1.6.3...v1.6.4
55
+
56
+ ## [1.6.3] - 2026-05-23
23
57
 
24
58
  ### Security
25
59
 
26
60
  - **Baileys:** upgrade `@whiskeysockets/baileys` from `7.0.0-rc.9` to `7.0.0-rc13` (patches CVE-2026-48063 — message spoofing / app-state corruption).
27
61
 
62
+ First **1.6.x** release on [npm](https://www.npmjs.com/package/omnish); registry skipped `1.6.0`–`1.6.2` (those versions exist only in this changelog / git history).
63
+
64
+ [1.6.3]: https://github.com/labKnowledge/omnish/compare/v1.6.1...v1.6.3
65
+
66
+ ## [1.6.2] - 2026-05-23
67
+
68
+ ### Security
69
+
70
+ - **Baileys:** same upgrade as [1.6.3] (CVE-2026-48063). Shipped to npm as **1.6.3** only.
71
+
28
72
  [1.6.2]: https://github.com/labKnowledge/omnish/compare/v1.6.1...v1.6.2
29
73
 
30
74
  ## [1.6.1] - 2026-05-23
package/README.md CHANGED
@@ -112,6 +112,10 @@ omnish run
112
112
 
113
113
  **Single phone:** omnish runs on a PC or server; you link it like WhatsApp Web (one QR scan on your phone). See [Quick start — One phone with WhatsApp](docs/guides/quick-start.md#one-phone-with-whatsapp).
114
114
 
115
+ **npm 11+ install warnings:** You may see advisory `allow-scripts` notices for native dependencies (`node-pty`, `better-sqlite3`, etc.). Install still succeeds; omnish pre-declares these in `allowScripts`. The `prebuild-install` deprecation warning comes from upstream native modules and is harmless.
116
+
117
+ **macOS:** `node-pty` ships `spawn-helper` without the execute bit in its npm tarball ([upstream issue](https://github.com/microsoft/node-pty/issues/850)). omnish fixes this at install (`postinstall`) and before the first shell command. If `!commands` fail with `posix_spawnp failed` on an older install, update omnish or run `chmod +x "$(npm root -g)/omnish/node_modules/node-pty/prebuilds/darwin-"*"/spawn-helper"`.
118
+
115
119
  Native modules (for example **`node-pty`**) may compile on install. If postinstall scripts were skipped, enable them for this package and reinstall.
116
120
 
117
121
  ## Quick setup (from source)