omnish 1.2.3 → 1.2.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 +18 -0
- package/README.md +1 -1
- package/config.example.json +8 -1
- package/dist/index.js +189 -179
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.4] - 2026-05-11
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Named background jobs**: `/bg` accepts `-n <name>`, `--name <name>`, or `--name=<name>` before the shell command; `/log`, `/tail`, and `/kill` accept either the **8-char hex id** or the **name** (newest match wins when names collide). See [docs/features/background-jobs.md](docs/features/background-jobs.md).
|
|
15
|
+
- **Chat LLM fallback (optional)**: when enabled, plain inbound text that would get “No command matched” runs `chatLlmShellCommand` asynchronously and replies with subprocess output in the same chat (or in `omnish i` on the terminal). See [docs/features/chat-llm-fallback.md](docs/features/chat-llm-fallback.md).
|
|
16
|
+
- **`/sendto` plain text**: send a text message to a destination without attaching files (media and text modes share the same destination grammar).
|
|
17
|
+
- **`/run queue load`**: enqueue multiple recipe jobs from a JSON file (formats, limits, and examples in [docs/features/run-queue.md](docs/features/run-queue.md)).
|
|
18
|
+
|
|
19
|
+
### Documentation
|
|
20
|
+
|
|
21
|
+
- Background jobs guide, user guide, quick start, README, comprehensive docs, and agent practical guide updated for optional job names.
|
|
22
|
+
- Chat LLM fallback operator guide, configuration reference, and implementation checklist.
|
|
23
|
+
- `/sendto` and run-queue docs expanded for text sends and JSON batch loading.
|
|
24
|
+
- Added [SECURITY.md](SECURITY.md) and Dependabot configuration for dependency updates.
|
|
25
|
+
|
|
26
|
+
[1.2.4]: https://github.com/eligapris/omnish/compare/v1.2.3...v1.2.4
|
|
27
|
+
|
|
10
28
|
## [1.2.3] - 2026-05-08
|
|
11
29
|
|
|
12
30
|
### Added
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
- `omnish run` — Listen for DMs; execute commands; reply with output.
|
|
34
34
|
- **`omnish i`** — Interactive terminal with the same commands as chat (local full trust; the inbox allowlist is **not** applied). Run from any directory; session cwd starts at the current directory. Use **`/sendto <destination> <selectors> [-- caption]`** (for example `wa`, `tg`, `*`, `+E164,+E164`) to push files through a running gateway (see `omnish i --help`). Background jobs from `/bg` in the REPL are **only** that process (not the gateway’s job list).
|
|
35
35
|
- **Sync:** send `!ls` or `! ls` (prefix configurable; default `!`). Each chat has its **own working directory**; use `!cd /path` or `! cd /path` to change it (saved under the data dir, e.g. `~/.omnish/sessions.json`).
|
|
36
|
-
- **Background:**
|
|
36
|
+
- **Background:** **`/bg`** runs a long command in that chat’s cwd; optional **`-n myname`** / **`--name`** labels the job so you can use **`/log myname`**, **`/tail myname`**, **`/kill myname`** instead of the 8-char id. Then `/jobs`, `/log`, `/tail`, `/kill` as usual.
|
|
37
37
|
- **Cowork:** `/cowork` / `/cw` — scheduled or on-demand saved shell tasks, logs under `~/Cowork/…` by default. See [docs/features/cowork.md](docs/features/cowork.md).
|
|
38
38
|
- **Interactive PTY:** drive TUIs and REPLs (`cursor-agent`, `claude`, `bash`, etc.) from DMs. See [Interactive sessions](#interactive-sessions) below.
|
|
39
39
|
- **User shortcuts:** save per-chat commands under a short name (`/shortcut add myproj !cd ~/code/myproj`), then run **`!myproj`** or **`/myproj`** (bare token only) to expand once—see [User shortcuts](#user-shortcuts).
|
package/config.example.json
CHANGED
|
@@ -37,5 +37,12 @@
|
|
|
37
37
|
"updateCheckEnabled": false,
|
|
38
38
|
"updateCheckIntervalMs": 86400000,
|
|
39
39
|
"updateCheckPackageName": "omnish",
|
|
40
|
-
"updateInfoUrl": ""
|
|
40
|
+
"updateInfoUrl": "",
|
|
41
|
+
"chatLlmFallbackEnabled": false,
|
|
42
|
+
"chatLlmShellCommand": "",
|
|
43
|
+
"chatLlmTimeoutMs": 120000,
|
|
44
|
+
"chatLlmMaxInputChars": 16000,
|
|
45
|
+
"chatLlmMaxOutputChars": 24000,
|
|
46
|
+
"chatLlmNeedsTty": false,
|
|
47
|
+
"chatLlmWorkDir": ""
|
|
41
48
|
}
|