@dreb/semantic-search 2.0.0 → 2.0.1
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/.claude-plugin/plugin.json +1 -1
- package/README.md +17 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-search",
|
|
3
3
|
"description": "Semantic codebase search — natural language queries over code and docs using embeddings, tree-sitter parsing, and POEM multi-signal ranking",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Drew Brereton"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -14,16 +14,30 @@ npm install @dreb/semantic-search
|
|
|
14
14
|
|
|
15
15
|
## Claude Code Plugin
|
|
16
16
|
|
|
17
|
-
The package ships as a Claude Code plugin.
|
|
17
|
+
The package ships as a Claude Code plugin. Add the dreb marketplace and install:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
/plugin marketplace add aebrer/dreb
|
|
21
|
+
/plugin install semantic-search@dreb
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or from the CLI outside a session:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
claude plugin marketplace add aebrer/dreb
|
|
28
|
+
claude plugin install semantic-search@dreb
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Alternatively, register the MCP server directly without the plugin system:
|
|
18
32
|
|
|
19
33
|
```bash
|
|
20
34
|
claude mcp add --transport stdio semantic-search -- npx @dreb/semantic-search semantic-search-mcp
|
|
21
35
|
```
|
|
22
36
|
|
|
23
|
-
For local development:
|
|
37
|
+
For local development from a cloned repo:
|
|
24
38
|
|
|
25
39
|
```bash
|
|
26
|
-
claude --plugin-dir
|
|
40
|
+
claude --plugin-dir ./packages/semantic-search
|
|
27
41
|
```
|
|
28
42
|
|
|
29
43
|
## MCP Server
|