Agent skill · Frontend

push-notifications

Generate push notification infrastructure with APNs registration, handling, and rich notifications. Use when adding push notifications, configuring APNs, notification categories/actions, or rich notifications with images and custom UI.

rshankrasgithub.com/rshankrasGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add rshankras/claude-code-apple-skills --skill push-notifications --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 6
SKILL.md size: 9 KB
Bundled scripts: none
Allowed tools: ReadWriteEditGlobGrepBashAskUserQuestion
Path: skills/generators/push-notifications/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 589
Language: Swift

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Push Notifications Generator Generate push notification infrastructure with APNs registration, handling, and rich notifications. ## When This Skill Activates - User wants to add push notifications to their app - User mentions APNs (Apple Push Notification service) - User asks about notification categories or actions - User wants rich notifications with images or custom UI ## Pre-Generation Checks Before generating, verify: 1. **Existing Notification Code** ```bash # Check for existing notification handling grep -r "UNUserNotificationCenter\|registerForRemoteNotifications" --include="*.swift" | head -5 ``` 2. **Entitlements** ```bash # Check for push notification entitlement find . -name "*.entitlements" -exec grep -l "aps-environment" {} \; ``` 3. **App Delegate or SwiftUI App** ```bash # Determine app structure grep -r "@main\|UIApplicationDelegate" --include="*.swift" | head -5 ``` ## Configuration Questions ### 1. Notification Types - **Basic** - Simple alerts with title/body - **Rich** - Include images, custom UI (requires Notification Service Extension) - **Both** - Full notification support ### 2. Notification Actions - **None** - Just display notifications - **Simple Actio

What's inside
Steps it walks through
  1. When This Skill Activates
  2. Pre-Generation Checks
  3. Configuration Questions
  4. 1. Notification Types
  5. 2. Notification Actions
  6. 3. Silent Notifications
  7. Generated Files
  8. Core Infrastructure
  9. Rich Notifications (Optional)
  10. Content Extension (Optional)
  11. Key Features
  12. Registration Flow
  13. Handling Notifications
  14. Action Categories
Ships with 5 files
  • push-notification-patterns.md
  • templates/NotificationCategories.swift
  • templates/NotificationDelegate.swift
  • templates/NotificationManager.swift
  • templates/NotificationPayload.swift
Commands it runs
grep -r "UNUserNotificationCenter\|registerForRemoteNotifications" --include="*.swift" | head -5
find . -name "*.entitlements" -exec grep -l "aps-environment" {} \;
grep -r "@main\|UIApplicationDelegate" --include="*.swift" | head -5
curl -v \
More from claude-code-apple-skills
All skills →
About this skill
What does the push-notifications skill do?

Generate push notification infrastructure with APNs registration, handling, and rich notifications. Use when adding push notifications, configuring APNs, notification categories/actions, or rich notifications with images and custom UI.

How do I install it?

Run `npx skills add rshankras/claude-code-apple-skills --skill push-notifications --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From rshankras/claude-code-apple-skills, a repository with 589 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going