Skip to content

Commit 3796412

Browse files
committed
refactor: MCP fine-tune select guidance
1 parent fc2e255 commit 3796412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.claude/skills/src/mcp-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const METADATA_COMMANDS = new Set([
7777
* Guidance for when to use each command - helps Claude make smart decisions
7878
*/
7979
const WHEN_TO_USE_GUIDANCE: Record<string, string> = {
80-
'select': 'Choosing specific columns. Use selection syntax: "1,3,5" for specific columns, "1-10" for ranges, "!SSN" to exclude sensitive columns. _ is a special character for the last column. Can also select columns using a regex using "/<regex>/"',
80+
'select': 'Choosing specific columns. Use selection syntax: "1,3,5" for specific columns, "1-10" for ranges, "!SSN" to exclude sensitive columns. Use "_" for the last column. You can also select columns using regex with the syntax "/<regex>/".',
8181
'slice': 'Selecting specific rows by position. Use for "first N rows", "last N rows", "skip N", or "rows 10-20".',
8282
'search': 'Finding rows matching a pattern/regex. Use for filtering by text content. For complex conditions or multiple criteria, consider qsv_sqlp instead.',
8383
'stats': 'Quick statistics on numeric columns (mean, min, max, stddev). Creates .stats.csv cache that speeds up other commands. Run this second (after index) on new datasets.',

0 commit comments

Comments
 (0)