@oh-my-pi/pi-coding-agent 16.3.8 → 16.3.9
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/dist/cli.js +2563 -2561
- package/dist/types/commands/say.d.ts +6 -1
- package/dist/types/commit/agentic/lock-files.d.ts +36 -0
- package/dist/types/config/model-discovery.d.ts +3 -2
- package/package.json +12 -12
- package/src/commands/say.ts +73 -30
- package/src/commit/agentic/index.ts +3 -1
- package/src/commit/agentic/lock-files.ts +107 -0
- package/src/commit/agentic/tools/git-overview.ts +1 -20
- package/src/config/model-discovery.ts +6 -3
- package/src/config/model-registry.ts +18 -7
- package/src/discovery/claude.ts +12 -8
- package/src/extensibility/skills.ts +8 -5
- package/src/tts/speakable.ts +19 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.3.9] - 2026-07-06
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added a `--file` flag to the `say` command to read input text directly from files.
|
|
10
|
+
- Enabled streaming text synthesis in the `say` command for gapless, long-form audio generation.
|
|
11
|
+
- Added voice selection validation to the `say` command.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Improved the `say` command to display the segment count and total duration upon completion.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fixed an issue where local llama.cpp vision models remained text-only after a model refresh, ensuring they are correctly recognized as image-capable when configured as the default or vision role.
|
|
20
|
+
- Fixed `omp commit` split plans aborting when lock files (such as `bun.lockb`) were staged alongside their manifests by correctly pairing lock files with their corresponding commit groups and properly handling binary files during split execution.
|
|
21
|
+
- Fixed skill loading to ensure that disabling a higher-priority provider does not drop same-named skills from enabled lower-priority providers.
|
|
22
|
+
|
|
5
23
|
## [16.3.8] - 2026-07-05
|
|
6
24
|
|
|
7
25
|
### Fixed
|