AI SummaryA Claude Code skill that enables sending customized push notifications to the Moshi app via webhook, useful for alerting users about task completion, build status, and other real-time events during automated workflows.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Moshi Notification Skill" skill in my project. Please run this command in my terminal: # Install skill into the correct directory mkdir -p .claude/skills/claude-code-moshi-notify && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/claude-code-moshi-notify/SKILL.md "https://raw.githubusercontent.com/maplefukku/claude-code-moshi-notify/main/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Claude Code skill for sending push notifications to 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詳細はログを確認してください。" `
Moshi Notification Skill
Send a push notification to the Moshi app.
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: `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: "通知を送信しました"
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster