@entelligentsia/grove 0.1.1 → 0.1.3
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 +44 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# @entelligentsia/grove
|
|
2
|
+
|
|
3
|
+
**grove** gives coding agents structural, byte-precise, token-cheap access to a
|
|
4
|
+
codebase via tree-sitter, instead of reading whole files. One engine, six tools,
|
|
5
|
+
two faces — a human CLI (`grove <verb>`) and an MCP server (`grove serve`).
|
|
6
|
+
|
|
7
|
+
This npm package is a thin installer: on install it downloads the prebuilt
|
|
8
|
+
`grove` binary for your platform from the
|
|
9
|
+
[GitHub Release](https://github.com/Entelligentsia/grove/releases) matching this
|
|
10
|
+
package's version, verifies its `sha256`, and puts `grove` on your PATH. The
|
|
11
|
+
binary that runs is the same native build shipped to every channel.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npm install -g @entelligentsia/grove
|
|
17
|
+
grove --version
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Supported prebuilt targets: macOS and Linux (x86_64 + aarch64), Windows
|
|
21
|
+
(x86_64). Other platforms: install from source with
|
|
22
|
+
`cargo install --git https://github.com/Entelligentsia/grove`.
|
|
23
|
+
|
|
24
|
+
Requires network access and `tar` at install time (present on macOS, Linux, and
|
|
25
|
+
Windows 10+).
|
|
26
|
+
|
|
27
|
+
## Use
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
grove init # wire grove into a project (.mcp.json + CLAUDE.md + lock)
|
|
31
|
+
grove outline src/app.ts # compact definition skeleton of a file
|
|
32
|
+
grove symbols src # find symbols across a directory
|
|
33
|
+
grove serve # run the MCP server over stdio (for coding agents)
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
`grove init` detects the project's languages and auto-fetches the tree-sitter
|
|
37
|
+
grammars it needs. Run `grove --help` for the full tool surface.
|
|
38
|
+
|
|
39
|
+
## Links
|
|
40
|
+
|
|
41
|
+
- Repository & docs: <https://github.com/Entelligentsia/grove>
|
|
42
|
+
- Other install methods (curl | sh, Homebrew, cargo): see the repo README.
|
|
43
|
+
|
|
44
|
+
MIT licensed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entelligentsia/grove",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Structural, byte-precise, token-cheap access to a codebase for coding agents — tree-sitter over a CLI and an MCP server.",
|
|
5
5
|
"homepage": "https://github.com/Entelligentsia/grove",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"bin/grove.js",
|
|
19
|
-
"install.js"
|
|
19
|
+
"install.js",
|
|
20
|
+
"README.md"
|
|
20
21
|
],
|
|
21
22
|
"engines": {
|
|
22
23
|
"node": ">=16"
|