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

openclaw-mail-agentOpenClaw mail Agent 搜索

Agent Skill

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

总安装

6,267

周安装

256

GitHub Stars

公开资料未说明

下载量

2,028
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-mail-agent

简介

openclaw-mail-agent 用于在 OpenClaw 中设置 Gmail 监控并通过 Telegram 推送重要邮件。

  • 适合需要实时邮件处理和通知触发的自动化流程。
  • 基于 Google Pub/Sub 监听收件箱,结合 AI 分析邮件优先级。
  • 安装命令为 openclaw skills install openclaw-mail-agent,需配置 Google 云项目和 Telegram Bot。
  • 注意 OAuth 权限范围和消息推送频率,避免被标记为垃圾信息。

SKILL.md

name
mail-agent
version
0.2.0
description
Set up AI-powered Gmail monitoring in OpenClaw. Watches inbox via Google Pub/Sub and pushes important emails to Telegram. Use when the user wants to install mail-agent, set up email notifications, configure Gmail monitoring, or troubleshoot why email alerts aren't arriving.
homepage
https://github.com/nanaco666/openclaw-mail-agent
metadata
{"clawdbot":{"emoji":"📬","requires":{"bins":["gog","gcloud"]},"install":[{"id":"gog","kind":"brew","formula":"steipete/tap/gogcli","bins":["gog"],"label":"Install gog (brew)"},{"id":"gcloud","kind":"brew","formula":"google-cloud-sdk","bins":["gcloud"],"label":"Install gcloud (brew)"}]}}

Sets up mail-agent — an AI Gmail monitor that runs inside OpenClaw and delivers important emails to your Telegram.

When invoked, walk the user through every step below in order. Check each prerequisite before proceeding. Do not skip steps.


Step 1 — Check gog

gog auth list

If no accounts are listed, stop and tell the user to set up gog first:

gog auth credentials /path/to/client_secret.json
gog auth add you@gmail.com --services gmail

Note which Gmail account is being watched (GOG_ACCOUNT or the default).


Step 2 — Check Google Cloud

gcloud auth application-default print-access-token 2>&1 | head -1

If this fails (not logged in):

gcloud auth application-default login

Check if a suitable GCP project exists:

gcloud projects list

If no project exists, create one:

gcloud projects create mail-agent-YOUR_NAME --name "Mail Agent"
gcloud config set project mail-agent-YOUR_NAME

If a project exists, set it:

gcloud config set project YOUR_PROJECT_ID

Note the project ID — needed for plugin config.


Step 3 — Enable APIs

gcloud services enable gmail.googleapis.com pubsub.googleapis.com

Step 4 — Create Pub/Sub topic and subscription

gcloud pubsub topics create mail-agent-inbox
gcloud pubsub subscriptions create mail-agent-inbox-sub --topic=mail-agent-inbox

Grant Gmail permission to publish to the topic:

gcloud pubsub topics add-iam-policy-binding mail-agent-inbox \
  --member="serviceAccount:gmail-api-push@system.gserviceaccount.com" \
  --role="roles/pubsub.publisher"

Step 5 — Install the plugin

openclaw plugins install https://github.com/nanaco666/openclaw-mail-agent/archive/refs/tags/v0.2.1.tar.gz

Step 6 — Configure

Set required values (replace placeholders):

openclaw plugins config mail-agent --set chatId=YOUR_TELEGRAM_CHAT_ID
openclaw plugins config mail-agent --set gcpProject=YOUR_GCP_PROJECT_ID
openclaw plugins config mail-agent --set pubsubSubscription=mail-agent-inbox-sub

Set LLM for email classification (recommended — skip to use pass-through):

openclaw plugins config mail-agent --set llmApiKey=sk-...
openclaw plugins config mail-agent --set llmModel=gpt-4o-mini

To find your Telegram chat ID: message @userinfobot on Telegram.


Step 7 — Restart OpenClaw

openclaw gateway restart

Wait a few seconds, then check logs:

openclaw gateway logs | grep mail-agent

Expected output:

mail-agent: watch registered, historyId=...
mail-agent: watching inbox

If you see watch registration failed, re-check Step 3 and Step 4.


Step 8 — Test

Send a test email to the watched Gmail account with urgent content, e.g.:

Subject: Urgent: server is down Body: Production database crashed, users can't log in.

Wait up to 60 seconds. A notification should arrive in Telegram.

If nothing arrives after 2 minutes:

openclaw gateway logs | grep mail-agent

Common issues:

  • telegram runtime not available → restart OpenClaw gateway
  • watch registration failed → APIs not enabled or wrong project
  • subscription error → subscription name mismatch, check Step 4
  • No logs at all → plugin not loaded, check openclaw plugins list

Reconfigure / update settings

openclaw plugins config mail-agent --set KEY=VALUE
openclaw gateway restart

Uninstall

openclaw plugins uninstall mail-agent
openclaw gateway restart

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.86%
按下载量换算1,437

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills