lance-context 1.29.5 → 1.30.0
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 +2 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="logo.
|
|
2
|
+
<img src="logo.png" alt="lance-context logo" width="150" height="150">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -9,18 +9,6 @@
|
|
|
9
9
|
<img src="https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg" alt="Node.js version">
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
> [!WARNING]
|
|
13
|
-
> **Versions 1.18.x have known performance issues with Ollama embedding.**
|
|
14
|
-
>
|
|
15
|
-
> If you experience hangs during indexing, use the stable version:
|
|
16
|
-
> ```bash
|
|
17
|
-
> npm install lance-context@1.17.1
|
|
18
|
-
> ```
|
|
19
|
-
> Or with Claude Code:
|
|
20
|
-
> ```bash
|
|
21
|
-
> claude mcp add --scope user --transport stdio lance-context -- npx -y lance-context@1.17.1
|
|
22
|
-
> ```
|
|
23
|
-
|
|
24
12
|
# lance-context
|
|
25
13
|
|
|
26
14
|
An MCP plugin that adds semantic code search to Claude Code and other AI coding agents, giving them deep context from your entire codebase.
|
|
@@ -41,13 +29,11 @@ An MCP plugin that adds semantic code search to Claude Code and other AI coding
|
|
|
41
29
|
Add lance-context to Claude Code:
|
|
42
30
|
|
|
43
31
|
```bash
|
|
44
|
-
claude mcp add --scope user --transport stdio lance-context -- npx -y lance-context
|
|
32
|
+
claude mcp add --scope user --transport stdio lance-context -- npx -y lance-context
|
|
45
33
|
```
|
|
46
34
|
|
|
47
35
|
Restart Claude Code to start using semantic search.
|
|
48
36
|
|
|
49
|
-
> **Note:** To try the latest (alpha) version: `npx -y lance-context@alpha`
|
|
50
|
-
|
|
51
37
|
### Global Install (Alternative)
|
|
52
38
|
|
|
53
39
|
For faster startup (no npm check on each run):
|
package/package.json
CHANGED