native-notification-builder

Solid

Build native OS notifications with actions, images, and progress indicators across platforms

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
64
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# native-notification-builder Build native OS notifications with actions, images, and progress indicators across Windows, macOS, and Linux platforms. ## Capabilities - Create basic notifications - Add action buttons - Include images and app icons - Show progress indicators - Configure notification sounds - Handle notification clicks - Set notification priority - Configure notification grouping ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string" }, "framework": { "enum": ["electron", "native", "tauri"] }, "features": { "type": "array", "items": { "enum": ["actions", "images", "progress", "sounds"] } } }, "required": ["projectPath"] } ``` ## Electron Example ```javascript const { Notification } = require('electron'); const notification = new Notification({ title: 'Download Complete', body: 'Your file has been downloaded.', icon: '/path/to/icon.png', actions: [ { type: 'button', text: 'Open' }, { type: 'button', text: 'Show in Folder' } ] }); notification.on('action', (event, index) => { if (index === 0) openFile(); else showInFolder(); }); notification.show(); ``` ## Related Skills - `electron-tray-menu-builder` - `system-services-integration` process

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

electron-tray-menu-builder

Generate system tray and context menu configurations with platform-specific icons, menu templates, and event handling

1,160 Updated today
a5c-ai
AI & Automation Solid

push-notifications

Multi-platform push notification skill for implementing APNs (iOS), FCM (Android), and cross-platform notification systems with rich media, deep linking, and background processing capabilities.

1,160 Updated today
a5c-ai
AI & Automation Solid

electron-native-addon-builder

Build and bundle native Node.js addons for Electron with proper ABI compatibility, cross-compilation support, and rebuild automation

1,160 Updated today
a5c-ai
Web & Frontend Listed

xcodebuild-notify

Sends macOS notifications after xcodebuild commands, showing Build Succeeded or Build Failed with scheme and project info. Mimics Xcode's native build notifications. Auto-triggers on xcodebuild via PostToolUse hook.

27 Updated 1 months ago
artemnovichkov
AI & Automation Listed

android-notifications-push

Push notification and local notification patterns for Android - FCM setup, FirebaseMessagingService, notification channels, NotificationCompat.Builder, deep-link on tap via PendingIntent and NavDeepLinkBuilder, foreground vs background delivery, POST_NOTIFICATIONS permission on Android 13+, data-only vs notification messages, grouping, and badges. Use this skill whenever adding push notifications, configuring Firebase Cloud Messaging, showing local notifications, handling notification taps, or creating notification channels. Trigger on phrases like "push notification", "FCM", "Firebase messaging", "notification channel", "local notification", "notification tap", "POST_NOTIFICATIONS", "data message", or "notification badge".

1 Updated today
lenorebreakneck630