lystn-cli 0.1.3 → 0.1.6

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 CHANGED
@@ -4,7 +4,7 @@ Listen to AI coding assistants instead of reading them. This is the npm
4
4
  distribution of the [Lystn](https://github.com/burakayener/Lystn) CLI.
5
5
 
6
6
  ```bash
7
- npm install -g lystn # or: pnpm add -g lystn
7
+ npm install -g lystn-cli # or: pnpm add -g lystn-cli
8
8
  lystn config set server https://api.lystn.space
9
9
  lystn config set api_key <your key>
10
10
  lystn install # wires the Claude Code hook automatically
@@ -22,7 +22,7 @@ into it. Nothing touches your global Python or site-packages.
22
22
  install from python.org with "Add to PATH").
23
23
  - **pnpm users:** pnpm v10+ skips install scripts by default — that's
24
24
  fine; the launcher sets itself up on the first `lystn` command instead.
25
- - Uninstall with `npm uninstall -g lystn` (the venv lives inside the
25
+ - Uninstall with `npm uninstall -g lystn-cli` (the venv lives inside the
26
26
  package dir and is removed with it). Run `lystn uninstall` first to
27
27
  remove the Claude Code hooks.
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lystn-cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "description": "Listen to AI coding assistant responses through your speakers.",
5
5
  "homepage": "https://github.com/burakayener/Lystn",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -2,7 +2,7 @@
2
2
  /*
3
3
  * Bootstrap the private Python environment for the lystn npm package.
4
4
  *
5
- * Runs at `npm install -g lystn` (postinstall) AND lazily from bin/lystn.js
5
+ * Runs at `npm install -g lystn-cli` (postinstall) AND lazily from bin/lystn.js
6
6
  * if the venv is missing — pnpm v10+ skips postinstall scripts by default,
7
7
  * so the launcher must be able to self-bootstrap on first run.
8
8
  *