keen-code 0.23.2 → 0.23.4

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 (3) hide show
  1. package/README.md +10 -0
  2. package/bin/keen.js +2 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -24,6 +24,16 @@ Install the CLI globally:
24
24
  npm install -g keen-code
25
25
  ```
26
26
 
27
+ Update the global install:
28
+
29
+ ```bash
30
+ npm install -g keen-code@latest
31
+ # or
32
+ npm update -g keen-code
33
+ ```
34
+
35
+ `npm update` without `-g` only updates local project dependencies.
36
+
27
37
  Check that the install worked:
28
38
 
29
39
  ```bash
package/bin/keen.js CHANGED
@@ -10,7 +10,8 @@ const binaryPath = path.join(__dirname, binaryName);
10
10
 
11
11
  if (!fs.existsSync(binaryPath)) {
12
12
  console.error(
13
- "[keen] Binary not found. Try reinstalling: npm install -g keen-code"
13
+ "[keen] Binary not found. Try reinstalling: npm install -g keen-code@latest\n" +
14
+ "[keen] If updating an existing global install, run: npm update -g keen-code"
14
15
  );
15
16
  process.exit(1);
16
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keen-code",
3
- "version": "0.23.2",
3
+ "version": "0.23.4",
4
4
  "description": "CLI coding agent powered by AI (npm compatibility wrapper)",
5
5
  "bin": {
6
6
  "keen": "bin/keen.js"