keen-code 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/README.md +46 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Keen Code
|
|
2
|
+
|
|
3
|
+
Keen Code is a terminal-based coding agent for working on local codebases.
|
|
4
|
+
|
|
5
|
+
## Install with script
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
curl -fsSL https://raw.githubusercontent.com/mochow13/keen-code/main/scripts/install.sh | bash
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
To pin a specific version:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
curl -fsSL https://raw.githubusercontent.com/mochow13/keen-code/main/scripts/install.sh | bash -s -- -v v0.1.4
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Installs to `/usr/local/bin` if writable, otherwise `$HOME/.local/bin`.
|
|
18
|
+
|
|
19
|
+
## Install with `npm`
|
|
20
|
+
|
|
21
|
+
Install the CLI globally:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install -g keen-code
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Check that the install worked:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
keen --version
|
|
31
|
+
which keen
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
You can also run it without a global install:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx keen-code --version
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Run Keen
|
|
41
|
+
|
|
42
|
+
Start Keen in your current directory:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
keen
|
|
46
|
+
```
|