push-notification-tester

push-notification-tester is a skill for Claude Code, Codex from team-telnyx/ai. It costs 55 tokens per session (607 once invoked), scanned A, original, MIT.

A tester that sends sample voice-over-IP push notifications to iOS devices through APNs and Android devices through FCM. APNs and FCM are Apple's and Google's services for delivering app notifications.

In plain words
What is it for?
Use it to test Telnyx WebRTC mobile apps, check iOS and Android device receipt, and debug notification credentials or delivery.
Why use it?
It helps determine whether notification delivery, device tokens, certificates, keys, and service credentials are configured correctly. This narrows down whether a missed call alert failed in the app or in its delivery setup.

Skill for Claude CodeCodex

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

Part of the telnyx-platform plugin — 92 skills, 1 agent, 3 hooks shipped together

Good fit Use it to test Telnyx WebRTC mobile apps, check iOS and Android device receipt, and debug notification credentials or delivery.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/team-telnyx/ai/push-notification-tester
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 team-telnyx/ai --skill push-notification-tester
Clone the repo
git clone --depth 1 https://github.com/team-telnyx/ai

Made for: Claude Code, Codex.

Or install telnyx-platform, the plugin that ships this one along with the rest of its 92 skills, 1 agent, 3 hooks.

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 push-notification-tester

README.md
[![agentmods](https://agentmods.dev/badge/skills/team-telnyx/ai/push-notification-tester/github.svg)](https://agentmods.dev/skills/team-telnyx/ai/push-notification-tester)
Your own site
<a href="https://agentmods.dev/skills/team-telnyx/ai/push-notification-tester"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/push-notification-tester/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 push-notification-tester

Your own site · 80×15
<a href="https://agentmods.dev/skills/team-telnyx/ai/push-notification-tester"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/push-notification-tester.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 607 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.00055 $0.00607
Opus 5 $0.00028 $0.00303
Sonnet 5 $0.00011 $0.00121
Haiku 4.5 $0.00006 $0.00061

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

Security

Grade A, and why

push-notification-tester 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 3d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/send-android-push.js, scripts/send-ios-push.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

providers/claude/plugins/telnyx-platform/skills/push-notification-tester/SKILL.md · 79 lines

What it actually says

Push Notification Tester

Send test VoIP push notifications to iOS (APNs) and Android (FCM) devices.

iOS (APNs)

node {baseDir}/scripts/send-ios-push.js \
  --token=<device_token> \
  --bundle-id=<bundle_id> \
  --cert=<path/to/cert.pem> \
  --key=<path/to/key.pem> \
  [--env=sandbox|production] \
  [--caller-name="Test Caller"] \
  [--caller-number="+1234567890"]

Required args

  • --token — 64-char hex APNs device token
  • --bundle-id — App bundle ID (e.g. com.telnyx.webrtc)
  • --cert — Path to certificate PEM file
  • --key — Path to private key PEM file

Optional args

  • --envsandbox (default) or production
  • --caller-name — Display name (default: "Test Caller")
  • --caller-number — Phone number (default: "+1234567890")

Android (FCM)

node {baseDir}/scripts/send-android-push.js \
  --token=<fcm_token> \
  --project-id=<firebase_project_id> \
  --service-account=<path/to/service-account.json> \
  [--caller-name="Test Caller"] \
  [--caller-number="+1234567890"]

Required args

  • --token — FCM device token
  • --project-id — Firebase project ID
  • --service-account — Path to service account JSON file

Optional args

  • --caller-name — Display name (default: "Test Caller")
  • --caller-number — Phone number (default: "+1234567890")

Output

Both scripts output JSON to stdout:

{"success": true, "message": "Push notification sent successfully", "details": {...}}
{"success": false, "error": "Description of what went wrong"}

Exit code 0 on success, 1 on failure.

Dependencies

Run npm install in the scripts/ directory, or the scripts will auto-install on first run.

  • @parse/node-apn — APNs client for iOS
  • google-auth-library — Google OAuth for FCM
  • axios — HTTP client for FCM API
Files

What ships with it

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

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. 3d ago First seen · 79 lines · 55 tokens per session scan A 5690d1b25c99

Subscribe to this mod's changes

push-notification-tester is a skill published in the GitHub repository team-telnyx/ai (213 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 607 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-05.