omnish 1.1.4 → 1.1.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 +16 -0
- package/config.example.json +1 -0
- package/dist/index.js +137 -136
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [1.1.4] - 2026-05-04
|
|
9
9
|
|
|
10
|
+
## [1.1.5] - 2026-05-05
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Hourly cowork scheduling**: cowork tasks can now be scheduled with hourly cadence.
|
|
15
|
+
- **Recipe macro default command**: added `recipesMacroDefaultCommand` config support and improved recipe command handling.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **Cowork output formatting**: coworker output is cleaner and easier to scan in chat.
|
|
20
|
+
- **Recipes/router robustness**: recipe resolution and router behavior were tightened to fix edge-case routing issues.
|
|
21
|
+
|
|
22
|
+
[1.1.5]: https://github.com/eligapris/omnish/compare/v1.1.4...v1.1.5
|
|
23
|
+
|
|
24
|
+
## [1.1.4] - 2026-05-04
|
|
25
|
+
|
|
10
26
|
### Added
|
|
11
27
|
|
|
12
28
|
- **Cowork documentation**: [docs/features/cowork.md](docs/features/cowork.md) describes `/cowork` usage, schedules, artifacts, and limits.
|
package/config.example.json
CHANGED