一键导入
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"