
Account Delete
- 60 installs
- Updated January 1, 1970
- dengineproblem/agents-monorepo
Implements a compliant account-deletion flow so a solo builder can let users delete their account and associated data, satisfying privacy requirements like GDPR right-to-erasure.
About
A skill for building an account-deletion feature that removes a user's account and cascades cleanup of their related data. A solo builder reaches for it when adding self-service deletion to a live product to meet privacy regulations like GDPR right-to-erasure and to keep the data model clean when users leave.
- User account deletion flow
- Cascading data cleanup
- Privacy-compliant erasure
Account Delete by the numbers
- 60 all-time installs (skills.sh)
- Ranked #3,161 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dengineproblem/agents-monorepo --skill account-deleteAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 60 |
|---|---|
| Last updated | January 1, 1970 |
| Repository | dengineproblem/agents-monorepo ↗ |
What it does
Implements a compliant account-deletion flow so a solo builder can let users delete their account and associated data, satisfying privacy requirements like GDPR right-to-erasure.
Who is it for?
SaaS apps needing compliant self-service account deletion
When should I use this skill?
You need to add account/data deletion to a product
Files
Account Delete
Удаление рекламного аккаунта и всех связанных файлов конфигурации.
---
Что удаляется
.claude/ads-agent/config/
├── ad_accounts.md ← удаляется секция аккаунта
├── briefs/{account}.md ← удаляется файл
└── naming/{account}_naming.md ← удаляется файл (если есть)---
Workflow (4 шага)
Шаг 1: Выбор аккаунта
Какой аккаунт удалить?Покажи список из .claude/ads-agent/config/ad_accounts.md:
Доступные аккаунты:
| # | Название | Account ID | Статус |
|---|----------|------------|--------|
| 1 | Bas Dent | act_805414428109857 | активен |
| 2 | Profimed | act_1106872004544227 | активен |
Введи номер или название аккаунта:---
Шаг 2: Подтверждение
ВАЖНО: Покажи что будет удалено:
⚠️ ВНИМАНИЕ: Будут удалены следующие файлы:
1. briefs/{account}.md — бриф аккаунта
2. naming/{account}_naming.md — правила нейминга (если есть)
3. Секция в ad_accounts.md — запись об аккаунте
Данные в Facebook Ads НЕ затрагиваются — удаляется только локальная конфигурация.
Подтвердить удаление? (да / нет)---
Шаг 3: Удаление файлов
При подтверждении:
1. Удали бриф:
rm .claude/ads-agent/config/briefs/{account}.md2. Удали naming rules (если есть):
rm .claude/ads-agent/config/naming/{account}_naming.md3. Удали секцию из ad_accounts.md:
- Найди секцию
## Аккаунт N: {Название} - Удали всю секцию до следующего
---
---
Шаг 4: Подтверждение удаления
✅ Аккаунт {название} удалён
Удалено:
- [x] briefs/{account}.md
- [x] naming/{account}_naming.md (или "не было")
- [x] Секция в ad_accounts.md
Данные в Facebook Ads не затронуты.---
Пример использования
User: /account-delete