pi-smart-voice-notify 0.3.1 → 0.3.2
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 +7 -0
- package/README.md +9 -1
- package/package.json +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.2] - 2026-04-01
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Added Related Pi Extensions cross-linking section to README
|
|
7
|
+
- Aligned npm keywords for improved discoverability
|
|
8
|
+
- Updated README with new image and expanded features documentation
|
|
9
|
+
|
|
3
10
|
## [0.3.1] - 2026-04-01
|
|
4
11
|
|
|
5
12
|
### Changed
|
package/README.md
CHANGED
|
@@ -4,7 +4,8 @@ Windows-optimized smart notification extension for the Pi coding agent.
|
|
|
4
4
|
|
|
5
5
|
**pi-smart-voice-notify** monitors Pi session and tool events to alert you via **multi-engine TTS**, **sound playback**, **desktop toast notifications**, and optional **webhook/AI-assisted messaging** when the agent requires your attention.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<img width="1360" height="752" alt="image" src="https://github.com/user-attachments/assets/c215a7fe-31b4-4bc4-a89e-992a4847819d" />
|
|
8
|
+
|
|
8
9
|
|
|
9
10
|
## Features
|
|
10
11
|
|
|
@@ -283,6 +284,13 @@ npm run check # build + test
|
|
|
283
284
|
|
|
284
285
|
**Requirements:** Node.js ≥ 24
|
|
285
286
|
|
|
287
|
+
## Related Pi Extensions
|
|
288
|
+
|
|
289
|
+
- [pi-tool-display](https://github.com/MasuRii/pi-tool-display) — Compact tool rendering and diff visualization
|
|
290
|
+
- [pi-permission-system](https://github.com/MasuRii/pi-permission-system) — Permission enforcement for tool and command access
|
|
291
|
+
- [pi-MUST-have-extension](https://github.com/MasuRii/pi-MUST-have-extension) — RFC 2119 keyword normalization for prompts
|
|
292
|
+
- [pi-startup-redraw-fix](https://github.com/MasuRii/pi-startup-redraw-fix) — Fix terminal redraw glitches on startup
|
|
293
|
+
|
|
286
294
|
## License
|
|
287
295
|
|
|
288
296
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-smart-voice-notify",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Windows-optimized smart voice, sound, and desktop notifications for Pi coding agent.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -26,9 +26,18 @@
|
|
|
26
26
|
"pi-package",
|
|
27
27
|
"pi",
|
|
28
28
|
"pi-extension",
|
|
29
|
+
"pi-coding-agent",
|
|
30
|
+
"coding-agent",
|
|
29
31
|
"voice-notify",
|
|
32
|
+
"desktop-notification",
|
|
33
|
+
"notifications",
|
|
34
|
+
"voice",
|
|
35
|
+
"audio",
|
|
36
|
+
"text-to-speech",
|
|
37
|
+
"tts",
|
|
30
38
|
"windows",
|
|
31
|
-
"
|
|
39
|
+
"linux",
|
|
40
|
+
"macos"
|
|
32
41
|
],
|
|
33
42
|
"author": "MasuRii",
|
|
34
43
|
"license": "MIT",
|