erkamyaman/ionic-capacitor-skills

ionic-local-notifications

Schedule local (on-device) notifications via @capacitor/local-notifications — reminders, daily prompts, post-action follow-ups.

First seen Apr 26, 2026

Installation

$ npx skills add erkamyaman/ionic-capacitor-skills --skill ionic-local-notifications

Summary

  • Schedule local (on-device) notifications via @capacitor/local-notifications — reminders, daily prompts, post-action follow-ups.
  • Trigger when adding scheduled reminders, drink-water-style daily nudges, or any notification fired by the app itself rather than a server.
  • Distinct from push notifications.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from erkamyaman/ionic-capacitor-skills · top by installs.

npx skills add erkamyaman/ionic-capacitor-skills

Browse all from erkamyaman/ionic-capacitor-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 14
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0
LicenseMIT
More metadata
author
erkamyaman
version
1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,704 B
  • docs SUMMARY.md 335 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 26 installs

SKILL.md

Local Notifications

Notifications scheduled and fired by the device, not by a backend. Use cases: daily reminders, follow-up prompts after onboarding, post-purchase nudges, inactivity reminders.

For server-sent notifications (FCM / APNs), see [../ionic-shared/references/push-notifications.md](../ionic-shared/references/push-notifications.md). The two plugins are independent and can be used together.

When to consult

  • Setup, permissions, scheduling: [setup-and-scheduling.md](references/setup-and-scheduling.md)
  • Patterns (recurring, channels, action handling): [patterns.md](references/patterns.md)

Hard rules

  • ✅ Request permission when the user opts in to a feature that uses notifications, not on app launch.
  • ✅ Always set a unique numeric id per notification — same id overwrites the previous one.
  • ✅ On Android 13+ the OS auto-prompts for POST_NOTIFICATIONS the first time you schedule.
  • ❌ Don't schedule more than ~64 simultaneous notifications on iOS — the OS silently drops the rest.
  • ❌ Don't rely on local notifications for time-critical delivery — they can be delayed by the OS for power management. Push is for "this must arrive."

Library

npm install @capacitor/local-notifications
npx cap sync