send_push_notification
Send automatic push notifications to the user's phone on task completion, when input is needed, or on failure. Keep the user informed and unblocked with a one-line summary.
Instructions
Automatic push notification to the user's phone. CALL IT YOURSELF — never ask permission — in exactly these situations:
status="completed": you finished a task, long-running operation, or multi-step edit.
status="needs_input": you are blocked and need the user (decision, answer, credentials) before continuing.
status="failed": an unrecoverable error stopped the task. Pass a one-line summary. This is a fire-and-forget notification: if the push fails, continue your task anyway. FALLBACK: if this tool is unavailable, send the same notification via bash: npx nockit send --status --summary "" [--topic ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | Custom Ntfy topic name. Defaults to process.env.NTFY_TOPIC or 'nockit_default_alerts'. | |
| status | Yes | The current state of your task. | |
| summary | Yes | Brief progress summary, error log, or what input is needed from the user. |