@probelabs/probe 0.6.0-rc282 → 0.6.0-rc284

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.
@@ -9085,6 +9085,48 @@ var init_hashline = __esm({
9085
9085
  // src/tools/vercel.js
9086
9086
  import { tool } from "ai";
9087
9087
  import { existsSync } from "fs";
9088
+ function autoQuoteSearchTerms(query2) {
9089
+ if (!query2 || typeof query2 !== "string") return query2;
9090
+ const tokens = [];
9091
+ let i = 0;
9092
+ while (i < query2.length) {
9093
+ if (/\s/.test(query2[i])) {
9094
+ i++;
9095
+ continue;
9096
+ }
9097
+ if (query2[i] === '"') {
9098
+ const end = query2.indexOf('"', i + 1);
9099
+ if (end !== -1) {
9100
+ tokens.push(query2.substring(i, end + 1));
9101
+ i = end + 1;
9102
+ } else {
9103
+ tokens.push(query2.substring(i));
9104
+ break;
9105
+ }
9106
+ continue;
9107
+ }
9108
+ let j = i;
9109
+ while (j < query2.length && !/\s/.test(query2[j]) && query2[j] !== '"') {
9110
+ j++;
9111
+ }
9112
+ tokens.push(query2.substring(i, j));
9113
+ i = j;
9114
+ }
9115
+ const operators = /* @__PURE__ */ new Set(["AND", "OR", "NOT"]);
9116
+ const result = tokens.map((token) => {
9117
+ if (token.startsWith('"')) return token;
9118
+ if (operators.has(token)) return token;
9119
+ const hasUpper = /[A-Z]/.test(token);
9120
+ const hasLower = /[a-z]/.test(token);
9121
+ const hasUnderscore = token.includes("_");
9122
+ const hasMixedCase = hasUpper && hasLower;
9123
+ if (hasMixedCase || hasUnderscore) {
9124
+ return `"${token}"`;
9125
+ }
9126
+ return token;
9127
+ });
9128
+ return result.join(" ");
9129
+ }
9088
9130
  function normalizeTargets(targets) {
9089
9131
  if (!Array.isArray(targets)) return [];
9090
9132
  const seen = /* @__PURE__ */ new Set();
@@ -9199,41 +9241,61 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
9199
9241
  '- This is ideal for precise lookups: exact=true "ForwardMessage", exact=true "SessionLimiter", exact=true "ThrottleRetryLimit".',
9200
9242
  "- Do NOT use exact=true for exploratory/conceptual queries \u2014 use the default for those.",
9201
9243
  "",
9244
+ "Combining searches with OR:",
9245
+ '- Multiple unquoted words use OR logic: rate limit matches files containing EITHER "rate" OR "limit".',
9246
+ `- For known symbol names, quote each term to prevent splitting: '"limitDRL" "limitRedis"' matches either exact symbol.`,
9247
+ '- Without quotes, camelCase like limitDRL gets split into "limit" + "DRL" \u2014 not what you want for symbol lookup.',
9248
+ "- Use OR to search for multiple related symbols in ONE search instead of separate searches.",
9249
+ "- This is much faster than running separate searches sequentially.",
9250
+ `- Example: search '"ForwardMessage" "SessionLimiter"' finds files with either exact symbol in one call.`,
9251
+ `- Example: search '"limitDRL" "doRollingWindowWrite"' finds both rate limiting functions at once.`,
9252
+ '- Use AND only when you need both terms to appear in the same file: "rate AND limit".',
9253
+ "",
9254
+ "Parallel tool calls:",
9255
+ "- When you need to search for INDEPENDENT concepts, call multiple search tools IN PARALLEL (same response).",
9256
+ "- Do NOT wait for one search to finish before starting the next if they are independent.",
9257
+ '- Example: for "rate limiting and session management", call search "rate limiting" AND search "session management" in parallel.',
9258
+ "- Similarly, call multiple extract tools in parallel when verifying different files.",
9259
+ "",
9202
9260
  "GOOD search strategy (do this):",
9203
9261
  ' Query: "How does authentication work and how are sessions managed?"',
9204
- ' \u2192 search "authentication" \u2192 search "session management" (two different concepts)',
9262
+ ' \u2192 search "authentication" + search "session management" IN PARALLEL (two independent concepts)',
9205
9263
  ' Query: "Find the IP allowlist middleware"',
9206
9264
  ' \u2192 search "allowlist middleware" (one search, probe handles IP/ip/Ip variations)',
9207
- ' Query: "How does BM25 scoring work with SIMD optimization?"',
9208
- ' \u2192 search "BM25 scoring" \u2192 search "SIMD optimization" (two different concepts)',
9209
- ' Query: "Find ForwardMessage and SessionLimiter functions"',
9210
- ' \u2192 search exact=true "ForwardMessage" \u2192 search exact=true "SessionLimiter" (known symbols, use exact)',
9265
+ ' Query: "Find ForwardMessage and SessionLimiter"',
9266
+ ` \u2192 search '"ForwardMessage" "SessionLimiter"' (one OR search finds both exact symbols)`,
9267
+ ' OR: search exact=true "ForwardMessage" + search exact=true "SessionLimiter" IN PARALLEL',
9268
+ ' Query: "Find limitDRL and limitRedis functions"',
9269
+ ` \u2192 search '"limitDRL" "limitRedis"' (one OR search, quoted to prevent camelCase splitting)`,
9211
9270
  ' Query: "Find ThrottleRetryLimit usage"',
9212
9271
  ' \u2192 search exact=true "ThrottleRetryLimit" (one search, if no results the symbol does not exist \u2014 stop)',
9272
+ ' Query: "How does BM25 scoring work with SIMD optimization?"',
9273
+ ' \u2192 search "BM25 scoring" + search "SIMD optimization" IN PARALLEL (two different concepts)',
9213
9274
  "",
9214
9275
  "BAD search strategy (never do this):",
9215
9276
  ' \u2192 search "AllowedIPs" \u2192 search "allowedIps" \u2192 search "allowed_ips" (WRONG: case/style variations, probe handles them)',
9216
- ' \u2192 search "limitDRL" \u2192 search "LimitDRL" (WRONG: case variation of same term)',
9277
+ ` \u2192 search "limitDRL" \u2192 search "LimitDRL" (WRONG: case variation \u2014 combine with OR: '"limitDRL" "limitRedis"')`,
9217
9278
  ' \u2192 search "throttle_retry_limit" after searching "ThrottleRetryLimit" (WRONG: snake_case variation, probe handles it)',
9218
- ' \u2192 search "ThrottleRetryLimit" path=tyk \u2192 search "ThrottleRetryLimit" path=gateway \u2192 search "ThrottleRetryLimit" path=apidef (WRONG: same query on different paths hoping for different results)',
9279
+ ' \u2192 search "ThrottleRetryLimit" path=tyk \u2192 search "ThrottleRetryLimit" path=gateway \u2192 search "ThrottleRetryLimit" path=apidef (WRONG: same query on different paths \u2014 probe searches recursively)',
9219
9280
  ' \u2192 search "func (k *RateLimitAndQuotaCheck) handleRateLimitFailure" (WRONG: do not search full function signatures, just use exact=true "handleRateLimitFailure")',
9220
9281
  ' \u2192 search "ForwardMessage" \u2192 search "ForwardMessage" \u2192 search "ForwardMessage" (WRONG: repeating the exact same query)',
9221
- ' \u2192 search "error handling" \u2192 search "error handling" \u2192 search "error handling" (WRONG: repeating exact same query)',
9282
+ ' \u2192 search "authentication" \u2192 wait \u2192 search "session management" \u2192 wait (WRONG: these are independent, run them in parallel)',
9222
9283
  "",
9223
9284
  "Keyword tips:",
9224
9285
  "- Common programming keywords are filtered as stopwords when unquoted: function, class, return, new, struct, impl, var, let, const, etc.",
9225
9286
  '- Avoid searching for these alone \u2014 combine with a specific term (e.g., "middleware function" is fine, "function" alone is too generic).',
9226
9287
  '- To bypass stopword filtering: wrap terms in quotes ("return", "struct") or set exact=true. Both disable stemming and splitting too.',
9227
- "- Multiple words without operators use OR logic: foo bar = foo OR bar. Use AND explicitly if you need both: foo AND bar.",
9228
9288
  '- camelCase terms are split: getUserData becomes "get", "user", "data" \u2014 so one search covers all naming styles.',
9229
9289
  '- Do NOT search for full function signatures like "func (r *Type) Method(args)". Just search for the method name with exact=true.',
9230
9290
  "",
9231
9291
  "Strategy:",
9232
- "1. Analyze the query - identify key concepts, entities, and relationships",
9233
- "2. Run ONE focused search per concept. For known symbol names use exact=true. For concepts use default (exact=false).",
9234
- "3. If a search returns results, use extract to verify relevance",
9235
- "4. If a search returns NO results, the term does not exist in the codebase. Do NOT retry with variations, different paths, or longer strings. Move on.",
9236
- "5. Combine all relevant targets in your final response",
9292
+ "1. Analyze the query - identify key concepts and group related symbols",
9293
+ `2. Combine related symbols into OR searches: '"symbolA" "symbolB"' finds files with either (quote to prevent splitting)`,
9294
+ "3. Run INDEPENDENT searches in PARALLEL \u2014 do not wait for one to finish before starting another",
9295
+ "4. For known symbol names use exact=true. For concepts use default (exact=false).",
9296
+ "5. If a search returns results, use extract to verify relevance. Run multiple extracts in parallel too.",
9297
+ "6. If a search returns NO results, the term does not exist. Do NOT retry with variations, different paths, or longer strings. Move on.",
9298
+ "7. Combine all relevant targets in your final response",
9237
9299
  "",
9238
9300
  `Query: ${searchQuery}`,
9239
9301
  `Search path(s): ${searchPath}`,
@@ -9292,6 +9354,13 @@ var init_vercel = __esm({
9292
9354
  description: searchDelegate ? searchDelegateDescription : searchDescription,
9293
9355
  inputSchema: searchSchema,
9294
9356
  execute: async ({ query: searchQuery, path: path9, allow_tests, exact, maxTokens: paramMaxTokens, language, session, nextPage }) => {
9357
+ if (!exact && searchQuery) {
9358
+ const originalQuery = searchQuery;
9359
+ searchQuery = autoQuoteSearchTerms(searchQuery);
9360
+ if (debug && searchQuery !== originalQuery) {
9361
+ console.error(`[search] Auto-quoted query: "${originalQuery}" \u2192 "${searchQuery}"`);
9362
+ }
9363
+ }
9295
9364
  const effectiveMaxTokens = paramMaxTokens || maxTokens;
9296
9365
  let searchPaths;
9297
9366
  if (path9) {
@@ -9327,13 +9396,13 @@ var init_vercel = __esm({
9327
9396
  return await search(searchOptions);
9328
9397
  };
9329
9398
  if (!searchDelegate) {
9330
- const searchKey = `${searchQuery}::${searchPath}::${exact || false}`;
9399
+ const searchKey = `${searchQuery}::${exact || false}`;
9331
9400
  if (!nextPage) {
9332
9401
  if (previousSearches.has(searchKey)) {
9333
9402
  if (debug) {
9334
- console.error(`[DEDUP] Blocked duplicate search: "${searchQuery}" in "${searchPath}"`);
9403
+ console.error(`[DEDUP] Blocked duplicate search: "${searchQuery}" (path: "${searchPath}")`);
9335
9404
  }
9336
- return "DUPLICATE SEARCH BLOCKED: You already searched for this exact query in this path. Do NOT repeat the same search. If you need more results, set nextPage=true with the session ID from the previous search. Otherwise, try a genuinely different keyword, use extract to examine results you already found, or use attempt_completion if you have enough information.";
9405
+ return "DUPLICATE SEARCH BLOCKED: You already searched for this exact query. Changing the path does NOT give different results \u2014 probe searches recursively. Do NOT repeat the same search. Try a genuinely different keyword, use extract to examine results you already found, or use attempt_completion if you have enough information.";
9337
9406
  }
9338
9407
  previousSearches.add(searchKey);
9339
9408
  paginationCounts.set(searchKey, 0);
@@ -14,6 +14,75 @@ import { existsSync } from 'fs';
14
14
  import { formatErrorForAI } from '../utils/error-types.js';
15
15
  import { annotateOutputWithHashes } from './hashline.js';
16
16
 
17
+ /**
18
+ * Auto-quote search query terms that contain mixed case or underscores.
19
+ * Unquoted camelCase like "limitDRL" gets split by stemming into "limit" + "DRL".
20
+ * This wraps such terms in quotes so they match as literal strings.
21
+ *
22
+ * Examples:
23
+ * "limitDRL limitRedis" → '"limitDRL" "limitRedis"'
24
+ * "ThrottleRetryLimit" → '"ThrottleRetryLimit"'
25
+ * "allowed_ips" → '"allowed_ips"'
26
+ * "rate limit" → 'rate limit' (no change, all lowercase)
27
+ * '"already quoted"' → '"already quoted"' (no change)
28
+ * 'foo AND bar' → 'foo AND bar' (operators preserved)
29
+ */
30
+ function autoQuoteSearchTerms(query) {
31
+ if (!query || typeof query !== 'string') return query;
32
+
33
+ // Split on whitespace, preserving quoted strings and operators
34
+ const tokens = [];
35
+ let i = 0;
36
+ while (i < query.length) {
37
+ // Skip whitespace
38
+ if (/\s/.test(query[i])) {
39
+ i++;
40
+ continue;
41
+ }
42
+ // Quoted string — keep as-is
43
+ if (query[i] === '"') {
44
+ const end = query.indexOf('"', i + 1);
45
+ if (end !== -1) {
46
+ tokens.push(query.substring(i, end + 1));
47
+ i = end + 1;
48
+ } else {
49
+ // Unclosed quote — take rest
50
+ tokens.push(query.substring(i));
51
+ break;
52
+ }
53
+ continue;
54
+ }
55
+ // Unquoted token
56
+ let j = i;
57
+ while (j < query.length && !/\s/.test(query[j]) && query[j] !== '"') {
58
+ j++;
59
+ }
60
+ tokens.push(query.substring(i, j));
61
+ i = j;
62
+ }
63
+
64
+ // Boolean operators that should not be quoted
65
+ const operators = new Set(['AND', 'OR', 'NOT']);
66
+
67
+ const result = tokens.map(token => {
68
+ // Already quoted
69
+ if (token.startsWith('"')) return token;
70
+ // Boolean operator
71
+ if (operators.has(token)) return token;
72
+ // Check if token needs quoting: has mixed case (upper+lower) or underscores
73
+ const hasUpper = /[A-Z]/.test(token);
74
+ const hasLower = /[a-z]/.test(token);
75
+ const hasUnderscore = token.includes('_');
76
+ const hasMixedCase = hasUpper && hasLower;
77
+ if (hasMixedCase || hasUnderscore) {
78
+ return `"${token}"`;
79
+ }
80
+ return token;
81
+ });
82
+
83
+ return result.join(' ');
84
+ }
85
+
17
86
  const CODE_SEARCH_SCHEMA = {
18
87
  type: 'object',
19
88
  properties: {
@@ -158,41 +227,61 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
158
227
  '- This is ideal for precise lookups: exact=true "ForwardMessage", exact=true "SessionLimiter", exact=true "ThrottleRetryLimit".',
159
228
  '- Do NOT use exact=true for exploratory/conceptual queries — use the default for those.',
160
229
  '',
230
+ 'Combining searches with OR:',
231
+ '- Multiple unquoted words use OR logic: rate limit matches files containing EITHER "rate" OR "limit".',
232
+ '- For known symbol names, quote each term to prevent splitting: \'"limitDRL" "limitRedis"\' matches either exact symbol.',
233
+ '- Without quotes, camelCase like limitDRL gets split into "limit" + "DRL" — not what you want for symbol lookup.',
234
+ '- Use OR to search for multiple related symbols in ONE search instead of separate searches.',
235
+ '- This is much faster than running separate searches sequentially.',
236
+ '- Example: search \'"ForwardMessage" "SessionLimiter"\' finds files with either exact symbol in one call.',
237
+ '- Example: search \'"limitDRL" "doRollingWindowWrite"\' finds both rate limiting functions at once.',
238
+ '- Use AND only when you need both terms to appear in the same file: "rate AND limit".',
239
+ '',
240
+ 'Parallel tool calls:',
241
+ '- When you need to search for INDEPENDENT concepts, call multiple search tools IN PARALLEL (same response).',
242
+ '- Do NOT wait for one search to finish before starting the next if they are independent.',
243
+ '- Example: for "rate limiting and session management", call search "rate limiting" AND search "session management" in parallel.',
244
+ '- Similarly, call multiple extract tools in parallel when verifying different files.',
245
+ '',
161
246
  'GOOD search strategy (do this):',
162
247
  ' Query: "How does authentication work and how are sessions managed?"',
163
- ' → search "authentication" search "session management" (two different concepts)',
248
+ ' → search "authentication" + search "session management" IN PARALLEL (two independent concepts)',
164
249
  ' Query: "Find the IP allowlist middleware"',
165
250
  ' → search "allowlist middleware" (one search, probe handles IP/ip/Ip variations)',
166
- ' Query: "How does BM25 scoring work with SIMD optimization?"',
167
- ' → search "BM25 scoring" search "SIMD optimization" (two different concepts)',
168
- ' Query: "Find ForwardMessage and SessionLimiter functions"',
169
- ' search exact=true "ForwardMessage" search exact=true "SessionLimiter" (known symbols, use exact)',
251
+ ' Query: "Find ForwardMessage and SessionLimiter"',
252
+ ' → search \'"ForwardMessage" "SessionLimiter"\' (one OR search finds both exact symbols)',
253
+ ' OR: search exact=true "ForwardMessage" + search exact=true "SessionLimiter" IN PARALLEL',
254
+ ' Query: "Find limitDRL and limitRedis functions"',
255
+ ' → search \'"limitDRL" "limitRedis"\' (one OR search, quoted to prevent camelCase splitting)',
170
256
  ' Query: "Find ThrottleRetryLimit usage"',
171
257
  ' → search exact=true "ThrottleRetryLimit" (one search, if no results the symbol does not exist — stop)',
258
+ ' Query: "How does BM25 scoring work with SIMD optimization?"',
259
+ ' → search "BM25 scoring" + search "SIMD optimization" IN PARALLEL (two different concepts)',
172
260
  '',
173
261
  'BAD search strategy (never do this):',
174
262
  ' → search "AllowedIPs" → search "allowedIps" → search "allowed_ips" (WRONG: case/style variations, probe handles them)',
175
- ' → search "limitDRL" → search "LimitDRL" (WRONG: case variation of same term)',
263
+ ' → search "limitDRL" → search "LimitDRL" (WRONG: case variation combine with OR: \'"limitDRL" "limitRedis"\')',
176
264
  ' → search "throttle_retry_limit" after searching "ThrottleRetryLimit" (WRONG: snake_case variation, probe handles it)',
177
- ' → search "ThrottleRetryLimit" path=tyk → search "ThrottleRetryLimit" path=gateway → search "ThrottleRetryLimit" path=apidef (WRONG: same query on different paths hoping for different results)',
265
+ ' → search "ThrottleRetryLimit" path=tyk → search "ThrottleRetryLimit" path=gateway → search "ThrottleRetryLimit" path=apidef (WRONG: same query on different paths probe searches recursively)',
178
266
  ' → search "func (k *RateLimitAndQuotaCheck) handleRateLimitFailure" (WRONG: do not search full function signatures, just use exact=true "handleRateLimitFailure")',
179
267
  ' → search "ForwardMessage" → search "ForwardMessage" → search "ForwardMessage" (WRONG: repeating the exact same query)',
180
- ' → search "error handling" → search "error handling" → search "error handling" (WRONG: repeating exact same query)',
268
+ ' → search "authentication" → wait → search "session management" → wait (WRONG: these are independent, run them in parallel)',
181
269
  '',
182
270
  'Keyword tips:',
183
271
  '- Common programming keywords are filtered as stopwords when unquoted: function, class, return, new, struct, impl, var, let, const, etc.',
184
272
  '- Avoid searching for these alone — combine with a specific term (e.g., "middleware function" is fine, "function" alone is too generic).',
185
273
  '- To bypass stopword filtering: wrap terms in quotes ("return", "struct") or set exact=true. Both disable stemming and splitting too.',
186
- '- Multiple words without operators use OR logic: foo bar = foo OR bar. Use AND explicitly if you need both: foo AND bar.',
187
274
  '- camelCase terms are split: getUserData becomes "get", "user", "data" — so one search covers all naming styles.',
188
275
  '- Do NOT search for full function signatures like "func (r *Type) Method(args)". Just search for the method name with exact=true.',
189
276
  '',
190
277
  'Strategy:',
191
- '1. Analyze the query - identify key concepts, entities, and relationships',
192
- '2. Run ONE focused search per concept. For known symbol names use exact=true. For concepts use default (exact=false).',
193
- '3. If a search returns results, use extract to verify relevance',
194
- '4. If a search returns NO results, the term does not exist in the codebase. Do NOT retry with variations, different paths, or longer strings. Move on.',
195
- '5. Combine all relevant targets in your final response',
278
+ '1. Analyze the query - identify key concepts and group related symbols',
279
+ '2. Combine related symbols into OR searches: \'"symbolA" "symbolB"\' finds files with either (quote to prevent splitting)',
280
+ '3. Run INDEPENDENT searches in PARALLEL do not wait for one to finish before starting another',
281
+ '4. For known symbol names use exact=true. For concepts use default (exact=false).',
282
+ '5. If a search returns results, use extract to verify relevance. Run multiple extracts in parallel too.',
283
+ '6. If a search returns NO results, the term does not exist. Do NOT retry with variations, different paths, or longer strings. Move on.',
284
+ '7. Combine all relevant targets in your final response',
196
285
  '',
197
286
  `Query: ${searchQuery}`,
198
287
  `Search path(s): ${searchPath}`,
@@ -244,6 +333,16 @@ export const searchTool = (options = {}) => {
244
333
  : searchDescription,
245
334
  inputSchema: searchSchema,
246
335
  execute: async ({ query: searchQuery, path, allow_tests, exact, maxTokens: paramMaxTokens, language, session, nextPage }) => {
336
+ // Auto-quote mixed-case and underscore terms to prevent unwanted stemming/splitting
337
+ // Skip when exact=true since that already preserves the literal string
338
+ if (!exact && searchQuery) {
339
+ const originalQuery = searchQuery;
340
+ searchQuery = autoQuoteSearchTerms(searchQuery);
341
+ if (debug && searchQuery !== originalQuery) {
342
+ console.error(`[search] Auto-quoted query: "${originalQuery}" → "${searchQuery}"`);
343
+ }
344
+ }
345
+
247
346
  // Use parameter maxTokens if provided, otherwise use the default
248
347
  const effectiveMaxTokens = paramMaxTokens || maxTokens;
249
348
 
@@ -289,13 +388,15 @@ export const searchTool = (options = {}) => {
289
388
  if (!searchDelegate) {
290
389
  // Block duplicate non-paginated searches (models sometimes repeat the exact same call)
291
390
  // Allow pagination: only nextPage=true is a legitimate repeat of the same query
292
- const searchKey = `${searchQuery}::${searchPath}::${exact || false}`;
391
+ // Use query+exact as the key (ignore path) to prevent path-hopping evasion
392
+ // where model searches same term on different subpaths hoping for different results
393
+ const searchKey = `${searchQuery}::${exact || false}`;
293
394
  if (!nextPage) {
294
395
  if (previousSearches.has(searchKey)) {
295
396
  if (debug) {
296
- console.error(`[DEDUP] Blocked duplicate search: "${searchQuery}" in "${searchPath}"`);
397
+ console.error(`[DEDUP] Blocked duplicate search: "${searchQuery}" (path: "${searchPath}")`);
297
398
  }
298
- return 'DUPLICATE SEARCH BLOCKED: You already searched for this exact query in this path. Do NOT repeat the same search. If you need more results, set nextPage=true with the session ID from the previous search. Otherwise, try a genuinely different keyword, use extract to examine results you already found, or use attempt_completion if you have enough information.';
399
+ return 'DUPLICATE SEARCH BLOCKED: You already searched for this exact query. Changing the path does NOT give different results probe searches recursively. Do NOT repeat the same search. Try a genuinely different keyword, use extract to examine results you already found, or use attempt_completion if you have enough information.';
299
400
  }
300
401
  previousSearches.add(searchKey);
301
402
  paginationCounts.set(searchKey, 0);