claude-can-speak 0.1.2 → 0.1.3
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 +52 -21
- package/bin/claude-can-speak +36 -7
- package/bin/postinstall.js +5 -4
- package/commands/ccs.md +22 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,15 +8,22 @@ when you have stepped away, a heads-up that a deploy needs confirmation, a short
|
|
|
8
8
|
shoutout you asked for, while everything else stays text-only. Selective, on
|
|
9
9
|
purpose, model-controlled.
|
|
10
10
|
|
|
11
|
-
If you *do* want the firehose, it is one
|
|
12
|
-
every finished reply,
|
|
13
|
-
|
|
14
|
-
point.
|
|
11
|
+
If you *do* want the firehose, it is one switch away: a Stop hook that speaks
|
|
12
|
+
every finished reply, with its own explicit on/off (`claude-can-speak on` /
|
|
13
|
+
`off`, off by default). But the deliberate skill is the point.
|
|
15
14
|
|
|
16
15
|
- **Deliberate mode (the headline)** - the `speak` skill lets Claude choose what
|
|
17
|
-
to voice.
|
|
18
|
-
- **Firehose mode (optional)** - a Stop hook speaks every reply
|
|
19
|
-
on
|
|
16
|
+
to voice. Active after `claude-can-speak setup`.
|
|
17
|
+
- **Firehose mode (optional)** - a Stop hook speaks every reply when you turn it
|
|
18
|
+
on with `claude-can-speak on` (off by default), or `/ccs on` from inside
|
|
19
|
+
Claude Code.
|
|
20
|
+
|
|
21
|
+
> **The toggle is a command, not a built-in slash setting.** claude-can-speak
|
|
22
|
+
> does not hook into Claude Code's `/voice`; if you type `/` in Claude Code
|
|
23
|
+
> before setup and find nothing, that is expected. Control the firehose from the
|
|
24
|
+
> terminal with `claude-can-speak on` / `off`, or from inside Claude Code with
|
|
25
|
+
> the `/ccs on` / `/ccs off` / `/ccs status` slash command that `setup`
|
|
26
|
+
> installs.
|
|
20
27
|
|
|
21
28
|
Speech is synthesised locally by [Kokoro](https://github.com/thewh1teagle/kokoro-onnx)
|
|
22
29
|
(natural English, the default) or [Piper](https://github.com/OHF-Voice/piper1-gpl)
|
|
@@ -37,40 +44,61 @@ network at speak time, no telemetry.
|
|
|
37
44
|
|
|
38
45
|
```sh
|
|
39
46
|
npm install -g claude-can-speak
|
|
40
|
-
|
|
41
|
-
# one-time: build the local TTS container image (needs Docker)
|
|
42
|
-
claude-can-speak build
|
|
47
|
+
claude-can-speak setup # Docker check, build image, install skill + hook
|
|
43
48
|
```
|
|
44
49
|
|
|
50
|
+
`setup` is the one command that does everything (it needs Docker). Then
|
|
51
|
+
**restart Claude Code once** so it loads the new skill and hook.
|
|
52
|
+
|
|
45
53
|
> If `npm install -g` fails with `EACCES` (a system-owned npm prefix like
|
|
46
54
|
> `/usr`), either use a user-level prefix once:
|
|
47
55
|
> `npm config set prefix ~/.npm-global && export PATH="$HOME/.npm-global/bin:$PATH"`
|
|
48
56
|
> (add that `export` to your shell profile), or install with `sudo`.
|
|
49
57
|
|
|
50
|
-
|
|
58
|
+
`setup` also installs a `/ccs` slash command into Claude Code, so the firehose
|
|
59
|
+
toggle is reachable from where you would instinctively look for it. **Restart
|
|
60
|
+
Claude Code once** after setup so it discovers the skill and the command.
|
|
61
|
+
|
|
62
|
+
After setup:
|
|
63
|
+
|
|
64
|
+
- **Deliberate mode** (the headline) is active: Claude can voice notifications
|
|
65
|
+
through the `speak` skill whenever it judges something worth hearing.
|
|
66
|
+
- **Firehose mode** (speak every reply) is **off by default**. Turn it on when
|
|
67
|
+
you want it, from the terminal or from inside Claude Code:
|
|
51
68
|
|
|
52
69
|
```sh
|
|
53
|
-
claude-can-speak
|
|
54
|
-
claude-can-speak
|
|
70
|
+
claude-can-speak on # speak every reply
|
|
71
|
+
claude-can-speak off # back to silent (default)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
```text
|
|
75
|
+
/ccs on # same, from inside Claude Code
|
|
76
|
+
/ccs off
|
|
77
|
+
/ccs status
|
|
55
78
|
```
|
|
56
79
|
|
|
57
80
|
Models are downloaded on first use into `~/.cache/claude-can-speak/models`
|
|
58
81
|
(nothing model-shaped is bundled in the package; see
|
|
59
82
|
[THIRD_PARTY.md](THIRD_PARTY.md)).
|
|
60
83
|
|
|
61
|
-
|
|
84
|
+
Check everything with:
|
|
62
85
|
|
|
63
86
|
```sh
|
|
64
87
|
claude-can-speak status
|
|
65
88
|
claude-can-speak test # speak a sample line
|
|
66
89
|
```
|
|
67
90
|
|
|
91
|
+
If you prefer to do the steps by hand instead of `setup`: `claude-can-speak
|
|
92
|
+
build`, then `claude-can-speak install-skill` and/or `claude-can-speak
|
|
93
|
+
install-hooks`.
|
|
94
|
+
|
|
68
95
|
## Usage
|
|
69
96
|
|
|
70
97
|
```sh
|
|
71
98
|
claude-can-speak status # gate state, container, voice, model cache
|
|
72
99
|
claude-can-speak test [text] # speak a sample (or your text)
|
|
73
|
-
claude-can-speak
|
|
100
|
+
claude-can-speak on | off # firehose: speak every reply, or not (default off)
|
|
101
|
+
claude-can-speak say <text> # speak text now (always speaks; used by the skill)
|
|
74
102
|
claude-can-speak stop # interrupt whatever is being spoken
|
|
75
103
|
claude-can-speak voice <name> # set the default voice (e.g. af_heart)
|
|
76
104
|
claude-can-speak engine kokoro|piper
|
|
@@ -102,7 +130,7 @@ claude-can-speak voice tr_TR-dfki-medium # Turkish
|
|
|
102
130
|
## How it works
|
|
103
131
|
|
|
104
132
|
```
|
|
105
|
-
Claude Code reply ─▶ Stop hook (
|
|
133
|
+
Claude Code reply ─▶ Stop hook (when firehose on) ─▶ strip markdown & code
|
|
106
134
|
─▶ docker exec synth (Kokoro/Piper)
|
|
107
135
|
─▶ play WAV on the host
|
|
108
136
|
```
|
|
@@ -118,8 +146,11 @@ Per-user config lives in `~/.config/claude-can-speak/config.env` (written by the
|
|
|
118
146
|
`voice` / `engine` commands). Environment overrides: `CCS_IMAGE`,
|
|
119
147
|
`CCS_CONTAINER`, `CCS_MODELS_DIR`, `CLAUDE_SETTINGS`.
|
|
120
148
|
|
|
121
|
-
The
|
|
122
|
-
|
|
149
|
+
The firehose on/off state is a single file, `~/.config/claude-can-speak/firehose.enabled`
|
|
150
|
+
(present = on, absent = off), written by `claude-can-speak on` / `off`. It is
|
|
151
|
+
deliberately independent of Claude Code's `/voice`, which is speech-in dictation,
|
|
152
|
+
a separate concern. The `speak` skill is toggled via `skillOverrides` in
|
|
153
|
+
`~/.claude/settings.json`.
|
|
123
154
|
|
|
124
155
|
## Uninstall
|
|
125
156
|
|
|
@@ -154,9 +185,9 @@ aloud", any of those is a fine choice and lighter than this one (no Docker).
|
|
|
154
185
|
|
|
155
186
|
claude-can-speak is built around a different default: the deliberate `speak`
|
|
156
187
|
skill, so Claude voices only what is worth hearing rather than everything. It
|
|
157
|
-
also adds multilingual output (Piper for German, Turkish, and more)
|
|
158
|
-
isolation so the engines never touch your host Python
|
|
159
|
-
|
|
188
|
+
also adds multilingual output (Piper for German, Turkish, and more) and Docker
|
|
189
|
+
isolation so the engines never touch your host Python. The firehose mode is
|
|
190
|
+
included, with its own explicit on/off switch, but it is not the headline.
|
|
160
191
|
|
|
161
192
|
## Licence
|
|
162
193
|
|
package/bin/claude-can-speak
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
|
-
# claude-can-speak: speech-out for Claude Code
|
|
2
|
+
# claude-can-speak: speech-out for Claude Code (deliberate skill + optional firehose).
|
|
3
3
|
#
|
|
4
4
|
# This CLI manages the TTS container and the playback lifecycle. The speaking
|
|
5
5
|
# itself is driven by a Stop hook (tts-speak.sh); this command is for setup,
|
|
@@ -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.3"
|
|
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
|
|
@@ -59,7 +59,7 @@ require_docker() {
|
|
|
59
59
|
|
|
60
60
|
cmd_help() {
|
|
61
61
|
cat <<EOF
|
|
62
|
-
claude-can-speak $VERSION - speech-out for Claude Code
|
|
62
|
+
claude-can-speak $VERSION - speech-out for Claude Code
|
|
63
63
|
|
|
64
64
|
USAGE
|
|
65
65
|
claude-can-speak <command> [args]
|
|
@@ -79,6 +79,8 @@ COMMANDS
|
|
|
79
79
|
install-hooks Register the Stop + interrupt hooks in settings.json.
|
|
80
80
|
remove-hooks Remove this project's hooks from settings.json.
|
|
81
81
|
install-skill Install the 'speak' skill into ~/.claude/skills.
|
|
82
|
+
install-command Install the '/ccs' slash command into ~/.claude/commands.
|
|
83
|
+
remove-command Remove the '/ccs' slash command.
|
|
82
84
|
skill on|off Enable/disable the 'speak' skill (settings skillOverrides).
|
|
83
85
|
build Build the TTS container image locally.
|
|
84
86
|
help | --help This text.
|
|
@@ -89,7 +91,9 @@ TWO MODES
|
|
|
89
91
|
Install with 'claude-can-speak install-skill'.
|
|
90
92
|
Firehose (optional): the Stop hook speaks every reply when the firehose is
|
|
91
93
|
on. Install the hook with 'claude-can-speak install-hooks', then
|
|
92
|
-
toggle with 'claude-can-speak on' / 'off'
|
|
94
|
+
toggle with 'claude-can-speak on' / 'off' from the terminal, or
|
|
95
|
+
'/ccs on' / '/ccs off' from inside Claude Code (the /ccs slash
|
|
96
|
+
command is a convenience wrapper; run 'install-command' to add it).
|
|
93
97
|
|
|
94
98
|
GATING
|
|
95
99
|
The firehose has its own explicit on/off switch ('claude-can-speak on|off',
|
|
@@ -258,16 +262,20 @@ cmd_setup() {
|
|
|
258
262
|
require_docker
|
|
259
263
|
echo "1/3 building the TTS container image (first time pulls deps, ~2 min) ..."
|
|
260
264
|
cmd_build
|
|
261
|
-
echo "2/
|
|
265
|
+
echo "2/4 installing the 'speak' skill ..."
|
|
262
266
|
cmd_install_skill
|
|
263
|
-
echo "3/
|
|
267
|
+
echo "3/4 installing the '/ccs' slash command ..."
|
|
268
|
+
cmd_install_command
|
|
269
|
+
echo "4/4 installing the firehose Stop hook ..."
|
|
264
270
|
cmd_install_hooks
|
|
265
271
|
cat <<EOF
|
|
266
272
|
|
|
267
273
|
Setup complete.
|
|
268
274
|
- Deliberate mode: Claude can voice notifications via the 'speak' skill (active now).
|
|
269
275
|
- Firehose mode: turn it on with 'claude-can-speak on' (off by default).
|
|
270
|
-
Restart Claude Code once so it loads the new skill
|
|
276
|
+
Restart Claude Code once so it loads the new skill, the /ccs command, and the
|
|
277
|
+
hook. After that you can toggle the firehose from inside Claude Code with
|
|
278
|
+
'/ccs on' and '/ccs off', or from the terminal:
|
|
271
279
|
claude-can-speak on
|
|
272
280
|
claude-can-speak test
|
|
273
281
|
EOF
|
|
@@ -287,6 +295,25 @@ cmd_install_skill() {
|
|
|
287
295
|
echo "if ~/.claude/skills did not exist before, restart your session to discover it."
|
|
288
296
|
}
|
|
289
297
|
|
|
298
|
+
cmd_install_command() {
|
|
299
|
+
# Locate the packaged slash command (deb vs git checkout).
|
|
300
|
+
local src
|
|
301
|
+
for cand in "/usr/share/claude-can-speak/commands/ccs.md" "$SELF/../commands/ccs.md"; do
|
|
302
|
+
[ -f "$cand" ] && { src="$cand"; break; }
|
|
303
|
+
done
|
|
304
|
+
[ -n "${src:-}" ] || die "packaged slash command not found"
|
|
305
|
+
local dest="$HOME/.claude/commands/ccs.md"
|
|
306
|
+
mkdir -p "$(dirname "$dest")"
|
|
307
|
+
cp "$src" "$dest"
|
|
308
|
+
echo "installed '/ccs' slash command -> $dest"
|
|
309
|
+
echo "restart Claude Code once so it discovers the new command, then use /ccs status."
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
cmd_remove_command() {
|
|
313
|
+
local dest="$HOME/.claude/commands/ccs.md"
|
|
314
|
+
if [ -f "$dest" ]; then rm -f "$dest"; echo "removed '/ccs' slash command"; else echo "'/ccs' not installed"; fi
|
|
315
|
+
}
|
|
316
|
+
|
|
290
317
|
cmd_skill() {
|
|
291
318
|
case "${1:-}" in
|
|
292
319
|
on) _skill_override on; echo "'speak' skill enabled" ;;
|
|
@@ -335,6 +362,8 @@ case "${1:-help}" in
|
|
|
335
362
|
install-hooks) cmd_install_hooks ;;
|
|
336
363
|
remove-hooks) cmd_remove_hooks ;;
|
|
337
364
|
install-skill) cmd_install_skill ;;
|
|
365
|
+
install-command) cmd_install_command ;;
|
|
366
|
+
remove-command) cmd_remove_command ;;
|
|
338
367
|
skill) shift; cmd_skill "${1:-}" ;;
|
|
339
368
|
build) cmd_build ;;
|
|
340
369
|
help|-h|--help) cmd_help ;;
|
package/bin/postinstall.js
CHANGED
|
@@ -15,12 +15,13 @@ const L = [
|
|
|
15
15
|
" One more step (needs Docker):",
|
|
16
16
|
" claude-can-speak setup",
|
|
17
17
|
"",
|
|
18
|
-
" That builds the local TTS container and installs the 'speak' skill",
|
|
19
|
-
"
|
|
18
|
+
" That builds the local TTS container and installs the 'speak' skill,",
|
|
19
|
+
" the '/ccs' slash command, and the optional firehose hook.",
|
|
20
|
+
" Then restart Claude Code once.",
|
|
20
21
|
"",
|
|
21
22
|
" Deliberate mode (Claude voices notifications) is on after setup.",
|
|
22
|
-
" Firehose mode (speak every reply) is off by default
|
|
23
|
-
"
|
|
23
|
+
" Firehose mode (speak every reply) is off by default. Turn it on from the",
|
|
24
|
+
" terminal with 'claude-can-speak on', or inside Claude Code with '/ccs on'.",
|
|
24
25
|
"",
|
|
25
26
|
" Provided AS IS, no warranty. https://ra-yavuz.github.io/claude-can-speak/",
|
|
26
27
|
"",
|
package/commands/ccs.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Control claude-can-speak (status / on / off)
|
|
3
|
+
argument-hint: [status|on|off]
|
|
4
|
+
allowed-tools: Bash(claude-can-speak:*)
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
The user invoked the claude-can-speak control command with argument: "$ARGUMENTS"
|
|
8
|
+
|
|
9
|
+
Run the matching CLI command and report the result plainly. The argument is one
|
|
10
|
+
of `status` (default if empty), `on`, or `off`:
|
|
11
|
+
|
|
12
|
+
- empty or `status` -> show current state:
|
|
13
|
+
!`claude-can-speak status`
|
|
14
|
+
- `on` -> turn the speak-every-reply firehose on:
|
|
15
|
+
!`if [ "$ARGUMENTS" = "on" ]; then claude-can-speak on; fi`
|
|
16
|
+
- `off` -> turn the firehose off (replies go silent again):
|
|
17
|
+
!`if [ "$ARGUMENTS" = "off" ]; then claude-can-speak off; fi`
|
|
18
|
+
|
|
19
|
+
Note for the user if relevant: `claude-can-speak` is a terminal command too; this
|
|
20
|
+
slash command is just a convenience wrapper so the firehose toggle is reachable
|
|
21
|
+
from inside Claude Code. The firehose hook hot-reloads, so `on`/`off` take effect
|
|
22
|
+
on the next reply without restarting the session.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-can-speak",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
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",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"lib/claude-can-speak/",
|
|
39
39
|
"container/",
|
|
40
40
|
"skills/",
|
|
41
|
+
"commands/",
|
|
41
42
|
"THIRD_PARTY.md",
|
|
42
43
|
"LICENSE",
|
|
43
44
|
"README.md"
|