ワンクリックで
alerts
Send alerts and notifications using AppleScript - banners, modals, and text-to-speech
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Send alerts and notifications using AppleScript - banners, modals, and text-to-speech
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Daily review workflow - process completed work, roll over unfinished items, prepare for tomorrow
Prepare for upcoming calendar events - identify prep needs, research attendees, create briefings
Prune and consolidate state files, surface important items from journal to core state
Weekly review for pattern recognition, commitment hygiene, and identity refinement
Guide for setting up Innie from scratch - global config, memory repo, MCP servers, and scheduler
How Matt creates pull requests - branch naming, commit style, PR workflow
| name | alerts |
| description | Send alerts and notifications using AppleScript - banners, modals, and text-to-speech |
Send alerts and notifications to Matt using AppleScript.
Use for informational alerts that don't require immediate action:
osascript /path/to/skill/alerts/notify.scpt "Title" "Message body here"
The notification appears briefly and goes to Notification Center.
Use for alerts that require acknowledgement:
osascript /path/to/skill/alerts/dialog.scpt "Title" "Message body here"
This blocks until the user clicks OK. Use sparingly.
For urgent alerts:
osascript /path/to/skill/alerts/dialog.scpt "Title" "Message body here" "Ping"
Available sounds: Basso, Blow, Bottle, Frog, Funk, Glass, Hero, Morse, Ping, Pop, Purr, Sosumi, Submarine, Tink
For hands-free alerts:
osascript /path/to/skill/alerts/say.scpt "Your meeting starts in 5 minutes"
All scripts are in the same directory as this SKILL.md:
notify.scpt - Non-modal banner notificationdialog.scpt - Modal dialog (blocks until dismissed)say.scpt - Text-to-speech# Reminder about a meeting
osascript ~/.opencode/skill/alerts/notify.scpt "Calendar" "Team sync in 15 minutes"
# Task completed
osascript ~/.opencode/skill/alerts/notify.scpt "Build Complete" "All tests passed"
# Urgent - needs action
osascript ~/.opencode/skill/alerts/dialog.scpt "Action Required" "PR review requested by Sarah" "Ping"
# Hands-free reminder
osascript ~/.opencode/skill/alerts/say.scpt "Don't forget to submit the form before noon"