Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add launch52-ai/flutter-template --skill account-deletiongit clone --depth 1 https://github.com/launch52-ai/flutter-templateWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/launch52-ai/flutter-template/account-deletion)<a href="https://agentmods.dev/skills/launch52-ai/flutter-template/account-deletion"><img src="https://agentmods.dev/badge/skills/launch52-ai/flutter-template/account-deletion.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00055 | $0.01516 |
| Opus 5 | $0.00028 | $0.00758 |
| Sonnet 5 | $0.00011 | $0.00303 |
| Haiku 4.5 | $0.00006 | $0.00152 |
Grade A, and why
account-deletion scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Account Deletion
Implements GDPR, App Store, and Play Store compliant account deletion with proper confirmation flows, backend data cleanup, and secure sign-out. Required by both Apple App Store and Google Play Store guidelines for apps with account creation.
When to Use This Skill
- Adding account deletion to settings screen
- App Store or Play Store review requires account deletion
- Implementing GDPR "right to erasure"
- User asks "add delete account", "remove account option"
- Settings feature needs user data deletion
When NOT to Use This Skill
- User just wants to sign out - Use
/authsignOut method - Deleting app data only (no account) - Manual implementation
- Admin user deletion - Custom admin feature
Questions to Ask
- Backend type: Supabase, Firebase, or Custom API?
- Confirmation method: Password re-entry, typed confirmation, or simple dialog?
- Grace period: Immediate deletion or scheduled (e.g., 30 days)?
- Data cleanup: What user data needs deletion? (storage, analytics, etc.)
Quick Reference
App Store & Play Store Requirements
| Requirement | Implementation |
|---|---|
| Easy to find | Settings > Account > Delete Account |
| Clear explanation | Show what data will be deleted |
| Confirmation | Require explicit user action |
| Complete deletion | Remove all user data from backend |
| In-app option | Must be accessible within the app (not just web) |
GDPR Compliance
| Right | Implementation |
|---|---|
| Right to erasure | Full account + data deletion |
| Clear consent | Explicit confirmation required |
| Data portability | (Optional) Export before deletion |
Confirmation Methods
| Method | Security | UX | Use Case |
|---|---|---|---|
| Password re-entry | High | Low | Financial/sensitive apps |
| Type "DELETE" | Medium | Medium | Standard apps |
| Simple dialog | Low | High | Low-risk apps |
Workflow
Phase 1: Ask Questions
What ships with it
13 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- checklist.md 4.0 KB
- implementation-guide.md 5.9 KB
- reference/failures/account_deletion_failure.dart 2.1 KB
- reference/providers/account_deletion_notifier.dart 3.6 KB
- reference/repositories/settings_repository_api.dart 3.6 KB
- reference/repositories/settings_repository_firebase.dart 3.8 KB
- reference/repositories/settings_repository_interface.dart 1.1 KB
- reference/repositories/settings_repository_supabase.dart 3.2 KB
- reference/screens/settings_screen_integration.dart 4.4 KB
- reference/widgets/delete_account_button.dart 2.4 KB
- reference/widgets/delete_account_dialog.dart 6.6 KB
- scripts/check.dart 20 KB
- templates/supabase-delete-user-function.ts 4.3 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 198 lines · 55 tokens per session scan A ed908e573a9c
account-deletion is a skill published in the GitHub repository launch52-ai/flutter-template (2 stars, last pushed 6mo ago), licensed MIT. It adds 55 tokens to every session and 1,516 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
app-store-preflight-compliance
Pre-submission compliance scanner workflow for Apple App Store apps. Use when reviewing iOS, macOS, tvOS, watchOS, or visionOS projects (Swift, Objective-C, React Native, Expo) for App Store rejection risks, submission readiness, privacy compliance, or guideline violations.
firebase-messaging
Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).
generate-images-with-firebase-ai
Use when generating or editing images from Flutter/Dart with Firebase AI Logic and a Gemini image model (Nano Banana), making the first call work, choosing Gemini Developer API vs Vertex AI, hitting quota, billing or App Check failures, getting empty or image-only responses, sending a user photo as input, controlling…
firebase-app-check
Use when implementing app attestation, configuring App Check providers, setting up debug tokens, enabling backend enforcement, or managing token refresh.
flutter-app-architecture
Use when scaffolding a project, refactoring into layers, creating view models/repositories, configuring dependency injection, or implementing unidirectional data flow (MVVM).