@malindar/whyline 0.1.4 → 0.1.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.
- package/.github/workflows/ci.yml +7 -2
- package/README.md +6 -5
- package/package.json +1 -1
package/.github/workflows/ci.yml
CHANGED
package/README.md
CHANGED
|
@@ -41,11 +41,10 @@ It works through Claude Code's MCP protocol. Two files to set it up in any repo:
|
|
|
41
41
|
## Installation
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
npm link
|
|
44
|
+
npm view @malindar/whyline version
|
|
45
|
+
npm install -g @malindar/whyline
|
|
46
|
+
whyline --help
|
|
47
|
+
whyline doctor
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
### Node version requirement
|
|
@@ -64,6 +63,8 @@ npm rebuild better-sqlite3
|
|
|
64
63
|
|
|
65
64
|
```bash
|
|
66
65
|
whyline init
|
|
66
|
+
whyline install-claude
|
|
67
|
+
whyline doctor
|
|
67
68
|
```
|
|
68
69
|
|
|
69
70
|
Creates `~/.whyline/` with `memory.db` and `config.json`.
|