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 agentmods add skills/launch52-ai/flutter-template/force-updatenpx skills add launch52-ai/flutter-template --skill force-updategit clone --depth 1 https://github.com/launch52-ai/flutter-templateWhat 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 | $0.00051 | $0.01846 |
| Opus 5 | $0.00026 | $0.00923 |
| Sonnet 5 | $0.00010 | $0.00369 |
| Haiku 4.5 | $0.00005 | $0.00185 |
Grade A, and why
force-update 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 yesterday.
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 — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Force Update / App Update
Implement version checking and in-app update prompts to keep users on supported app versions.
When to Use This Skill
- Adding force update functionality to block outdated versions
- Implementing soft update prompts for optional updates
- Setting up Android In-App Updates for seamless upgrades
- Configuring version management via Supabase or Firebase Remote Config
- User asks "force update", "app update", "version check", or "update dialog"
When NOT to Use This Skill
- OTA code updates (Flutter doesn't support this like React Native) - Use store updates
- App store submission process - Use
/releaseinstead - CI/CD build versioning - Use
/ci-cdinstead
Questions to Ask
- Update strategy: Force update only, soft update only, or both?
- Backend: Supabase, Firebase Remote Config, or custom REST API?
- Android In-App Updates: Enable flexible/immediate updates via Play Store?
- Minimum version logic: Per-platform, per-feature, or global minimum?
Quick Reference
Update Types
| Type | Behavior | When to Use |
|---|---|---|
| Force Update | Blocks app until updated | Security fixes, breaking API changes |
| Soft Update | Dismissible prompt | New features, minor improvements |
| In-App Update (Android) | Download without leaving app | Any update, better UX |
| Maintenance Mode | Blocks app entirely | Server downtime, critical issues |
Version Comparison
| Current | Minimum | Force Min | Result |
|---|---|---|---|
| 1.0.0 | 1.2.0 | 1.1.0 | Force update required |
| 1.1.5 | 1.2.0 | 1.1.0 | Soft update available |
| 1.2.0 | 1.2.0 | 1.1.0 | Up to date |
Commands
# Validate force-update implementation
dart run .claude/skills/force-update/scripts/check.dart
# Check specific aspects
dart run .claude/skills/force-update/scripts/check.dart --check version-service
dart run .claude/skills/force-update/scripts/check.dart --check dialogs
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.
- in-app-updates-guide.md 9.5 KB
- reference/entities/update_status.dart 647 B
- reference/entities/version_info.dart 1.5 KB
- reference/models/version_info_dto.dart 1.1 KB
- reference/providers/update_notifier.dart 3.0 KB
- reference/screens/force_update_screen.dart 5.4 KB
- reference/screens/maintenance_screen.dart 4.9 KB
- reference/services/app_version_service.dart 4.2 KB
- reference/services/in_app_update_service.dart 3.0 KB
- reference/widgets/soft_update_dialog.dart 6.7 KB
- scripts/check.dart 18 KB
- update-dialogs-guide.md 3.3 KB
- version-checking-guide.md 9.2 KB
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.
- yesterday First seen · 226 lines · 51 tokens per session scan A 7b417923c21c
force-update is a skill published in the GitHub repository launch52-ai/flutter-template (2 stars, last pushed 6mo ago), licensed MIT. It adds 51 tokens to every session and 1,846 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.
django-celery-expert
Expert Django Celery guidance for asynchronous task processing. Use when designing background tasks, configuring Celery workers, handling task retries and errors, optimizing Celery performance, implementing periodic tasks with Celery Beat, or setting up production monitoring for Celery. Do not use for general Django…
django-expert
Expert Django backend development guidance. Use when creating Django models, views, serializers, or APIs; debugging ORM queries or migrations; optimizing database performance; implementing authentication; writing tests; or working with Django REST Framework. Follows Django best practices and modern patterns.
shadcn
Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…
setup
Interactive project setup from the ai-project-template — replaces the static SETUPGUIDE.md with a guided, multi-step workflow.
template-guide
Navigate template conventions, audit compliance, and guide upgrades for ai-project-template repos.