Our review
Sends a push notification to the Moshi app with a custom title and message.
Strengths
- Simple setup via a slash command and curl request.
- Supports newlines and long text in the message.
- Instant confirmation after sending.
Limitations
- Requires a valid Moshi token (not provided in the skill).
- Depends on the Moshi API and service availability.
- No advanced error handling (e.g., invalid token).
When you need a quick mobile notification for events like build completion, critical errors, or custom alerts.
For notifications requiring advanced authentication, queuing, or guaranteed delivery (use dedicated services like Pushover or Slack instead).
Security analysis
SafeThe skill only executes a curl POST to a fixed API endpoint with user-provided text, posing no risk of data exfiltration or system compromise.
No concerns found
Examples
/moshi-notify "Task Complete" "Build finished successfully. All 42 tests passed."/moshi-notify "Error" "Test failed.\n\nDetails: AssertionError in module X.\nCheck logs."/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: "通知を送信しました"
Task Prioritizer
Productivity
Prioritizes your tasks using Eisenhower, ICE, and RICE frameworks.
Weekly Status Report Generator
Productivity
Generate structured and concise weekly status reports.
Daily Standup Report
Productivity
Generates structured and concise daily standup reports.