delete.md

 1Deletes files or directories from the filesystem.
 2
 3<critical_rules>
 4- NEVER use `rm` command in bash - always use this tool for all file/directory deletions
 5</critical_rules>
 6
 7<usage>
 8- Provide file path to delete
 9- For directories, always set recursive=true to delete the directory
10- Tool handles LSP cleanup automatically (closes open files, clears diagnostics)
11</usage>
12
13<limitations>
14- Cannot delete files outside the working directory
15- Deleting directories requires recursive=true (even if empty)
16- Deleted files cannot be recovered (no trash/recycle bin)
17</limitations>