claude-dev-env 1.64.2 → 1.64.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/CLAUDE.md +6 -8
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -105,9 +105,8 @@ Before any coding task, call the `initial_instructions` tool to load the Serena
|
|
|
105
105
|
|
|
106
106
|
### Tool hierarchy for code navigation
|
|
107
107
|
1. **Serena** — symbol-level navigation (declarations, references, implementations, rename)
|
|
108
|
-
2. **
|
|
109
|
-
3. **
|
|
110
|
-
4. **Grep/Glob** — fallback pattern matching
|
|
108
|
+
2. **Everything** (`everything_search`) — file-system search by name/path/extension
|
|
109
|
+
3. **Grep/Glob** — content and pattern matching
|
|
111
110
|
|
|
112
111
|
## Everything Search (MCP Tool)
|
|
113
112
|
|
|
@@ -115,13 +114,12 @@ This machine has **Everything (voidtools)** running with an HTTP server on port
|
|
|
115
114
|
The `everything_search` MCP tool is available in every session.
|
|
116
115
|
|
|
117
116
|
### Use Everything for file-system searches
|
|
118
|
-
Use `everything_search` for finding files by name, path, extension, size, or date. For content searches
|
|
117
|
+
Use `everything_search` for finding files by name, path, extension, size, or date. For content searches, use Grep — Everything's `content:` search is a fallback when Grep returns nothing.
|
|
119
118
|
|
|
120
119
|
### Fallback order
|
|
121
|
-
1. **
|
|
122
|
-
2. **
|
|
123
|
-
3. **
|
|
124
|
-
4. **Glob** — precise relative-path pattern matching within the current project
|
|
120
|
+
1. **Everything** (`everything_search`) — file-system search by name/path/extension/size/date, and content search
|
|
121
|
+
2. **Grep** — complex regex content searches if Everything's `content:` returns nothing
|
|
122
|
+
3. **Glob** — precise relative-path pattern matching within the current project
|
|
125
123
|
|
|
126
124
|
### Search syntax quick reference
|
|
127
125
|
- `ext:py` — find by extension (multiple: `ext:ts;js`)
|