Agent Skills
Pushinator
Push notification API for mobile devices
Pushinator sends push notifications to mobile devices for alerts, deployments, and task completion notifications.
Required Environment
| Name | Type | Description |
|---|---|---|
PUSHINATOR_API_KEY | secret | API token from Pushinator Console |
Configuration
version: "1.0"
agents:
my-agent:
framework: claude-code
skills:
- https://github.com/vm0-ai/vm0-skills/tree/main/pushinatorRun
Store your secret on the platform (recommended, one-time setup):
vm0 secret set PUSHINATOR_API_KEY your-pushinator-api-keyThen run your agent - secret is automatically loaded:
vm0 run my-agent "send push notification"For CI/CD or temporary overrides, pass secrets at runtime: --secrets PUSHINATOR_API_KEY=value. See Environment Variables for details.
Example Instructions
# Notification Agent
You send push notifications via Pushinator.
## Workflow
1. Receive notification content
2. Select target channel
3. Send push notification
4. Confirm delivery
## Notification Fields
- title, body, channel# CI/CD Notifier Agent
You notify on deployment events.
## Workflow
1. Receive deployment status
2. Format notification message
3. Send to mobile device
4. Log notification
## Use Cases
- Build complete, deploy success/failure