mobile-push-notification-expert

mobile-push-notification-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 57 tokens per session (788 once invoked), scanned A, original, MIT.

A guide to sending push notifications across iOS, Android, and the web, including updates shown in iOS Live Activities. It covers notification delivery, background handling, and opening specific app screens from a notification.

In plain words
What is it for?
Use it to configure push permissions and tokens, send rich notifications, handle background payloads, route notification taps, and update Live Activities.
Why use it?
It helps developers manage the differences between Expo, Firebase, Apple, and web notification systems in one cross-platform app.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to configure push permissions and tokens, send rich notifications, handle background payloads, route notification taps, and update Live Activities.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/mobile-push-notification-expert
Install

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.

Any agent
npx skills add roedyrustam/vibes-plug --skill mobile-push-notification-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for mobile-push-notification-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-push-notification-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-push-notification-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-push-notification-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-push-notification-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mobile-push-notification-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-push-notification-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-push-notification-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 788 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.00788
Opus 5 $0.00028 $0.00394
Sonnet 5 $0.00011 $0.00158
Haiku 4.5 $0.00006 $0.00079

Measured 5d ago against content hash 61fc4d4abb1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mobile-push-notification-expert 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 5d 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.

skills/mobile-push-notification-expert/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mobile Push Notification & Live Activities Expert

English | Bahasa Indonesia


English

Purpose & Overview

Comprehensive guide for configuring cross-platform push notifications (Expo Push API, Firebase Cloud Messaging FCM, Apple APNs, Web Push API), iOS Live Activities / ActivityKit, background payload handlers, deep-linking routing, and push token lifecycle management.

Key Capabilities

  • Expo & FCM Push: Sending batched push notifications with rich media, actions, and custom data payloads.
  • iOS Live Activities: Real-time status updates on iOS Dynamic Island and Lock Screen.
  • Deep Linking: Routing push notification taps directly to targeted screens within Expo Router / React Native.
import * as Notifications from 'expo-notifications';

export async function registerForPushNotificationsAsync() {
  const { status: existingStatus } = await Notifications.getPermissionsAsync();
  let finalStatus = existingStatus;
  if (existingStatus !== 'granted') {
    const { status } = await Notifications.requestPermissionsAsync();
    finalStatus = status;
  }
  if (finalStatus !== 'granted') return null;
  const token = (await Notifications.getExpoPushTokenAsync()).data;
  return token;
}

Implementation Checklist

  • Configure Apple Developer Account (APNs Key) and Google Firebase (FCM Service Account).
  • Request push notification permissions explicitly from the user after they understand the value proposition.
  • Save the device's Push Token to the database, associated with the user's ID.
  • Handle token refresh events when the user uninstalls/reinstalls the app or changes devices.
  • Set up background event handlers to process incoming messages when the app is killed.

Orchestration & Integration

  • Integrates with: mobile-expo-expert, event-driven-architect, database-orm-expert.

Bahasa Indonesia

Deskripsi

Panduan komprehensif untuk konfigurasi push notification lintas platform (Expo Push, FCM, APNs, Web Push), iOS Live Activities / ActivityKit, penanganan payload background, routing deep-linking, dan manajemen siklus token push.

Read the full file on GitHub · 72 lines

Changes

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.

  1. 5d ago First seen · 72 lines · 57 tokens per session scan A 61fc4d4abb1d

Subscribe to this mod's changes

mobile-push-notification-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed yesterday), licensed MIT. It adds 57 tokens to every session and 788 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-09-03.

Related

Other skills, from other repositories

limrun-android-emulator

Drive an app running on a Limrun cloud Android emulator: install an APK, launch and terminate apps with crash reports, tap, type, read the UI element tree, screenshot, record video, inject microphone audio, shape network bandwidth, and use adb over the CLI's tunnel for logcat, files, and shell. Use after a build (from…

sutchan/Agent-Skills-Hub · 147 tokens

limrun-ios-simulator

Drive an app running on a Limrun cloud iOS simulator: launch, tap, type, read the accessibility element tree, screenshot, record video, connect the app to local services, play a video file as the camera, and run timed action chains. Use after a build (from any builder) when the user wants to see, test, or interact…

sutchan/Agent-Skills-Hub · 151 tokens

limrun-xcode

Build an iOS / Apple app on remote Xcode with lim xcode build instead of local xcodebuild, or run its XCTest suites with lim xcode test, from any environment (Linux, Windows, macOS, VM, container). Use for non-Bazel projects (an .xcodeproj / .xcworkspace, an XcodeGen project.yml with a gitignored project, React Native…

sutchan/Agent-Skills-Hub · 159 tokens

limrun-detox-testing

Configure, run, or debug Detox on Limrun iOS simulators. Use when attaching the Limrun Detox runtime to an app, wiring Detox mediator connectivity, or validating app/tester connections over destination tunnels.

sutchan/Agent-Skills-Hub · 48 tokens

expo

Expert in Expo for React Native development. Covers Expo Router, EAS Build and Submit, development builds, native module integration, and production deployment. Knows how to build cross-platform mobile apps efficiently while maintaining access to native capabilities. Use when "expo, react native, mobile app, eas…

omer-metin/skills-for-antigravity · 86 tokens

cmd_flutter_build

Fix Dart analyzer errors and Flutter build failures incrementally. Invokes the dart-build-resolver agent for minimal, surgical fixes.

majiang213/OpenClaw-MAS · 29 tokens