Private
Public Access
1
0

feat(ai): Adding Cline rules files

This commit is contained in:
gauvainboiche
2026-03-30 11:27:57 +02:00
parent 84af90e81e
commit b19fb262a4
4 changed files with 138 additions and 0 deletions

10
.clinerules/shell.md Normal file
View File

@@ -0,0 +1,10 @@
# Shell & OS Rules
- Always use bash/sh syntax for terminal commands, never PowerShell
- Use `cp` instead of `Copy-Item`
- Use `mv` instead of `Move-Item`
- Use `rm` instead of `Remove-Item`
- Use `mkdir -p` instead of `New-Item -ItemType Directory`
- Use `cat` instead of `Get-Content`
- Use forward slashes `/` in paths, never backslashes `\`
- Do not use `$env:` for environment variables, use `$VAR` syntax