NEW Browse AI tools across categories — updated daily. See what's new →

Moshi Notify

Send a push notification to Moshi app with custom title and message

Version1.0.0
LicenseMIT
Token count~969
UpdatedJun 5, 2026

Install

Quick install

via npx skills · works with 57+ agents
npx skills add https://github.com/maplefukku/claude-code-moshi-notify
Or pick agent:
npx skills add maplefukku/claude-code-moshi-notify --agent claude-code
npx skills add maplefukku/claude-code-moshi-notify --agent cursor
npx skills add maplefukku/claude-code-moshi-notify --agent codex
npx skills add maplefukku/claude-code-moshi-notify --agent opencode
npx skills add maplefukku/claude-code-moshi-notify --agent github-copilot
npx skills add maplefukku/claude-code-moshi-notify --agent windsurf
More install options

Shorthand — useful for multi-skill repos:

npx skills add maplefukku/claude-code-moshi-notify

Manual — clone the repo and drop the folder into your agent's skills directory:

git clone https://github.com/maplefukku/claude-code-moshi-notify.git
cp -r claude-code-moshi-notify ~/.claude/skills/
How to use: Once installed, ask your agent to "use the moshi-notify skill" or describe what you want (e.g. "Send a push notification to Moshi app with custom title and message"). Requires Node.js 18+.

moshi-notify

Send a push notification to Moshi app with custom title and message

---
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 "完了" "ビルドが成功しました。

- コンパイル完了
- テスト通過
- デプロイ準備完了"
/moshi-notify "エラー" "テストが失敗しました。

詳細はログを確認してください。"

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: "通知を送信しました"
39:["$","div",null,{"className":"flex flex-wrap items-center gap-3 mb-8","children":[["$","$L3c",null,{"skillId":"86b1adf7-5b9f-4cc8-8391-6b515f3374a2","content":"$3d"}],["$","a",null,{"href":"/api/skills/maplefukku-moshi-notify/download","target":"_blank","rel":"noopener noreferrer","className":"inline-flex items-center justify-center gap-2 px-4 py-2 text-sm font-medium border border-input bg-background hover:bg-accent hover:text-accent-foreground transition-colors","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":16,"height":16,"fill":"currentColor","viewBox":"0 0 256 256","transform":"$undefined","children":[false,"$undefined",["$","path",null,{"d":"M224,144v64a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V144a8,8,0,0,1,16,0v56H208V144a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,124.69V32a8,8,0,0,0-16,0v92.69L93.66,98.34a8,8,0,0,0-11.32,11.32Z"}]]}],"Download Zip"]}],["$","$L3e",null,{"skillId":"86b1adf7-5b9f-4cc8-8391-6b515f3374a2","skillSlug":"maplefukku-moshi-notify","initialVoted":false}]]}]
40:T59d,---
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 "完了" "ビルドが成功しました。

- コンパイル完了
- テスト通過
- デプロイ準備完了"
/moshi-notify "エラー" "テストが失敗しました。

詳細はログを確認してください。"

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: "通知を送信しました"
42:[]

---

Source: https://github.com/maplefukku/claude-code-moshi-notify
Author: maplefukku
Discovered via: skillsdirectory.com
Genre: tools

SKILL.md source

---
name: moshi-notify
description: Send a push notification to Moshi app with custom title and message
---

# moshi-notify

Send a push notification to Moshi app with custom title and message

---
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 "完了" "ビルドが成功しました。

- コンパイル完了
- テスト通過
- デプロイ準備完了"
/moshi-notify "エラー" "テストが失敗しました。

詳細はログを確認してください。"
```

## 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: "通知を送信しました"
39:["$","div",null,{"className":"flex flex-wrap items-center gap-3 mb-8","children":[["$","$L3c",null,{"skillId":"86b1adf7-5b9f-4cc8-8391-6b515f3374a2","content":"$3d"}],["$","a",null,{"href":"/api/skills/maplefukku-moshi-notify/download","target":"_blank","rel":"noopener noreferrer","className":"inline-flex items-center justify-center gap-2 px-4 py-2 text-sm font-medium border border-input bg-background hover:bg-accent hover:text-accent-foreground transition-colors","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":16,"height":16,"fill":"currentColor","viewBox":"0 0 256 256","transform":"$undefined","children":[false,"$undefined",["$","path",null,{"d":"M224,144v64a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V144a8,8,0,0,1,16,0v56H208V144a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,124.69V32a8,8,0,0,0-16,0v92.69L93.66,98.34a8,8,0,0,0-11.32,11.32Z"}]]}],"Download Zip"]}],["$","$L3e",null,{"skillId":"86b1adf7-5b9f-4cc8-8391-6b515f3374a2","skillSlug":"maplefukku-moshi-notify","initialVoted":false}]]}]
40:T59d,---
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 "完了" "ビルドが成功しました。

- コンパイル完了
- テスト通過
- デプロイ準備完了"
/moshi-notify "エラー" "テストが失敗しました。

詳細はログを確認してください。"
```

## 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: "通知を送信しました"
42:[]


---

**Source**: https://github.com/maplefukku/claude-code-moshi-notify
**Author**: maplefukku
**Discovered via**: skillsdirectory.com
**Genre**: tools

Related skills 6

caveman

★ Featured

Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.

juliusbrussee 167k
Development

secure-linux-web-hosting

★ Featured

Use when setting up, hardening, or reviewing a cloud server for self-hosting, including DNS, SSH, firewalls, Nginx, static-site hosting, reverse-proxying an app, HTTPS with Let's Encrypt or ACME clients, safe HTTP-to-HTTPS redirects, or optional post-launch network tuning such as BBR.

xixu-me 155k
Development

readme-i18n

★ Featured

Use when the user wants to translate a repository README, make a repo multilingual, localize docs, add a language switcher, internationalize the README, or update localized README variants in a GitHub-style repository.

xixu-me 155k
Development

lark-shared

★ Featured

Use when first setting up lark-cli, running auth login, switching user/bot identity (--as), handling permission denied or scope errors, needing to update lark-cli, or seeing _notice in JSON output.

larksuite 155k
Development

improve-codebase-architecture

★ Featured

Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.

mattpocock 151k
Development

paper-context-resolver

★ Featured

Optional RigorPilot helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacin...

lllllllama 127k
Development