pushinator

Send push notifications to mobile devices via the Pushinator API.

76|18|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/vm0-ai/vm0-skills --skill pushinator
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: pushinator
Source: https://github.com/vm0-ai/vm0-skills/tree/main/pushinator
Command: npx skills add https://github.com/vm0-ai/vm0-skills --skill pushinator

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Enables sending push notifications to mobile devices to alert users about events, deployments, or updates without building a mobile client.

Core Features & Use Cases

  • Channel-based notifications: Send to subscribed devices.
  • Event alerts: Notify on deployments, incidents, or reminders.
  • CI/CD integration: Integrate into pipelines for alerts.

Quick Start

Send a simple notification to a channel using a curl POST with your API key.

Frequently Asked Questions about pushinator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send push notifications to mobile devices via API?▼

Push notifications are delivered to mobile devices through HTTP POST requests to a notifications endpoint. Pushinator sends notifications by accepting a JSON body with channel_id and content, authenticating with an API key, and returning delivery status. This enables real-time alerts without building a mobile client.

Can I integrate push notifications into my CI/CD pipeline?▼

Yes. Pushinator notifications work in CI/CD pipelines by accepting curl POST requests with your API key. Use this to alert teams about deployments, pipeline failures, or long-running task completions across channels directly from your build or automation scripts.

What authentication method does the push notification API use?▼

Pushinator authenticates push notification requests using Bearer token authentication via the Authorization header with your PUSHINATOR_API_KEY. Include Content-Type: application/json in the POST request to https://api.pushinator.com/api/v2/notifications/send.

How do channel-based push notifications work?▼

Channel-based notifications send alerts to all devices subscribed to a specific channel. Pushinator routes notifications to the correct devices by channel_id in your JSON payload, allowing you to target user groups or teams without managing individual device lists.

What events can trigger push notifications?▼

Pushinator notifications alert users about deployments, infrastructure incidents, system updates, CI/CD pipeline status, and long-running task completions. Any event accessible via curl and HTTP POST can trigger notifications by sending the appropriate JSON body to the API endpoint.

Do I need a mobile app to receive push notifications?▼

Pushinator delivers push notifications to mobile devices subscribed to channels, but the subscription and client setup happen outside this Skill. Pushinator handles the delivery; users must already be enrolled in your notification channel to receive alerts.