agentsclimarketplace

Native notification builder

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/native-notification-builder

Build native OS notifications with actions, images, and progress indicators across platformsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill native-notification-builder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.8 KB, 309 tokens by cl100k_base, as published. Nobody here has run it

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

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "framework": { "enum": ["electron", "native", "tauri"] },
    "features": { "type": "array", "items": { "enum": ["actions", "images", "progress", "sounds"] } }
  },
  "required": ["projectPath"]
}

Electron Example

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

What ships with it: 1 file

481 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.