claude-voice 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,6 +38,18 @@ claude-voice start
38
38
  npm install -g claude-voice
39
39
  ```
40
40
 
41
+ This will automatically:
42
+ 1. Set up configuration with sensible defaults
43
+ 2. Install Claude Code hooks for auto-start
44
+ 3. Install Piper TTS engine (local, free)
45
+ 4. Download default voice (en_US-joe-medium)
46
+ 5. Download Whisper STT model (whisper-small)
47
+
48
+ **For verbose install output:**
49
+ ```bash
50
+ npm install -g claude-voice --foreground-scripts
51
+ ```
52
+
41
53
  ### Install from source
42
54
 
43
55
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-voice",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Voice interface extension for Claude Code - TTS, STT, and wake word detection",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",