| name | mailbridge_admin |
| description | Read Outlook inbox, meeting requests, and calendar from the OpenClaw HostAdapter HTTP API. |
| metadata | {"openclaw":{"os":["windows"]}} |
MailBridge Admin
Use this skill whenever the operator asks about inbox items, meeting requests, scheduling conflicts, calendar analysis, or drafting an administrative response.
Required Workflow
- Call
GET /v1/status on the HostAdapter. If the bridge is not ready, stop and report the bridge state.
- Use list endpoints first:
GET /v1/messages?since=<utc>&limit=<n>
GET /v1/meeting-requests?since=<utc>&limit=<n>
GET /v1/calendar?start=<utc>&end=<utc>&limit=<n>
- Use get endpoints only for items already identified as relevant:
GET /v1/messages/{bridgeId}
GET /v1/events/{bridgeId}
- Respect redaction: if
isRedacted=true or the bridge mode is safe, state that details are unavailable. Never fabricate sender, body, or attendee details.
- The bridge is read-only: never claim to have replied, sent, created, updated, accepted, declined, or rescheduled anything.
Scheduling Rules
The following rules apply to every availability or scheduling question. They are mandatory and must be applied in addition to the Required Workflow above.
(a) Render every event time in the operator's local timezone from USER.md, alongside the original UTC value.
(b) Before answering any availability or scheduling question, perform a fresh call covering the relevant time window.