lystn-cli 0.3.3 → 0.3.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 +50 -50
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,50 +1,50 @@
1
- # lystn-cli
2
-
3
- Listen to your AI coding assistant. **Lystn** speaks the replies from **Claude
4
- Code** and **Codex** aloud — short spoken summaries so you can keep moving
5
- instead of reading walls of text.
6
-
7
- ## Install
8
-
9
- ```bash
10
- npm install -g lystn-cli
11
- lystn wire # wires Claude Code + Codex
12
- lystn login # sign in (Google)
13
- ```
14
-
15
- That's it
16
-
17
- ## Commands
18
-
19
- - `lystn wire` / `lystn unwire` — wire (or remove) the hook for Claude Code and Codex
20
- - `lystn login` / `lystn logout` — sign in / clear your key
21
- - `lystn config show` / `lystn config set <key> <value>`
22
- - `lystn mute` / `lystn unmute` · `lystn speed <0.5–3.0>` · `lystn volume <0–100>`
23
-
24
- Learn more: https://lystn.space
25
-
26
- ---
27
-
28
- ## For maintainers — how this package works
29
-
30
- This npm package is a thin launcher. On install, `scripts/postinstall.js`
31
- downloads the matching prebuilt **Rust** binary from this repo's GitHub Release
32
- (`lystn-<target>`), and `bin/lystn.js` runs it.
33
-
34
- **Repo layout** (this is the public `lystn-cli` repo):
35
-
36
- ```
37
- lystn-cli/
38
- ├── cli-rs/ # Rust source (the actual client)
39
- ├── bin/lystn.js # launcher → runs the downloaded binary
40
- ├── scripts/postinstall.js # downloads the binary for this OS
41
- ├── package.json
42
- └── .github/workflows/release.yml # builds + uploads the binaries on a tag
43
- ```
44
-
45
- **Cutting a release**
46
-
47
- 1. Bump `version` in `package.json` (e.g. `0.3.0`).
48
- 2. `git tag v0.3.0 && git push --tags` → CI builds all 4 binaries and attaches
49
- them to the `v0.3.0` Release.
50
- 3. `npm publish` (the postinstall pulls from the `v0.3.0` Release).
1
+ # lystn-cli
2
+
3
+ Listen to your AI coding assistant. **Lystn** speaks the replies from **Claude
4
+ Code** and **Codex** aloud — short spoken summaries so you can keep moving
5
+ instead of reading walls of text.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g lystn-cli
11
+ lystn wire # wires Claude Code + Codex
12
+ lystn login # sign in (Google)
13
+ ```
14
+
15
+ That's it
16
+
17
+ ## Commands
18
+
19
+ - `lystn wire` / `lystn unwire` — wire (or remove) the hook for Claude Code and Codex
20
+ - `lystn login` / `lystn logout` — sign in / clear your key
21
+ - `lystn config show` / `lystn config set <key> <value>`
22
+ - `lystn mute` / `lystn unmute` · `lystn speed <0.5–3.0>` · `lystn volume <0–100>`
23
+
24
+ Learn more: https://lystn.space
25
+
26
+ ---
27
+
28
+ ## For maintainers — how this package works
29
+
30
+ This npm package is a thin launcher. On install, `scripts/postinstall.js`
31
+ downloads the matching prebuilt **Rust** binary from this repo's GitHub Release
32
+ (`lystn-<target>`), and `bin/lystn.js` runs it.
33
+
34
+ **Repo layout** (this is the public `lystn-cli` repo):
35
+
36
+ ```
37
+ lystn-cli/
38
+ ├── cli-rs/ # Rust source (the actual client)
39
+ ├── bin/lystn.js # launcher → runs the downloaded binary
40
+ ├── scripts/postinstall.js # downloads the binary for this OS
41
+ ├── package.json
42
+ └── .github/workflows/release.yml # builds + uploads the binaries on a tag
43
+ ```
44
+
45
+ **Cutting a release**
46
+
47
+ 1. Bump `version` in `package.json` (e.g. `0.3.0`).
48
+ 2. `git tag v0.3.0 && git push --tags` → CI builds all 4 binaries and attaches
49
+ them to the `v0.3.0` Release.
50
+ 3. `npm publish` (the postinstall pulls from the `v0.3.0` Release).
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "lystn-cli",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Listen to your AI coding assistant — speaks Claude Code & Codex replies aloud.",
5
5
  "homepage": "https://lystn.space",
6
- "repository": { "type": "git", "url": "https://github.com/burakayener/lystn-cli" },
6
+ "repository": { "type": "git", "url": "git+https://github.com/burakayener/lystn-cli.git" },
7
7
  "license": "Apache-2.0",
8
8
  "bin": { "lystn": "bin/lystn.js" },
9
9
  "scripts": {