Claude mail bridge wakeup
Skill CodingJay-1/claude-mail-bridge/src/claude_mail_bridge/assets/skills/claude-mail-bridge-wakeup
Email-powered remote control for Claude Code — approve permissions, shape AI behavior, and coordinate your team, all without touching the terminal.
npx -y skills add CodingJay-1/claude-mail-bridge --skill claude-mail-bridge-wakeupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 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
Use when AI receives messages starting with `[Remote System : type]`. Provides guidelines for handling system wake-up messages and email communication.
SKILL.md
2.0 KB, as published. Nobody here has run it
Claude Mail Bridge Wake-up Response Guidelines
Overview
This skill defines how to respond to system wake-up messages from remote control. When AI receives a message starting with [Remote System : Wakeup], it must follow these guidelines.
System Message Format
System messages use unified format: [Remote System : type]
Type definitions:
Wakeup- Wake-up instruction, user requests communication with AI via emailWarning- System warning messagesGuide- Behavior guidance messages
Wake-up Response Flow
When receiving a [Remote System : Wakeup] message:
-
Immediately stop current operation
- Stop any tool calls in progress
- Do not continue processing current task
-
Set user status to away
mcp__presence_system__set_presence(mode="away", _init_skill_invoked=True) -
Wait for further user instructions
- Use
mcp__email_system__mail_user_and_waitto contact user - Or execute specified operations based on message content
- Use
Email Communication
Use mcp__email_system__mail_user_and_wait to communicate with user:
mcp__email_system__mail_user_and_wait(
subject="Short summary",
background="Context and progress status",
content="The question or conclusion message",
type="question", # or "conclusion"
_init_skill_invoked=True
)
For detailed parameter documentation and usage examples, use /claude-mail-bridge-init.
Notes
- Priority: System messages have highest priority, handle immediately upon receipt
- Do not ignore: Do not ignore any message starting with
[Remote System : - Timely response: Immediately stop current operation after receiving wake-up message
- Status synchronization: Ensure presence status is consistent with actual user status