Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vm0-ai avatar

Pushinator

  • 101 installs
  • 76 repo stars
  • Updated August 4, 2026
  • vm0-ai/vm0-skills

Helps with ai & agent building tasks during AI-assisted development.

About

pushinator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • pushinator
  • AI & Agent Building
  • AI-coding skill

Pushinator by the numbers

  • 101 all-time installs (skills.sh)
  • +1 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #4,322 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vm0-ai/vm0-skills --skill pushinator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs101
repo stars76
Last updatedAugust 4, 2026
Repositoryvm0-ai/vm0-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Troubleshooting

If requests fail, run zero doctor check-connector --env-name PUSHINATOR_TOKEN or zero doctor check-connector --url https://api.pushinator.com/api/v2/notifications/send --method POST

How to Use

Base URL: https://api.pushinator.com

Required headers:

  • Authorization: Bearer $PUSHINATOR_TOKEN
  • Content-Type: application/json

1. Send a Push Notification

Send a notification to all subscribers of a channel.

Write to /tmp/pushinator_request.json:

{
  "channel_id": "<your-channel-uuid>",
  "content": "Hello from Pushinator!"
}

Replace <your-channel-uuid> with your actual channel UUID, then run:

curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
  --header "Authorization: Bearer $PUSHINATOR_TOKEN" \
  --header "Content-Type: application/json" \
  -d @/tmp/pushinator_request.json

Response:

{
  "success": true,
  "message": "Notification created and being sent to subscribers"
}

2. Send Deployment Notification

Notify when a deployment completes.

Write to /tmp/pushinator_request.json:

{
  "channel_id": "<your-channel-uuid>",
  "content": "Deployment complete! Project deployed to production."
}

Replace <your-channel-uuid> with your actual channel UUID, then run:

curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
  --header "Authorization: Bearer $PUSHINATOR_TOKEN" \
  --header "Content-Type: application/json" \
  -d @/tmp/pushinator_request.json

3. Send Alert with Emoji

Include emojis for visual distinction.

Write to /tmp/pushinator_request.json:

{
  "channel_id": "<your-channel-uuid>",
  "content": "Build failed! Check the CI logs."
}

Replace <your-channel-uuid> with your actual channel UUID, then run:

curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
  --header "Authorization: Bearer $PUSHINATOR_TOKEN" \
  --header "Content-Type: application/json" \
  -d @/tmp/pushinator_request.json

Request Parameters

ParameterTypeRequiredDescription
channel_idstringYesUUID of the notification channel
contentstringYesNotification message text

HTTP Status Codes

CodeDescription
2xxSuccess - notification sent
4xxInvalid request or missing parameters
5xxServer error - retry recommended

Guidelines

1. Keep messages concise: Push notifications have limited display space 2. Use channels for topics: Create separate channels for different notification types 3. Rate limiting: Stay within your plan's monthly notification limit 4. Include context: Make notifications actionable with relevant details

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.