You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Strengthen CLAUDE.md instructions in README, bump to 0.4.4
The suggested "prefer using codebase-index" language was too weak — models
treated it as a suggestion and defaulted to Glob/Grep/Read. Replaced with
mandatory language that actually changes behavior.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,17 +138,24 @@ Or using the Python module directly (useful if installed in a virtualenv):
138
138
}
139
139
```
140
140
141
-
### Tip: Encourage the AI to Use Indexed Tools
141
+
### Important: Make the AI Actually Use Indexed Tools
142
142
143
-
By default, AI assistants may still read entire files instead of using the indexed tools. Add this to your project's `CLAUDE.md` (or equivalent instructions file) to nudge it:
143
+
By default, AI assistants will ignore the indexed tools and fall back to reading entire files with Glob/Grep/Read. Soft language like "prefer" gets rationalized away. Add this to your project's `CLAUDE.md` (or equivalent instructions file) with **mandatory** language:
144
144
145
145
```
146
-
Prefer using codebase-index MCP tools (get_project_summary, find_symbol, get_function_source,
- If you catch yourself reaching for Glob/Grep/Read to find or understand code, STOP and use
155
+
codebase-index instead
149
156
```
150
157
151
-
This ensures the AI reaches for surgical indexed queries first, which saves tokens and context window.
158
+
The word "prefer" is too weak — models treat it as a suggestion and default to familiar tools. Mandatory language with explicit fallback criteria is what actually changes behavior.
0 commit comments