android-workmanager-notifications
Schedule reliable background work, reminders, and notification delivery with WorkManager and Android execution limits.
Works with
--- name: android-workmanager-notifications description: Schedule reliable background work, reminders, and notification delivery with WorkManager and Android execution limits. license: MIT --- # Android WorkManager Notifications ## When To Use - Use this skill when the request is about: android workmanager job, background reminder notification android, reliable retry workmanager. - Primary outcome: Schedule reliable background work, reminders, and notification delivery with WorkManager and Android execution limits. - Read `references/patterns.md` when you need the API-choice matrix for WorkManager vs foreground service vs alarms. - Read `references/scenarios.md` for unique-work, notification-permission, and reminder-delivery review paths. - Handoff skills when the scope expands: - `android-permissions-activity-results` - `android-performance-observability` ## Workflow 1. Choose the right execution API first: WorkManager for deferrable guaranteed work, foreground services for ongoing user-visible work, and exact alarms only when clock-time precision and policy requirements truly demand them. 2. Make work idempotent and uniquely addressable with explicit names, input data contracts, backoff policy, and cancellation behavior. 3. Apply constraints, expedited work, and retry semantics only where they match user value and platform limits. 4. Build notification delivery as part of the contract: channels, importance, tap action, runtime permission handling, and graceful behavior when notifications are denied. 5. Validate duplicate scheduling, reboot/process death, and degraded states before handing off performance or permission-specific follow-up work. ## Guardrails - Keep background work idempotent and cancellation-aware. - Use unique work or unique periodic work when the feature represents one logical reminder or sync pipeline. - Treat expedited work as scarce and user-valuable; do not use it as a generic queue-jumping flag. - If a worker uses network constraints, ensure the app declares the permissions required for those constraints on modern Android versions. - Keep notification value intact even when the user declines `POST_NOTIFICATIONS`; the app still needs a visible recovery path. ## Anti-Patterns - Blocking the main thread with disk or network calls. - Expecting WorkManager to deliver exact wall-clock timing like an alarm API. - Re-enqueueing duplicate reminder work instead of using unique work policies. - Failing to create channels or handle notification permission decline paths. - Hiding critical foreground or exact-alarm policy assumptions in comments instead of code and docs. ## Review Focus - Is WorkManager the right API for this workload? - Are unique work policies, constraints, retry, and cancellation explicit? - Do reminder and notification paths still make sense if notifications are denied? - Are expedited, foreground, or exact-alarm behaviors justified and policy-safe? ## Examples ### Happy path - Scenario: Find background-work and notification hooks before proposing a scheduling change. - Command: `rg -n "WorkManager|Worker|enqueueUnique|PeriodicWorkRequest|NotificationChannel|POST_NOTIFICATIONS" examples` ### Edge case - Scenario: Review exact-alarm, expedited, or network-constrained work for platform-sensitive behavior. - Command: `rg -n "setExpedited|setRequiredNetworkType|AlarmManager|ForegroundInfo" examples` ### Failure recovery - Scenario: Disambiguate WorkManager requests from permission prompts and performance work. - Command: `python3 scripts/eval_triggers.py --skill android-workmanager-notifications` ## Done Checklist - The chosen execution API matches the workload's timing and visibility requirements. - Unique work, retry, cancellation, and constraint behavior are explicit. - Notification channel and permission behavior are handled as part of the feature contract. - Process-death, reboot, and duplicate-scheduling behavior have been considered. ## Official References - [https://developer.android.com/topic/libraries/architecture/workmanager](https://developer.android.com/topic/libraries/architecture/workmanager) - [https://developer.android.com/develop/background-work/background-tasks/persistent/getting-started](https://developer.android.com/develop/background-work/background-tasks/persistent/getting-started) - [https://developer.android.com/develop/background-work/background-tasks/persistent/how-to/manage-work](https://developer.android.com/develop/background-work/background-tasks/persistent/how-to/manage-work) - [https://developer.android.com/develop/ui/views/notifications/build-notification](https://developer.android.com/develop/ui/views/notifications/build-notification) - [https://developer.android.com/develop/ui/views/notifications/notification-permission](https://developer.android.com/develop/ui/views/notifications/notification-permission) - [https://developer.android.com/develop/background-work/background-tasks/optimize-battery](https://developer.android.com/develop/background-work/background-tasks/optimize-battery) - [https://developer.android.com/develop/background-work/services/alarms](https://developer.android.com/develop/background-work/services/alarms)
More Mobile skills
animation-vocabulary
emilkowalski/skills
Reverse-lookup glossary that turns a vague description of a web animation or motion effect into its exact term ("the bouncy thing when a popover opens" → Pop in; "the iOS rubber-band scroll" → Rubber-banding). Use when the user asks "what's it called when…", or describes a motion effect without knowing its name and wants the right word to prompt an AI or designer with. For naming an effect, not designing or building one.
cross-border-ecommerce
nexscope-ai/ecommerce-skills
Cross-border e-commerce expansion advisor. Scores target markets on 8 weighted dimensions (market size, ecommerce penetration, competition, regulatory complexity, logistics infrastructure, payment ecosystem, cultural distance, IP protection), compares 5 fulfillment models with cost and transit data, provides country-by-country tax/duty compliance guides (EU VAT/IOSS, UK VAT, US sales tax, CA GST, AU GST, JP consumption tax), maps local payment preferences by market, and builds a phased expansion roadmap. No API key required.
developing-genkit-dart
firebase/agent-skills
Generates code and provides documentation for the Genkit Dart SDK. Use when the user asks to build AI agents in Dart, use Genkit flows, or integrate LLMs into Dart/Flutter applications.

