"name": "Verify Information",
Add this skill
npx mdskills install PatrickJS/cursor-github-code-qualityComprehensive behavioral guidelines for AI coding agents with clear triggers and concise directives
1{2 "rules": [3 {4 "name": "Verify Information",5 "pattern": "(?i)\\b(assume|assumption|guess|speculate)\\b",6 "message": "Always verify information before presenting it. Do not make assumptions or speculate without clear evidence."7 },8 {9 "name": "File-by-File Changes",10 "pattern": "// MULTI-FILE CHANGE:",11 "message": "Make changes file by file and give me a chance to spot mistakes"12 },13 {14 "name": "No Apologies",15 "pattern": "(?i)\\b(sorry|apologize|apologies)\\b",16 "message": "Never use apologies"17 },18 {19 "name": "No Understanding Feedback",20 "pattern": "(?i)\\b(understand|understood|got it)\\b",21 "message": "Avoid giving feedback about understanding in comments or documentation"22 },23 {24 "name": "No Whitespace Suggestions",25 "pattern": "(?i)\\b(whitespace|indentation|spacing)\\b",26 "message": "Don't suggest whitespace changes"27 },28 {29 "name": "No Summaries",30 "pattern": "(?i)\\b(summary|summarize|overview)\\b",31 "message": "Don't summarize changes made"32 },33 {34 "name": "No Inventions",35 "pattern": "(?i)\\b(suggest|recommendation|propose)\\b",36 "message": "Don't invent changes other than what's explicitly requested"37 },38 {39 "name": "No Unnecessary Confirmations",40 "pattern": "(?i)\\b(make sure|confirm|verify|check)\\b",41 "message": "Don't ask for confirmation of information already provided in the context"42 },43 {44 "name": "Preserve Existing Code",45 "pattern": "(?i)\\b(remove|delete|eliminate|destroy)\\b",46 "message": "Don't remove unrelated code or functionalities. Pay attention to preserving existing structures."47 },48 {49 "name": "Single Chunk Edits",50 "pattern": "(?i)\\b(first|then|next|after that|finally)\\b",51 "message": "Provide all edits in a single chunk instead of multiple-step instructions or explanations for the same file"52 },53 {54 "name": "No Implementation Checks",55 "pattern": "(?i)\\b(make sure|verify|check|confirm) (it's|it is|that) (correctly|properly) implemented\\b",56 "message": "Don't ask the user to verify implementations that are visible in the provided context"57 },58 {59 "name": "No Unnecessary Updates",60 "pattern": "(?i)\\b(update|change|modify|alter)\\b.*\\bno changes\\b",61 "message": "Don't suggest updates or changes to files when there are no actual modifications needed"62 },63 {64 "name": "Provide Real File Links",65 "pattern": "(?i)\\b(file|in)\\b.*\\b(x\\.md)\\b",66 "message": "Always provide links to the real files, not x.md"67 },68 {69 "name": "No Previous x.md Consideration",70 "pattern": "(?i)\\b(previous|earlier|last)\\b.*\\bx\\.md\\b",71 "message": "Do not consider any previous x.md files in your memory. Complain if the contents are the same as previous runs."72 },73 {74 "name": "No Current Implementation",75 "pattern": "(?i)\\b(current|existing)\\s+(implementation|code)\\b",76 "message": "Don't show or discuss the current implementation unless specifically requested"77 },78 {79 "name": "Check x.md Content",80 "pattern": "(?i)\\b(file|content|implementation)\\b",81 "message": "Remember to check the x.md file for the current file contents and implementations"82 }83 ]84}8586
Full transparency — inspect the skill content before installing.