codesift-mcp 0.5.12 → 0.5.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codesift-mcp",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "description": "MCP server for code intelligence — 146 tools for symbol search, call graph, semantic search, route tracing, community detection, LSP bridge, secret detection, conversation search, and Hono framework intelligence",
5
5
  "license": "BSL-1.1",
6
6
  "author": "Greg Laskowski",
package/rules/codesift.md CHANGED
@@ -8,18 +8,19 @@ The `repo` parameter auto-resolves from the current working directory — no nee
8
8
  If the repo is not yet indexed, run `index_folder(path=<root>)` once.
9
9
  For multi-repo sessions, call `list_repos()` to discover available repos.
10
10
 
11
- ## MANDATORY: Use CodeSift NEVER use Glob/Grep/Explore for code search
11
+ ## PREFER CodeSift over Bash/Glob/Grep
12
12
 
13
- **CRITICAL:** When CodeSift MCP tools are available (mcp__codesift__* in tool list):
14
- - **NEVER** use Glob for file search → use `get_file_tree(compact=true, name_pattern="*.ts")`
15
- - **NEVER** use Grep for code search → use `search_text(query, file_pattern=)`
16
- - **NEVER** use `Bash(find)` → use `get_file_tree`
17
- - **NEVER** use `Bash(grep -r)` or `Bash(rg)` → use `search_text`
18
- - **NEVER** delegate code search to the Explore subagent — Explore does NOT have CodeSift MCP tools. Perform ALL code searches yourself using CodeSift tools directly.
19
- - **NEVER** use the Agent tool with subagent_type="Explore" for finding files, searching code, or reading code. Do it yourself with CodeSift.
13
+ When CodeSift MCP tools are available, ALWAYS prefer them over shell commands:
14
+ - `Bash(find ... -name)` → use `get_file_tree(repo, compact=true, name_pattern="*.ts")`
15
+ - `Bash(grep -r ...)` or `Bash(rg ...)` → use `search_text(repo, query, file_pattern=)`
16
+ - `Glob(pattern)` for code discovery → use `get_file_tree(repo, name_pattern=)`
17
+ - `Grep(pattern)` for code search → use `search_text(repo, query)`
20
18
 
19
+ This applies to ALL agents including sub-agents spawned via the Agent tool.
21
20
  The `repo` param is optional — it auto-resolves from CWD. Just call CodeSift tools directly.
22
21
 
22
+ Note: The Explore subagent does NOT have access to CodeSift MCP tools. For code search tasks, use CodeSift tools directly instead of delegating to Explore.
23
+
23
24
  ## Tool Discovery
24
25
 
25
26
  **146 MCP tools total** (51 core visible + 95 discoverable).