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