omnish 1.4.1 → 1.5.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 +21 -0
- package/README.md +1 -0
- package/config.example.json +13 -1
- package/dist/index.js +283 -234
- package/package.json +14 -21
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.5.0] - 2026-05-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Media pull (`/pull`, `omnish pull`):** download video, audio, subtitles, or Whisper transcripts from URLs via yt-dlp and ffmpeg; optional cross-platform install into `~/.omnish/bin` (`omnish pull install`, `/pull doctor`). Config: `pullEnabled`, `pullUrlAutoDetect`, `pullAutoSend`, and related keys. See [docs/features/media-pull.md](docs/features/media-pull.md).
|
|
15
|
+
- **Documentation search from chat:** `/docs search <topic>`, numbered results, `/docs <n>` excerpts with GitHub links, `/docs follow <n>` to run related slash help; `/help search` alias; `omnish docs` on the host CLI. Offline index built from `docs/guides`, `docs/features`, `docs/architecture`, and `docs/advanced`. See [docs/features/docs-search-from-chat.md](docs/features/docs-search-from-chat.md).
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **`/run` detached by default:** recipe launches start a PTY session without chat focus (output muted until `/apps unmute` or attach). Use `/run <name> --attach|-a <task…>` or set `recipesRunAttach: true` for the previous attach-on-start behavior. **`/apps start`** is unchanged (still attaches).
|
|
20
|
+
|
|
21
|
+
[1.5.0]: https://github.com/labKnowledge/omnish/compare/v1.4.2...v1.5.0
|
|
22
|
+
|
|
23
|
+
## [1.4.2] - 2026-05-19
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- **Platform `/sendto` broadcast:** `omnish i` destinations `wa`, `tg`, and `*` now load allowlists from the platform (`GET /v1/me`) when platform credentials are set, instead of only local `config.json`.
|
|
28
|
+
|
|
29
|
+
[1.4.2]: https://github.com/labKnowledge/omnish/compare/v1.4.1...v1.4.2
|
|
30
|
+
|
|
10
31
|
## [1.4.1] - 2026-05-19
|
|
11
32
|
|
|
12
33
|
### Added
|
package/README.md
CHANGED
|
@@ -255,6 +255,7 @@ Index and curated paths: **[docs/README.md](docs/README.md)**.
|
|
|
255
255
|
| Message routing | [docs/architecture/routing.md](docs/architecture/routing.md) |
|
|
256
256
|
| Security | [docs/architecture/security.md](docs/architecture/security.md) |
|
|
257
257
|
| User guide | [docs/guides/user-guide.md](docs/guides/user-guide.md) |
|
|
258
|
+
| Documentation search (`/docs`, `omnish docs`) | [docs/features/docs-search-from-chat.md](docs/features/docs-search-from-chat.md) |
|
|
258
259
|
| System agents + `/run` | [docs/guides/system-agents-and-run.md](docs/guides/system-agents-and-run.md) |
|
|
259
260
|
| MCP IDE spike (experimental) | [contrib/mcp-spike/README.md](contrib/mcp-spike/README.md) |
|
|
260
261
|
| Telegram | [docs/telegram-integration-notes.md](docs/telegram-integration-notes.md) |
|
package/config.example.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"recipesAllowDangerousBuiltins": false,
|
|
32
32
|
"recipesMaxTaskChars": 100000,
|
|
33
33
|
"recipesMacroDefaultCommand": "claude -p \"$OMNISH_TASK\"",
|
|
34
|
+
"recipesRunAttach": false,
|
|
34
35
|
"clusterEnabled": false,
|
|
35
36
|
"clusterLabel": "",
|
|
36
37
|
"clusterRole": "secondary",
|
|
@@ -55,5 +56,16 @@
|
|
|
55
56
|
"watchEnabled": false,
|
|
56
57
|
"watchDebounceMs": 2000,
|
|
57
58
|
"watchMaxEventsPerMinute": 30,
|
|
58
|
-
"watchAutoRestore": true
|
|
59
|
+
"watchAutoRestore": true,
|
|
60
|
+
"pullEnabled": false,
|
|
61
|
+
"pullInstallFromChat": false,
|
|
62
|
+
"pullUrlAutoDetect": false,
|
|
63
|
+
"pullDefaultMode": "audio",
|
|
64
|
+
"pullOutputDir": "",
|
|
65
|
+
"pullMaxBytes": 0,
|
|
66
|
+
"pullAutoSend": false,
|
|
67
|
+
"pullWhisperModel": "small",
|
|
68
|
+
"pullYtDlpPath": "",
|
|
69
|
+
"pullFfmpegPath": "",
|
|
70
|
+
"pullWhisperPath": ""
|
|
59
71
|
}
|