feat(plugins): System Pack — OS notifications + text-to-speech - #30
Merged
Conversation
rrader26
force-pushed
the
feat/system-pack
branch
2 times, most recently
from
May 12, 2026 12:44
b8b51cb to
997bc1a
Compare
Two surfaces that turn a background agent into something that can politely interrupt the human without flipping them to a chat window. Both cross-platform via OS-shipped utilities; no Node deps. Tools shipped (2): agentmark_notify native OS notification (title + body) agentmark_voice_speak text-to-speech via OS engine Platform mapping: macOS: osascript display notification + say Windows: PowerShell Windows.UI.Notifications + System.Speech.Synthesis Linux: notify-send (libnotify-bin) + espeak-ng / espeak Use cases: - "I'm waiting on your input" → notify - "Background job complete" → notify with sound - Mid-flow status updates without screen takeover → speak - Accessibility-oriented audio confirmation of completed tasks Both are async-fire-and-forget; agents don't wait for user reaction. A future PR adds voice_listen (STT) + interactive notification buttons. Tests (4 new, 346 total): plugin registration, tool surface, argument validation. Live OS-toast / TTS is smoke-tested on Mac + Win VMs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
rrader26
force-pushed
the
feat/system-pack
branch
from
May 12, 2026 12:55
997bc1a to
5ca8278
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Tools
Why
Closes the "agent can interrupt the human politely" gap. Today an MCP server can output text to the chat window, but if the user is in another app, they won't see it until they switch back. These two tools let the agent push a system-level signal:
Both fire-and-forget in v0. STT (`voice_listen`) and interactive notification buttons land in a follow-up.
Test plan
🤖 Generated with Claude Code