🛠️ Personal Finish Notifier
Claudeのコード実行やエージェントのワークフロー完了時に、「Claudeが終了しました」と通知するアラートを追加するSkill。
📜 元の英語説明(参考)
Add a simple "Claude has finished." alert to Claude Code or other agent workflows through an OpenClaw-configured transport.
🇯🇵 日本人クリエイター向け解説
Claudeのコード実行やエージェントのワークフロー完了時に、「Claudeが終了しました」と通知するアラートを追加するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 5
💬 こう話しかけるだけ — サンプルプロンプト
- › Personal Finish Notifier を使って、最小構成のサンプルコードを示して
- › Personal Finish Notifier の主な使い方と注意点を教えて
- › Personal Finish Notifier を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Personal Finish Notifier
Use this skill to wire agent completion events into a simple notification channel.
Principles
- Treat notifications like a person checking back in, not a machine event log.
- Keep the routing layer engine-agnostic.
- Prefer a user-configured target and transport over hardcoded routing.
- Prefer OpenClaw transports over engine-specific delivery logic.
Layout
scripts/notify.sh- core formatter + transport adapterscripts/install-claude-hook.sh- install/update Claude hook wiringscripts/test-openclaw.sh- send a live self-test through OpenClawreferences/architecture.md- rationale and extension points
Default setup
For Claude Code on this machine:
./scripts/install-claude-hook.sh
For a live delivery check:
./scripts/test-openclaw.sh
Inputs
The notifier reads hook JSON from stdin and settings from ~/.claude/mac-notify.env.
Required routing values:
OPENCLAW_NOTIFY_CHANNELOPENCLAW_NOTIFY_TARGET
Optional safety value:
OPENCLAW_NOTIFY_SELF_TARGET
If OPENCLAW_NOTIFY_SELF_TARGET is set, the script refuses to send when the target differs.
Adapters
- Claude Code:
Stop,TaskCompleted - OpenClaw transport: WhatsApp now
- Future adapters: Codex completion hooks, native node notify, webhook, APNs
Message style
Human tone rules:
- short
- specific
- reads like a teammate checking back in
- avoid raw event names like
Stoporend_turn
If you need architecture context or to add a new transport, read references/architecture.md.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (1,760 bytes)
- 📎 references/architecture.md (820 bytes)
- 📎 scripts/install-claude-hook.sh (1,142 bytes)
- 📎 scripts/notify.sh (2,602 bytes)
- 📎 scripts/test-openclaw.sh (326 bytes)