claude-can-speak 0.1.0 → 0.1.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/README.md +31 -11
- package/bin/claude-can-speak +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
# claude-can-speak
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
**Let Claude decide what to say out loud.** Most "speak Claude Code aloud" tools
|
|
4
|
+
read *every* reply at you. claude-can-speak leads with the opposite: a Claude
|
|
5
|
+
Code **skill** that gives the model a deliberate "say this" capability, so Claude
|
|
6
|
+
voices only what is worth hearing, a spoken "the build is done and tests passed"
|
|
7
|
+
when you have stepped away, a heads-up that a deploy needs confirmation, a short
|
|
8
|
+
shoutout you asked for, while everything else stays text-only. Selective, on
|
|
9
|
+
purpose, model-controlled.
|
|
10
|
+
|
|
11
|
+
If you *do* want the firehose, it is one command away: a Stop hook that speaks
|
|
12
|
+
every finished reply, gated on the built-in `/voice` mode so one switch controls
|
|
13
|
+
both directions (you talk to it, it talks back). But the deliberate skill is the
|
|
14
|
+
point.
|
|
15
|
+
|
|
16
|
+
- **Deliberate mode (the headline)** - the `speak` skill lets Claude choose what
|
|
17
|
+
to voice. Install with `claude-can-speak install-skill`.
|
|
18
|
+
- **Firehose mode (optional)** - a Stop hook speaks every reply while `/voice` is
|
|
19
|
+
on. Install with `claude-can-speak install-hooks`.
|
|
14
20
|
|
|
15
21
|
Speech is synthesised locally by [Kokoro](https://github.com/thewh1teagle/kokoro-onnx)
|
|
16
22
|
(natural English, the default) or [Piper](https://github.com/OHF-Voice/piper1-gpl)
|
|
@@ -138,6 +144,20 @@ behalf. **By installing and using it you accept all risk.** You are responsible
|
|
|
138
144
|
for complying with the licences of the bundled engines and the downloaded models
|
|
139
145
|
(see [THIRD_PARTY.md](THIRD_PARTY.md)).
|
|
140
146
|
|
|
147
|
+
## Related projects
|
|
148
|
+
|
|
149
|
+
Speaking Claude Code's replies aloud is a well-trodden idea, and several tools do
|
|
150
|
+
the firehose well: `claude-voice` (Kokoro plus karaoke word highlighting),
|
|
151
|
+
`claude-code-tts` (OpenAI or Kokoro auto-speak), `claude-voice-mcp` and
|
|
152
|
+
`soliloquy-tts` (MCP-based auto-speak). If all you want is "read every reply
|
|
153
|
+
aloud", any of those is a fine choice and lighter than this one (no Docker).
|
|
154
|
+
|
|
155
|
+
claude-can-speak is built around a different default: the deliberate `speak`
|
|
156
|
+
skill, so Claude voices only what is worth hearing rather than everything. It
|
|
157
|
+
also adds multilingual output (Piper for German, Turkish, and more), Docker
|
|
158
|
+
isolation so the engines never touch your host Python, and gating on the built-in
|
|
159
|
+
`/voice` switch. The firehose mode is included, but it is not the headline.
|
|
160
|
+
|
|
141
161
|
## Licence
|
|
142
162
|
|
|
143
163
|
MIT - see [LICENSE](LICENSE). Author: Ramazan Yavuz. Part of the public,
|
package/bin/claude-can-speak
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# any damage or loss arising from its use. By using it you accept all risk.
|
|
10
10
|
set -uo pipefail
|
|
11
11
|
|
|
12
|
-
VERSION="0.1.
|
|
12
|
+
VERSION="0.1.1"
|
|
13
13
|
|
|
14
14
|
# Install layout: bundled scripts live in ../lib/claude-can-speak relative to
|
|
15
15
|
# this CLI, whether installed via npm (into the global node_modules) or run from
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-can-speak",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Let Claude Code decide what to say out loud: a skill that voices deliberate notifications (not every reply), plus an optional speak-everything Stop hook. Local neural TTS via Kokoro/Piper in Docker, gated on /voice.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
7
7
|
"claude-code",
|