Implement new account deletion and auth flows

Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
This commit is contained in:
2026-06-24 17:16:34 +03:00
Unverified
parent 712e4a9ed4
commit 306458bcd8
41 changed files with 3823 additions and 1596 deletions
+22
View File
@@ -0,0 +1,22 @@
---
description: Do not use ripgrep (rg) in shell commands or scripts
alwaysApply: true
---
# Never use `rg`
Do **not** run `rg` / ripgrep in terminal commands. It is unreliable in this environment.
## Use instead
- **Cursor Grep tool** — preferred for searching the codebase
- **`grep -r`** — if a shell search is truly needed
- **Glob / SemanticSearch** — for finding files or concepts
```bash
# ❌ BAD
rg "probeCurrentServer" app/shared
# ✅ GOOD — use the Grep tool, or:
grep -r "probeCurrentServer" app/shared
```