← 返回 Skills 市场
1951
总下载
0
收藏
2
当前安装
2
版本数
在 OpenClaw 中安装
/install fastmail
功能描述
Manages Fastmail email and calendar via JMAP and CalDAV APIs. Use for emails (read, send, reply, search, organize, bulk operations, threads) or calendar (events, reminders, RSVP invitations). Timezone auto-detected from system.
使用说明 (SKILL.md)
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": "[email protected]"}], "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)
| Tool | Purpose |
|---|---|
list_mailboxes |
List all folders |
list_emails |
List emails in mailbox |
get_email |
Get full email content |
get_thread |
Get all emails in a conversation thread |
search_emails |
Search by text query |
send_email |
Send new email |
reply_email |
Reply to email |
move_email |
Move to folder |
set_labels |
Apply labels ($seen, $flagged) |
delete_email |
Delete (move to trash) |
Bulk Email Tools (3 total)
| Tool | Purpose |
|---|---|
bulk_move_emails |
Move multiple emails at once |
bulk_set_labels |
Apply labels to multiple emails |
bulk_delete_emails |
Delete multiple emails at once |
Calendar Tools (10 total)
| Tool | Purpose |
|---|---|
list_calendars |
List all calendars |
list_events |
List events by date range |
get_event |
Get event details |
create_event |
Create new event |
update_event |
Update existing event |
delete_event |
Delete event |
search_events |
Search by title/description |
create_recurring_event |
Create repeating event |
list_invitations |
List calendar invitations |
respond_to_invitation |
Accept/decline/maybe invitations |
Reminder Tools (4 total)
| Tool | Purpose |
|---|---|
add_event_reminder |
Add reminder to event |
remove_event_reminder |
Remove reminder(s) |
list_event_reminders |
List reminders for event |
create_event_with_reminder |
Create 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_emailsorsearch_emails - Read content →
get_email - View conversation →
get_thread - Send/reply →
send_emailorreply_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_calendarsorlist_events - Create →
create_eventorcreate_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
| Variable | Purpose | Required |
|---|---|---|
FASTMAIL_API_TOKEN |
Email via JMAP | Yes (for email) |
FASTMAIL_USERNAME |
Calendar via CalDAV | Yes (for calendar) |
FASTMAIL_PASSWORD |
Calendar app password | Yes (for calendar) |
FASTMAIL_TIMEZONE |
Calendar timezone (IANA format) | No (auto-detected) |
Setup:
export FASTMAIL_API_TOKEN="your-api-token"
export FASTMAIL_USERNAME="[email protected]"
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_TIMEZONEenvironment 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
安全使用建议
Do not install or run this skill until you verify its origin and inspect the bundled code. Specific steps:
- Verify source: this skill lists no homepage and source is unknown; prefer skills with a verifiable repository or maintainer.
- Confirm required credentials: SKILL.md and code require FASTMAIL_API_TOKEN (JMAP) and FASTMAIL_USERNAME + FASTMAIL_PASSWORD (CalDAV). Only provide an app-specific token/password with minimal required scope; do not use your primary password.
- Audit the bundle: review dist/cli.js and any embedded/base64 content for unexpected endpoints, encoded scripts, or obfuscated behavior before running 'bun install' or executing the CLI.
- Run in a sandbox: if you must test, run it in an isolated environment or container, and monitor outbound network calls to ensure they only go to Fastmail endpoints (api.fastmail.com, caldav.fastmail.com).
- Use least privilege and rotate: generate a dedicated Fastmail API token/app-password for this skill and revoke/rotate it after testing.
- If metadata/registry claims differ from the package (e.g., 'instruction-only' vs present code), treat that as a warning signal and reach out to the publisher or avoid using the skill until provenance is clarified.
功能分析
Type: OpenClaw Skill
Name: fastmail
Version: 1.0.1
This skill is classified as suspicious due to its broad permissions, which grant full access to the user's Fastmail email and calendar, including the ability to read, send, move, and delete emails, as well as create, update, and delete calendar events. While these capabilities are necessary for the skill's stated purpose and there is no clear evidence of intentional harmful behavior (e.g., data exfiltration to unauthorized endpoints, arbitrary command execution, or persistence mechanisms), the extensive access to sensitive personal data and the ability to perform actions like sending emails represent a significant inherent risk if the agent were compromised or misused. The `SKILL.md`, `README.md`, and `references/TOOLS.md` files do not contain any prompt injection attempts or suspicious instructions. The `cli.ts` script securely handles arguments and calls internal TypeScript functions, and network communication is restricted to Fastmail's official JMAP and CalDAV APIs.
能力评估
Purpose & Capability
The skill explicitly implements JMAP (email) and CalDAV (calendar) and requires Fastmail credentials, which fit the stated purpose. However the registry metadata claims no required env vars, 'instruction-only', and no required binaries, while SKILL.md and the code require environment variables (FASTMAIL_API_TOKEN, FASTMAIL_USERNAME, FASTMAIL_PASSWORD) and the README/SKILL.md instructs installing and running with Bun. The mismatch between declared metadata and actual requirements is incoherent and reduces trust.
Instruction Scope
SKILL.md and the CLI code instruct the agent to run local commands (bun install, bunx fastmail ...) and to read environment variables for credentials. Those actions are appropriate for a Fastmail integration. The instructions do not ask the agent to read unrelated system files or to exfiltrate data to unknown endpoints; network calls target Fastmail JMAP and CalDAV endpoints. However the pre-scan detected a 'base64-block' pattern (possible embedded asset or obfuscation) inside distributed files which could hide unexpected behavior — this is unusual and worth auditing.
Install Mechanism
There is no formal install spec in the registry, but SKILL.md asks the user to run 'bun install' and use 'bunx' to execute the bundled CLI. A large bundled dist/cli.js is included, which means substantial code will be present on disk if installed. Dependencies are standard (tsdav, uuid). The lack of an explicit, reproducible install manifest in the registry plus a bundled executable suggests you should inspect the bundled code (dist/cli.js) before running; bundlers sometimes inline large base64 blobs (flagged by the scanner) so confirm those blobs are benign.
Credentials
The environment variables required by the SKILL.md and code (FASTMAIL_API_TOKEN for JMAP; FASTMAIL_USERNAME and FASTMAIL_PASSWORD for CalDAV) are appropriate and expected for this purpose. The README notes tokens have full account access, which is significant but expected for API tokens. The concern is that the registry metadata omitted these required credentials entirely — an inconsistency that could trick users into granting secrets without realizing what is needed. Also verify the skill truly only uses those credentials for hosted Fastmail endpoints.
Persistence & Privilege
The skill does not request 'always: true' and does not claim to modify other skills or system-wide settings. It appears to run on demand via CLI and uses environment variables; autonomy and persistence are normal/default and present no additional red flags by themselves.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install fastmail - 安装完成后,直接呼叫该 Skill 的名称或使用
/fastmail触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- No user-visible changes in this release.
- No file changes detected compared to previous version.
v1.0.0
- Initial release of the Fastmail skill for managing email and calendar via JMAP and CalDAV APIs.
- Supports reading, sending, replying, searching, organizing, and bulk operations for emails.
- Provides tools for viewing, creating, updating, deleting, and managing calendar events with reminders.
- Features auto-detected or configurable timezone support for calendar operations.
- Includes 10+ tools each for email and calendar management, plus bulk and reminder tools.
- Full CLI usage examples and environment variable setup instructions provided.
元数据
常见问题
Fastmail 是什么?
Manages Fastmail email and calendar via JMAP and CalDAV APIs. Use for emails (read, send, reply, search, organize, bulk operations, threads) or calendar (events, reminders, RSVP invitations). Timezone auto-detected from system. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1951 次。
如何安装 Fastmail?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install fastmail」即可一键安装,无需额外配置。
Fastmail 是免费的吗?
是的,Fastmail 完全免费(开源免费),可自由下载、安装和使用。
Fastmail 支持哪些平台?
Fastmail 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Fastmail?
由 witooh(@witooh)开发并维护,当前版本 v1.0.1。
推荐 Skills