# Send Fastmail to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fastmail",
    "name": "Fastmail",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/witooh/fastmail",
    "canonicalUrl": "https://clawhub.ai/witooh/fastmail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fastmail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fastmail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "dist/cli.js",
      "package.json",
      "references/TOOLS.md",
      "scripts/caldav-client.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fastmail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:22:13.604Z",
      "expiresAt": "2026-05-06T21:22:13.604Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fastmail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fastmail",
        "contentDisposition": "attachment; filename=\"fastmail-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fastmail"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fastmail"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fastmail",
    "downloadUrl": "https://openagent3.xyz/downloads/fastmail",
    "agentUrl": "https://openagent3.xyz/skills/fastmail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fastmail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fastmail/agent.md"
  }
}
```
## Documentation

### Quick Start

Invoke tools via CLI:

# Install dependencies first
cd .opencode/skills/fastmail && bun install

# Email: List mailboxes
bunx fastmail list_mailboxes

# Email: Send
bunx fastmail send_email \\
  '{"to": [{"email": "user@example.com"}], "subject": "Hi", "text_body": "Message"}'

# Calendar: List events
bunx fastmail list_events \\
  '{"start_date": "2024-01-01", "end_date": "2024-01-31"}'

# Calendar: Create event with reminder
bunx fastmail create_event_with_reminder \\
  '{"title": "Meeting", "start": "2024-01-15T10:00:00", "end": "2024-01-15T11:00:00", "reminder_minutes": [15, 60]}'

# List all available tools
bunx fastmail --list

### When to Use This Skill

📧 Check inbox or search emails
📧 Send, reply, or move emails
🏷️ Apply labels or organize mailbox
📅 View calendar or events
📅 Create, update, or delete events
🔔 Set event reminders or alarms

### Email Tools (10 total)

ToolPurposelist_mailboxesList all folderslist_emailsList emails in mailboxget_emailGet full email contentget_threadGet all emails in a conversation threadsearch_emailsSearch by text querysend_emailSend new emailreply_emailReply to emailmove_emailMove to folderset_labelsApply labels ($seen, $flagged)delete_emailDelete (move to trash)

### Bulk Email Tools (3 total)

ToolPurposebulk_move_emailsMove multiple emails at oncebulk_set_labelsApply labels to multiple emailsbulk_delete_emailsDelete multiple emails at once

### Calendar Tools (10 total)

ToolPurposelist_calendarsList all calendarslist_eventsList events by date rangeget_eventGet event detailscreate_eventCreate new eventupdate_eventUpdate existing eventdelete_eventDelete eventsearch_eventsSearch by title/descriptioncreate_recurring_eventCreate repeating eventlist_invitationsList calendar invitationsrespond_to_invitationAccept/decline/maybe invitations

### Reminder Tools (4 total)

ToolPurposeadd_event_reminderAdd reminder to eventremove_event_reminderRemove reminder(s)list_event_remindersList reminders for eventcreate_event_with_reminderCreate event + reminder in one call

### Common Examples

# Check inbox (limit 10)
bunx fastmail list_emails '{"limit": 10}'

# Search for emails
bunx fastmail search_emails '{"query": "invoice"}'

# Get specific email content
bunx fastmail get_email '{"email_id": "xxx"}'

# Get email thread/conversation
bunx fastmail get_thread '{"email_id": "xxx"}'

# Bulk operations
bunx fastmail bulk_move_emails '{"email_ids": ["id1", "id2"], "target_mailbox_id": "archive"}'
bunx fastmail bulk_delete_emails '{"email_ids": ["id1", "id2", "id3"]}'

# Create recurring event (daily for 10 days)
bunx fastmail create_recurring_event \\
  '{"title": "Standup", "start": "2024-01-01T09:00:00", "end": "2024-01-01T09:30:00", "recurrence": "daily", "recurrence_count": 10}'

# Calendar invitations
bunx fastmail list_invitations
bunx fastmail respond_to_invitation '{"event_id": "xxx", "response": "accept"}'

### Decision Tree

Need to manage email?

List/search → list_emails or search_emails
Read content → get_email
View conversation → get_thread
Send/reply → send_email or reply_email
Organize → move_email, set_labels, delete_email
Bulk actions → bulk_move_emails, bulk_set_labels, bulk_delete_emails

Need to manage calendar?

View → list_calendars or list_events
Create → create_event or create_recurring_event
Modify → update_event
Delete → delete_event
Invitations → list_invitations, respond_to_invitation

Need reminders?

Add to existing event → add_event_reminder
Create event + reminder → create_event_with_reminder (faster)
Manage → list_event_reminders, remove_event_reminder

### Output Format

All tools return JSON:

{
  "success": true,
  "data": { /* tool-specific response */ },
  "timestamp": "2024-01-15T10:00:00+07:00"
}

### Environment Variables

VariablePurposeRequiredFASTMAIL_API_TOKENEmail via JMAPYes (for email)FASTMAIL_USERNAMECalendar via CalDAVYes (for calendar)FASTMAIL_PASSWORDCalendar app passwordYes (for calendar)FASTMAIL_TIMEZONECalendar timezone (IANA format)No (auto-detected)

Setup:

export FASTMAIL_API_TOKEN="your-api-token"
export FASTMAIL_USERNAME="your-email@fastmail.com"
export FASTMAIL_PASSWORD="your-app-password"
# Optional: Override timezone (defaults to system local timezone)
export FASTMAIL_TIMEZONE="America/New_York"  # or "Asia/Bangkok", "Europe/London", etc.

### Timezone Support

⏰ Configurable calendar timezone

Default: Auto-detects your system's local timezone
Override: Set FASTMAIL_TIMEZONE environment variable
Uses IANA timezone identifiers (e.g., America/New_York, Asia/Bangkok, Europe/London)
Input times assumed in configured timezone
Output times shown in configured timezone
Stored internally as UTC
Handles Daylight Saving Time (DST) automatically

### See Also

Detailed reference: .opencode/skills/fastmail/references/TOOLS.md
Full guide: .opencode/skills/fastmail/README.md
Setup help: Fastmail Settings → Privacy & Security → Integrations
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: witooh
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T21:22:13.604Z
- Expires at: 2026-05-06T21:22:13.604Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fastmail)
- [Send to Agent page](https://openagent3.xyz/skills/fastmail/agent)
- [JSON manifest](https://openagent3.xyz/skills/fastmail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fastmail/agent.md)
- [Download page](https://openagent3.xyz/downloads/fastmail)