omnish 1.1.6 → 1.2.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 +14 -1
- package/README.md +6 -2
- package/dist/index.js +163 -152
- package/dist/ui/assets/index-Ch9eDDKp.css +1 -0
- package/dist/ui/assets/index-IJr_OSYs.js +18 -0
- package/dist/ui/index.html +14 -0
- package/dist/ui/media/logo-Icon.png +0 -0
- package/dist/ui/media/omnish_workflow_diagram_web.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,20 @@ All notable changes to this project are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [1.
|
|
8
|
+
## [1.2.0] - 2026-05-05
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Browser setup UI**: local web UI for configuration and WhatsApp pairing while **`omnish run`** is active (see [docs/guides/ui.md](docs/guides/ui.md)).
|
|
13
|
+
- **Experimental MCP IDE integration**: [`contrib/mcp-spike`](contrib/mcp-spike) contains a Model Context Protocol server spike for IDE workflows.
|
|
14
|
+
- **Documentation**: guides for [system agents and run](docs/guides/system-agents-and-run.md), UI, [vision](docs/vision.md), and updates across architecture, sessions, background jobs, and the user guide.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **WhatsApp chat formatting**: consistent list markers and clearer help text for commands and recipes.
|
|
19
|
+
- **Gateway / pairing**: login and pairing flow updates to support the setup UI and WA link bridge.
|
|
20
|
+
|
|
21
|
+
[1.2.0]: https://github.com/eligapris/omnish/compare/v1.1.7...v1.2.0
|
|
9
22
|
|
|
10
23
|
## [1.1.5] - 2026-05-05
|
|
11
24
|
|
package/README.md
CHANGED
|
@@ -133,8 +133,8 @@ Each chat can run **several named app sessions** (default up to **5** per peer,
|
|
|
133
133
|
2. Starts with your sync prefix (default `!`) → if the rest is a **single shortcut name**, expand it once and handle the result; otherwise one-shot shell in session cwd.
|
|
134
134
|
3. Starts with `/` → built-in slash commands (`/shortcut`, `/apps`, `/bg`, …); if the message is a **single `/name`** token and a shortcut exists, expand once; otherwise unknown `/…` shows help.
|
|
135
135
|
4. Starts with `>` → `>name text` shorthand = `/apps send name text` (newline appended).
|
|
136
|
-
5. Else, if
|
|
137
|
-
6. Else, if
|
|
136
|
+
5. Else, if a session is **attached** and **running** → forward line to that app session (no reply; output streams back).
|
|
137
|
+
6. Else, if **free shell mode** is on → plain text runs as a sync shell command.
|
|
138
138
|
7. Else → short help.
|
|
139
139
|
|
|
140
140
|
Output is **debounced** (`appsFlushMs`, default 300 ms), **throttled** (`appsMinIntervalMs`, default 800 ms between sends), **ANSI-stripped** unless `/apps raw name on`, and **chunked** (`appsMaxWaChars` / `appsMaxFlushBytes`). When more than one session is active for the peer, lines are prefixed with **`[name]`**. Logs are always appended under `<data-dir>/apps/<peer-hash-8>/<name>.log` (peer hash = **SHA-1** prefix of the peer key).
|
|
@@ -200,14 +200,18 @@ Index and curated paths: **[docs/README.md](docs/README.md)**.
|
|
|
200
200
|
|
|
201
201
|
| Topic | Doc |
|
|
202
202
|
|-------|-----|
|
|
203
|
+
| Vision — local first, product direction | [docs/vision.md](docs/vision.md) |
|
|
203
204
|
| Interactive terminal (`omnish i`, `/sendto`) | [docs/guides/interactive-cli.md](docs/guides/interactive-cli.md) |
|
|
204
205
|
| Configuration (`config.json`) | [docs/guides/configuration.md](docs/guides/configuration.md) |
|
|
206
|
+
| Browser setup UI (`omnish ui`) | [docs/guides/ui.md](docs/guides/ui.md) |
|
|
205
207
|
| Cluster roster + `/config` from chat | [docs/features/cluster-and-chat-config.md](docs/features/cluster-and-chat-config.md) |
|
|
206
208
|
| Interactive sessions (`/apps`) | [docs/features/sessions.md](docs/features/sessions.md) |
|
|
207
209
|
| Background jobs | [docs/features/background-jobs.md](docs/features/background-jobs.md) |
|
|
208
210
|
| Message routing | [docs/architecture/routing.md](docs/architecture/routing.md) |
|
|
209
211
|
| Security | [docs/architecture/security.md](docs/architecture/security.md) |
|
|
210
212
|
| User guide | [docs/guides/user-guide.md](docs/guides/user-guide.md) |
|
|
213
|
+
| System agents + `/run` | [docs/guides/system-agents-and-run.md](docs/guides/system-agents-and-run.md) |
|
|
214
|
+
| MCP IDE spike (experimental) | [contrib/mcp-spike/README.md](contrib/mcp-spike/README.md) |
|
|
211
215
|
| Telegram | [docs/telegram-integration-notes.md](docs/telegram-integration-notes.md) |
|
|
212
216
|
| Send/receive files | [docs/files-send-receive.md](docs/files-send-receive.md) |
|
|
213
217
|
| Troubleshooting | [docs/advanced/troubleshooting.md](docs/advanced/troubleshooting.md) |
|