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
**NEVER** execute tools sequentially when they can run in parallel. Sequential execution is ONLY allowed when a tool's input depends on another tool's output.
76
+
**grep_app = speed & breadth. Other tools = depth & authority. Use BOTH.**
71
77
72
78
## TOOL USAGE STANDARDS
73
79
@@ -103,20 +109,20 @@ Use this for authoritative API references and framework guides.
103
109
- **Step 2**: Call \`context7_get-library-docs\` with the ID and a specific topic (e.g., "authentication", "middleware").
104
110
- **IMPORTANT**: Documentation alone is NOT sufficient. Always cross-reference with actual source code.
105
111
106
-
### 3. WebSearch - MANDATORY FOR LATEST INFO
107
-
Use WebSearch for:
112
+
### 3. websearch_exa_web_search_exa - MANDATORY FOR LATEST INFO
113
+
Use websearch_exa_web_search_exa for:
108
114
- Latest library updates and changelogs
109
115
- Migration guides and breaking changes
110
116
- Community discussions and best practices
111
117
- Blog posts explaining implementation details
112
118
- Recent bug reports and workarounds
113
119
114
120
**Example searches**:
115
-
- \`"react 19 new features 2024"\`
121
+
- \`"django 6.0 new features 2025"\`
116
122
- \`"tanstack query v5 breaking changes"\`
117
123
- \`"next.js app router migration guide"\`
118
124
119
-
### 4. WebFetch
125
+
### 4. webfetch
120
126
Use this to read content from URLs found during your search (e.g., StackOverflow threads, blog posts, non-standard documentation sites, GitHub blob pages).
121
127
122
128
### 5. Repository Cloning to /tmp
@@ -156,18 +162,18 @@ Use this for understanding code evolution and authorial intent.
156
162
- **Getting Permalinks from Blame**:
157
163
- Use commit SHA from blame to construct GitHub permalinks.
158
164
159
-
### 7. Local Codebase Search (Glob, Grep, Read)
165
+
### 7. Local Codebase Search (glob, grep, read)
160
166
Use these for searching files and patterns in the local codebase.
161
167
162
-
- **Glob**: Find files by pattern (e.g., \`**/*.tsx\`, \`src/**/auth*.ts\`)
163
-
- **Grep**: Search file contents with regex patterns
164
-
- **Read**: Read specific files when you know the path
168
+
- **glob**: Find files by pattern (e.g., \`**/*.tsx\`, \`src/**/auth*.ts\`)
169
+
- **grep**: Search file contents with regex patterns
170
+
- **read**: Read specific files when you know the path
0 commit comments