Token导航 LogoToken导航TokenDH.com
开发规范敏感数据github未标认证来源可访问clear审计通过

push-notification-best-practices推送通知最佳实践

Agent Skill

push-notification-best-practices 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,808

周安装

117

GitHub Stars

5

下载量

936
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:push-notification-best-practices(推送通知最佳实践)
来源仓库:https://github.com/clix-so/skills
仓库路径:skills/push-notification-best-practices
安装命令:
npx skills add https://github.com/clix-so/skills --skill push-notification-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/clix-so/skills --skill push-notification-best-practices

简介

push-notification-best-practices 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Push Notification Best Practices

Overview

Comprehensive guide for implementing and troubleshooting push notifications in mobile applications. Covers iOS (APNS), Android (FCM), React Native, Expo, and Flutter platforms with platform-specific configurations, token management, message handling, and deep linking patterns.

Platform Support Matrix

PlatformOffline PushNotification BarClick NavigationIn-App ToastBackground Handler
iOSAPNSSystemDeep LinkCustomdata-only payload
AndroidFCMSystemIntentCustomdata-only payload
React NativeAPNS/FCMSystemReact NavigationCustomsetBackgroundMessageHandler
ExpoExpo PushSystemLinkingCustomTaskManager
FlutterAPNS/FCMSystemNavigatorCustomonBackgroundMessage

Decision Trees

Permission Request Timing

When to request notification permission?

User installing app
        |
        v
  [First launch?] ──Yes──> [Show value proposition first]
        |                          |
        No                         v
        |                  [User action triggers need?]
        v                          |
  [Already granted?]              Yes
        |                          |
       Yes                         v
        |                  [Request permission] ──> 70-80% acceptance rate
        v
  [Notifications ready]
TimingAcceptance RateUse Case
Immediate (app launch)15-20%Low engagement apps
After onboarding40-50%Standard apps
User-initiated action70-80%High engagement apps

Recommendation: Request after explaining value or when user enables a related feature.

Silent vs Visible Notification

Which payload type should I use?

[What's the purpose?]
        |
        +──> Time-sensitive user alert ──> Visible (notification payload)
        |
        +──> Background data sync ──> Silent (data-only payload)
        |
        +──> Custom UI required ──> Silent (data-only payload)
        |
        +──> Need background processing ──> Silent (data-only payload)
ScenarioPayload TypeReason
New message alertVisibleUser needs immediate attention
Order status updateVisibleTime-sensitive information
Background syncSilentNo user interruption needed
Custom notification UISilentFull control over display
Update badge countSilentBackground processing needed

Extension Strategy (iOS)

When to use Notification Service Extension?

  • Need to modify notification content before display
  • Need to download and attach media (images, videos)
  • Need to decrypt end-to-end encrypted payloads
  • Need to add action buttons dynamically

When to use Notification Content Extension?

  • Need custom notification UI beyond system template
  • Need interactive elements in expanded view

Anti-patterns (NEVER Do)

Permission Handling

NEVERWhyInstead
Request permission on first launch without context15-20% acceptance rateExplain value first, then request
Re-ask after user deniesSystem ignores repeated requestsShow settings redirect
Ignore provisional authorizationMisses iOS 12+ quiet deliveryUse .provisional option

Token Management

NEVERWhyInstead
Cache tokens long-termTokens can change on reinstall/restoreAlways use fresh token from callback
Assume token formatFormat varies by platform/SDKTreat as opaque string
Send token without user associationCan't target notificationsAssociate with userId on backend
Store tokens without device IDDuplicate tokens per userUse deviceId as unique key

Message Handling

NEVERWhyInstead
Use notification payload for background processingonMessageReceived not called in backgroundUse data-only payload
Rely on silent notifications for time-critical deliveryDelivery not guaranteedUse visible notifications
Execute heavy operations in background handlerSystem kills app after ~30 secondsQueue work, process quickly
Forget to handle both payload typesMissing notificationsHandle notification + data payloads

iOS Specific

NEVERWhyInstead
Register for notifications before delegate setupDelegate methods not calledSet delegate before registerForRemoteNotifications()
Skip serviceExtensionTimeWillExpire() implementationContent modification failsAlways implement fallback
Use.p12 certificatesExpires yearly, deprecatedUse.p8 authentication key

Android Specific

NEVERWhyInstead
Skip NotificationChannel creationNotifications don't appear on Android 8.0+Create channel at app start
Use priority normal for background handlersDoze mode blocks deliveryUse priority high
Use colored notification iconsAndroid ignores colors, shows white squareUse white-on-transparent icons

Skill Format

Each rule file follows a hybrid format for fast lookup and deep understanding:

  • Quick Pattern: Incorrect/Correct code snippets for immediate pattern matching
  • When to Apply: Situations where this rule is relevant
  • Deep Dive: Full context with step-by-step guides and platform-specific details
  • Common Pitfalls: Common mistakes and how to avoid them
  • Related Rules: Cross-references to related patterns

Impact ratings: CRITICAL (fix immediately), HIGH (significant improvement), MEDIUM (worthwhile optimization)

When to Apply

Reference these guidelines when:

  • Setting up push notifications in a mobile app
  • Debugging push notification delivery issues
  • Implementing background notification handlers
  • Integrating deep linking with push notifications
  • Managing push tokens and device registration
  • Troubleshooting platform-specific push issues
  • Reviewing push notification code for reliability

Priority-Ordered Guidelines

PriorityCategoryImpactPrefix
1iOS SetupCRITICALios-
2Android SetupCRITICALandroid-
3Token ManagementHIGHtoken-
4Message HandlingHIGHmessage-
5Deep LinkingMEDIUMdeeplink-
6InfrastructureMEDIUMinfra-

Quick Reference

Critical: iOS Setup

Setup checklist:

  • Generate APNs authentication key (.p8) from Apple Developer
  • Upload to Firebase Console with Key ID and Team ID
  • Enable Push Notifications capability in Xcode
  • Set UNUserNotificationCenter delegate in didFinishLaunchingWithOptions
  • Request notification authorization before registering
  • Implement foreground presentation options

Critical: Android Setup

Setup checklist:

  • Add google-services.json to app/ directory
  • Apply google-services Gradle plugin
  • Create NotificationChannel (Android 8.0+)
  • Request POST_NOTIFICATIONS permission (Android 13+)
  • Implement FirebaseMessagingService
  • Set notification icon (transparent background + white)
  • Use priority 'high' for Doze mode compatibility

High: Token Management

Token lifecycle:

// 1. Register token with server
const token = await getToken();
await registerToken(token, userId);

// 2. Handle token refresh
onTokenRefresh((newToken) => {
  updateTokenOnServer(newToken, userId);
});

// 3. Handle invalidation
if (error.code === 'DeviceNotRegistered') {
  deleteTokenFromDatabase(token);
}

High: Message Handling

Payload types:

  • data-only: Background handler runs on both platforms
  • notification + data: iOS/Android behavior differs

- iOS: Always shows notification - Android: Background = system tray, Foreground = onMessageReceived

Priority settings:

  • Use priority: 'high' for time-sensitive notifications
  • Required for Android Doze mode background handlers

Rules

Full documentation with code examples in rules/:

iOS Setup (ios-*)

FileImpactDescription
ios-apns-auth-key.mdCRITICALAPNs authentication key setup
ios-delegate-setup.mdCRITICALUNUserNotificationCenter delegate configuration
ios-permission-request.mdCRITICALNotification permission request flow
ios-token-registration.mdHIGHAPNS token registration and handling
ios-foreground-display.mdHIGHDisplay notifications in foreground
ios-method-swizzling.mdMEDIUMMethod Swizzling management
ios-extension-build.mdMEDIUMNotification Service Extension setup

Android Setup (android-*)

FileImpactDescription
android-notification-channel.mdCRITICALNotification channel creation (Android 8.0+)
android-permission.mdCRITICALPOST_NOTIFICATIONS runtime permission (Android 13+)
android-google-services.mdCRITICALFirebase project configuration
android-messaging-service.mdHIGHFirebaseMessagingService implementation
android-notification-icon.mdMEDIUMNotification icon asset requirements
android-priority-high.mdHIGHPriority 'high' for Doze mode

Token Management (token-*)

FileImpactDescription
token-registration.mdHIGHToken registration with backend
token-refresh.mdHIGHToken refresh handling
token-invalidation.mdMEDIUMDeviceNotRegistered error handling

Message Handling (message-*)

FileImpactDescription
message-data-vs-notification.mdCRITICALdata vs notification payload differences
message-background-handler.mdHIGHBackground message processing
message-foreground-handler.mdHIGHForeground notification display

Deep Linking (deeplink-*)

FileImpactDescription
deeplink-navigation-conflict.mdMEDIUMReact Navigation conflict resolution
deeplink-terminated-state.mdMEDIUMDeep link handling when app is terminated

Infrastructure (infra-*)

FileImpactDescription
infra-firewall-ports.mdMEDIUMNetwork firewall configuration
infra-backup-fid.mdMEDIUMFirebase Installation ID backup exclusion
infra-rate-limiting.mdMEDIUMPush notification rate limiting

Best Practices

FileImpactDescription
permission-timing.mdHIGHPermission request timing optimization (70-80% acceptance)
testing-debugging.mdHIGHTesting tools, debugging techniques, payload validation

Searching Rules

# Find rules by keyword
grep -l "apns" rules/
grep -l "fcm" rules/
grep -l "token" rules/
grep -l "background" rules/
grep -l "permission" rules/
grep -l "deeplink" rules/

Problem → Rule Mapping

ProblemStart With
iOS not receiving pushios-apns-auth-keyios-delegate-setup
Android not receiving pushandroid-google-servicesandroid-notification-channel
Push not working in backgroundandroid-priority-highmessage-background-handler
Push not visible in foregroundios-foreground-display or message-foreground-handler
Token missing/expiredtoken-registrationtoken-refresh
Deep link conflict errordeeplink-navigation-conflict
Notification icon broken (Android)android-notification-icon
Failed on corporate networkinfra-firewall-ports
Background handler not called (Android)android-priority-highmessage-data-vs-notification
userNotificationCenter not called (iOS)ios-delegate-setup
404 error after backup restoreinfra-backup-fid
Send failed (429 error)infra-rate-limiting
Low permission acceptance ratepermission-timingios-permission-request
How to debug/test pushtesting-debugging
Cannot test locallytesting-debuggingios-apns-auth-key

Platform-Specific Notes

iOS (APNS)

  • Requires Apple Developer account and APNs authentication key (.p8)
  • Different behavior for Development vs Production builds
  • Delegate must be set before other SDK initialization
  • Method Swizzling can interfere with delegate calls

Android (FCM)

  • Requires google-services.json from Firebase Console
  • NotificationChannel required for Android 8.0+
  • Runtime permission required for Android 13+
  • Doze mode requires priority: 'high' for background handlers
  • Notification icons must be monochrome (white on transparent)

React Native

  • Common issue: gcm.message_id required for foreground notifications
  • Deep linking conflicts with React Navigation
  • Terminated state requires native → JS bridge pattern

Expo

  • ExpoPushToken format: ExponentPushToken[...]
  • Rate limit: 600 push notifications per second per project
  • Development builds required for SDK 53+
  • Use eas credentials for APNs key management

Full Compiled Document

For the complete guide with all rules expanded: AGENTS.md

Attribution

Based on push notification troubleshooting guides and Firebase Cloud Messaging official documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

29.41%
按下载量换算275

Claude Code

20.92%
按下载量换算196

Gemini CLI

16.01%
按下载量换算150

OpenCode

13.22%
按下载量换算124

Cursor

7.67%
按下载量换算72

Antigravity

2.95%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills