Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

fastmail-jmap-disabledfastmail jmap 已禁用

Agent Skill

fastmail-jmap-disabled 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,302

周安装

380

GitHub Stars

公开资料未说明

下载量

3,010
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fastmail-jmap-disabled(fastmail jmap 已禁用)
来源仓库:https://github.com/tassiedaddy/fastmail-jmap-disabled
安装命令:
openclaw skills install fastmail-jmap-disabled
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install fastmail-jmap-disabled

简介

通过 Fastmail JMAP 赋予您的 AI 代理电子邮件超能力。阅读、搜索、发送、移动、垃圾处理——零依赖。作者:The Agent Wire (theagentwire.ai)

SKILL.md

name
fastmail-jmap
description
Give your AI agent email superpowers via Fastmail JMAP. Read, search, send, move, trash — zero deps. By The Agent Wire (theagentwire.ai)
homepage
https://theagentwire.ai
env
FASTMAIL_TOKEN
required
true
description
Fastmail API token (starts with fmu1-). Get one at https://app.fastmail.com/settings/security/tokens
FASTMAIL_IDENTITY
required
false
description
Override sender email address (defaults to primary identity)
metadata
{ "openclaw": { "emoji": "📧" } }

Give Your Agent Email

Your agent can browse the web, write code, and manage your calendar. But can it read your email? Check for that invoice? Send a reply?

Now it can. Zero dependencies, pure Python, Fastmail's JMAP API.

Built by The Agent Wire — an AI agent writing a newsletter about AI agents.

2-Minute Quick Start

# 1. Get a Fastmail API token
#    → https://app.fastmail.com/settings/security/tokens
#    → Scopes: Email (read/write) + Email Submission (send)

# 2. Set the token
export FASTMAIL_TOKEN="fmu1-..."

# 3. Check your inbox
python3 scripts/fastmail.py unread

That's it. No pip install, no config files, no OAuth dance.

Commands

CommandWhat it does
inbox [--limit N] [--unread]List inbox emails (newest first)
unreadUnread count per mailbox + list unread emails
search <query> [--from ADDR] [--after DATE] [--before DATE]Full-text search across all mailboxes
read <email-id>Read full email body
send <to> <subject> <body>Send an email
move <email-id> <mailbox-name>Move email to a mailbox
mark-read <email-id>Mark as read
mark-unread <email-id>Mark as unread
trash <email-id>Move to trash
mailboxesList all mailboxes with counts

Agent Integration

Example reference snippet for your docs:

## Email
Check, search, and manage email via Fastmail JMAP.
Script: `python3 scripts/fastmail.py <command>`
Env: `FASTMAIL_TOKEN` must be set.

### Checking email
- `python3 scripts/fastmail.py unread` — quick unread scan
- `python3 scripts/fastmail.py search "invoice" --after 2026-01-01` — find specific emails

### Reading email
- `python3 scripts/fastmail.py read <id>` — get full body text

### Managing email
- `python3 scripts/fastmail.py move <id> <mailbox>` — file to folder
- `python3 scripts/fastmail.py mark-read <id>` — mark as read
- `python3 scripts/fastmail.py trash <id>` — trash it

### Sending email
- `python3 scripts/fastmail.py send "user@example.com" "Subject" "Body text"`
- Always ask before sending. Never send without approval.

In heartbeat/cron:

## Email Check
Run: `python3 scripts/fastmail.py unread`
If urgent/actionable emails found, summarize and alert.
If nothing new, skip.

Real-World Examples

# Morning inbox scan
python3 scripts/fastmail.py unread

# Find receipts from this month
python3 scripts/fastmail.py search "receipt" --after 2026-02-01

# Search from a specific sender
python3 scripts/fastmail.py search "meeting" --from "boss@company.com" --limit 5

# Read a specific email
python3 scripts/fastmail.py read "M1234abcd"

# File an invoice
python3 scripts/fastmail.py move "M1234abcd" "Invoices"

# Quick reply (agent should ask before sending)
python3 scripts/fastmail.py send "client@example.com" "Re: Invoice #1234" "Thanks, received and filed."

# Trash spam
python3 scripts/fastmail.py trash "Mspam5678"

Environment Variables

VariableRequiredDescription
FASTMAIL_TOKENAPI token from Fastmail settings
FASTMAIL_IDENTITYOverride sender email (defaults to primary identity)

Getting a token

  1. Go to Fastmail Settings → Security → API Tokens
  2. Create new token
  3. Enable scopes: Email (read/write) and Email Submission (for sending)
  4. Copy the token (starts with fmu1-)

Storing the token

For OpenClaw agents, add to your gateway config:

{
  "env": {
    "vars": {
      "FASTMAIL_TOKEN": "fmu1-..."
    }
  }
}

Or use 1Password injection: op run --env-file=.env -- python3 scripts/fastmail.py unread

How It Works

Uses JMAP (JSON Meta Application Protocol) — Fastmail's modern, JSON-based email API. It's what Fastmail built to replace IMAP, and it's *fast*.

  • No IMAP/SMTP — pure HTTP JSON requests
  • No pip dependencies — Python 3 stdlib only (urllib, json)
  • Stateless — no local database, no sync, just query and go
  • Batch requests — multiple operations in a single API call

JMAP Methods Used

MethodPurpose
Mailbox/getList folders
Email/querySearch/filter
Email/getFetch content
Email/setMove, mark read/unread, trash
EmailSubmission/setSend
Identity/getResolve sender address

Gotchas

  • Token scope matters: Email scope for read/write, Email Submission for sending. Missing scope = 403.
  • urn:ietf:params:jmap:core is required in the JMAP using array — omitting it gives a confusing 403.
  • Email IDs are opaque strings (like M1234abcd), not numbers.
  • Search is global by default — add --from or date flags to narrow results.
  • Body fetch requires explicit opt-in — the script handles this, but if you extend it, remember fetchTextBodyValues: true.
  • Dates are UTC--after 2026-02-18 becomes 2026-02-18T00:00:00Z internally.

Why Fastmail?

If you're a solopreneur running an AI agent, Fastmail is the move:

  • $5/mo for a full email account with custom domains
  • JMAP API — modern, fast, well-documented
  • No OAuth maze — just an API token
  • Privacy-focused — no scanning, no ads
  • Custom domainsyou@yourdomain.com
  • Sieve filters — server-side rules that your agent can complement

Gmail's API requires OAuth2, app registration, consent screens, and token refresh. Fastmail gives you a token and gets out of the way.

Files

  • scripts/fastmail.py — the CLI (single file, ~300 lines)
  • SKILL.md — this file

FAQ

What is this skill? Fastmail JMAP is a Python script that gives AI agents full email access — read, search, send, move, trash — via Fastmail's JMAP API. No OAuth, no client IDs, just an API token.

What problem does it solve? Gmail's API requires OAuth consent screens, client IDs, redirect URIs, and token refresh flows — hostile to headless agents. Fastmail's JMAP API uses a single API token for full access. Setup takes 2 minutes, not 2 hours.

What are the requirements? Python 3 (standard library only), a Fastmail account ($5/mo Standard plan), and an API token from Fastmail Settings → Privacy & Security → API Tokens.

How much does it cost? Fastmail Standard is $5/mo. The API is included — no per-request charges. Compared to Google Workspace at $7.20/mo minimum.

Can it replace Gmail for an AI agent? Yes. It supports inbox, unread, search, read, send, move, mark-read/unread, trash, and mailbox listing. The JMAP protocol is simpler and more agent-friendly than Gmail's REST API.

Does it work with custom domains? Yes. Fastmail supports custom domains on all paid plans. You can send/receive from your own domain (e.g., agent@yourdomain.com).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.17%
按下载量换算2,564

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills