@mrciphersmith/keryx 0.2.49 → 0.2.50
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 +13 -0
- package/dist/cli.js +2093 -420
- package/package.json +1 -1
- package/src/gdgraph/enrich.ts +24 -7
- package/src/gdgraph/treesitter/adapter.test.ts +145 -2
- package/src/gdgraph/treesitter/adapter.ts +85 -1
package/README.md
CHANGED
|
@@ -41,6 +41,19 @@ keryx init --yes
|
|
|
41
41
|
keryx gdgraph build
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
No bun, git, or node? Install the standalone binary instead — same CLI, no
|
|
45
|
+
runtime dependency:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
curl -fsSL https://raw.githubusercontent.com/MrCipherSmith/keryx/main/scripts/install-binary.sh | bash
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
or via Homebrew:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
brew install MrCipherSmith/keryx/keryx
|
|
55
|
+
```
|
|
56
|
+
|
|
44
57
|
Local-first · deterministic core · offline by default · MIT
|
|
45
58
|
|
|
46
59
|
## Why keryx
|