Communication notifications workflow
Skill gaelic-ghost/socket/skills/communication-notifications-workflow
The Source for macOS Agent Workflows
npx -y skills add gaelic-ghost/socket --skill communication-notifications-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Implement Apple communication and Time Sensitive notifications with intent donation, Focus behavior, and a bounded Notification Service Extension processing path.
SKILL.md
2.5 KB, as published. Nobody here has run it
Communication Notifications Workflow
Purpose
Deliver calling and messaging notifications with accurate people and conversation context, while keeping Focus behavior, interruption level, and Notification Service Extension processing within their documented boundaries.
Workflow
- Confirm that the notification represents a real person-to-person communication or incoming call; do not use communication presentation to promote unrelated activity.
- Configure the required push, communication-notification, Time Sensitive, and Siri/intent capabilities only when the feature qualifies.
- Donate the applicable message or call intent and set the needed
NSUserActivityTypesentry for the supported communication surface. - Add a Notification Service Extension only when an alert payload needs bounded enrichment, decryption, attachment download, or communication-content update.
- Send alert payloads with
mutable-content: 1; return the best available content before the extension expires. Silent, sound-only, and badge-only pushes do not invoke the extension. - Treat Time Sensitive delivery and Focus status as user-controlled system behavior, not a guarantee that a notification will interrupt someone.
Data And Safety Boundaries
- Keep push payloads privacy-minimal; decrypt or fetch sensitive display data only when needed and tolerate extension timeout.
- Do not make notification filtering a hidden policy engine. The extension may transform this app's incoming alert, not inspect or filter other apps' alerts.
- Provide a plain fallback title/body if enrichment fails.
Validation
Validate on physical devices with notification permission, Focus modes, communication metadata, Time Sensitive settings, extension timeout fallback, network loss, and redacted-lock-screen behavior.