@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.
@@ -2,9 +2,14 @@ name: CI
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [main]
5
+ branches:
6
+ - main
6
7
  pull_request:
7
- branches: [main]
8
+ branches:
9
+ - main
10
+
11
+ permissions:
12
+ contents: read
8
13
 
9
14
  jobs:
10
15
  build-and-test:
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
- git clone https://github.com/malinda1986/whyline.git
45
- cd whyline
46
- npm install
47
- npm run build
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`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malindar/whyline",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },