omnish 1.4.2 → 1.5.1

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,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.1] - 2026-05-23
11
+
12
+ ### Added
13
+
14
+ - **Direct file `/dl`:** URLs whose path ends with a known file extension (`.pdf`, `.zip`, images, audio, office docs, etc.) download over HTTP with streaming `fetch` — no yt-dlp/ffmpeg required. Extensionless streaming pages (e.g. YouTube) still use yt-dlp. Lone URLs with `mediaUrlAutoDl` pick the path automatically inside `/dl`.
15
+
16
+ [1.5.1]: https://github.com/labKnowledge/omnish/compare/v1.5.0...v1.5.1
17
+
18
+ ## [1.5.0] - 2026-05-22
19
+
20
+ ### Added
21
+
22
+ - **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).
23
+ - **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).
24
+
25
+ ### Changed
26
+
27
+ - **`/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).
28
+
29
+ [1.5.0]: https://github.com/labKnowledge/omnish/compare/v1.4.2...v1.5.0
30
+
10
31
  ## [1.4.2] - 2026-05-19
11
32
 
12
33
  ### Fixed
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) |
@@ -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,15 @@
55
56
  "watchEnabled": false,
56
57
  "watchDebounceMs": 2000,
57
58
  "watchMaxEventsPerMinute": 30,
58
- "watchAutoRestore": true
59
+ "watchAutoRestore": true,
60
+ "mediaSendFiles": true,
61
+ "mediaUrlAutoDl": false,
62
+ "mediaInstallFromChat": false,
63
+ "mediaOutputDir": "",
64
+ "mediaMaxBytes": 0,
65
+ "mediaWhisperModel": "small",
66
+ "progressUpdates": true,
67
+ "pullYtDlpPath": "",
68
+ "pullFfmpegPath": "",
69
+ "pullWhisperPath": ""
59
70
  }