@dreb/semantic-search 1.18.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.
@@ -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": "1.17.1",
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. Install via a marketplace that includes it as an npm source, or register the MCP server directly:
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 /path/to/packages/semantic-search
40
+ claude --plugin-dir ./packages/semantic-search
27
41
  ```
28
42
 
29
43
  ## MCP Server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/semantic-search",
3
- "version": "1.18.0",
3
+ "version": "2.0.1",
4
4
  "description": "Semantic codebase search engine with embedding-based ranking and MCP server",
5
5
  "publishConfig": {
6
6
  "access": "public"