Notification Moshi

VérifiéSûr

Envoie des notifications push à l'application Moshi via un webhook. Accepte un titre court et un message détaillé, en gérant automatiquement les cas d'arguments manquants ou combinés. Utile pour alerter les utilisateurs de l'achèvement de tâches, d'erreurs ou d'autres événements directement sur leur appareil mobile.

Spar Skills Guide Bot
ProductiviteDébutant
6002/06/2026
Claude Code
#push-notification#moshi#notification#curl

Recommandé pour

Notre avis

Envoie une notification push vers l'application Moshi avec un titre et un message personnalisés.

Points forts

  • Configuration simple via une commande slash et une requête curl.
  • Support des sauts de ligne et du texte long dans le message.
  • Confirmation immédiate après l'envoi.

Limites

  • Nécessite un token Moshi valide (non fourni dans la compétence).
  • Dépend de l'API Moshi et de la disponibilité du service.
  • Pas de gestion des erreurs avancée (ex. jeton invalide).
Quand l'utiliser

Lorsque vous souhaitez recevoir une notification mobile rapide pour des événements comme la fin d'une build, une erreur critique ou une alerte personnalisée.

Quand l'éviter

Pour des notifications nécessitant une authentification avancée, une file d'attente ou une remise garantie (préférer un service dédié comme Pushover ou Slack).

Analyse de sécurité

Sûr
Score qualité85/100

The skill only executes a curl POST to a fixed API endpoint with user-provided text, posing no risk of data exfiltration or system compromise.

Aucun point d'attention détecté

Exemples

Build completion notification
/moshi-notify "Task Complete" "Build finished successfully. All 42 tests passed."
Error alert with multiline message
/moshi-notify "Error" "Test failed.\n\nDetails: AssertionError in module X.\nCheck logs."
Simple status update
/moshi-notify "Deploy started" "Deploying version 2.1.0 to production."

name: moshi-notify description: Send a push notification to Moshi app with custom title and message argument-hint: "<title>" "<message>" disable-model-invocation: true allowed-tools: Bash(curl *)

Moshi Notification Skill

Send a push notification to the Moshi app.

Usage

/moshi-notify "タイトル" "メッセージ"

Examples

/moshi-notify "Task Complete" "Build finished successfully. All 42 tests passed."
/moshi-notify "完了" "ビルドが成功しました。\n\n- コンパイル完了\n- テスト通過\n- デプロイ準備完了"
/moshi-notify "エラー" "テストが失敗しました。\n\n詳細はログを確認してください。"

Instructions

Parse the user's input:

  • Title: Short summary (first argument or first line, max ~50 chars)
  • Message: Full detailed message (second argument or full text)

If only one argument is provided, use it as both title (truncated) and message (full).

If no arguments provided, ask the user what to notify.

Execute using Bash:

curl -s -X POST https://api.getmoshi.app/api/webhook \
  -H "Content-Type: application/json" \
  -d '{"token":"YOUR_MOSHI_TOKEN","title":"SHORT_TITLE","message":"FULL_MESSAGE"}'
  • Escape JSON special characters in title and message
  • Title should be concise (under 100 chars)
  • Message can be the full detailed text with newlines

After sending, confirm: "通知を送信しました"

Skills similaires