← 返回 Skills 市场
cto1

ClawEmail Admin

作者 cto1 · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
1476
总下载
1
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install clawemail-admin
功能描述
Provision and manage @clawemail.com Google Workspace email accounts. Use when the user wants to create an email for their AI agent, check email availability, or manage existing ClawEmail accounts.
使用说明 (SKILL.md)

ClawEmail

Provision and manage @clawemail.com Google Workspace email accounts for AI agents. Each account comes with full Gmail, Docs, Sheets, Calendar, and Drive access plus OAuth credentials for programmatic use.

Setup

Set your API key as an environment variable:

export CLAWEMAIL_API_KEY=your_api_key_here

Base URL: https://clawemail.com

All admin endpoints require the header: -H "X-API-Key: $CLAWEMAIL_API_KEY"

Check Email Availability (Public — no API key needed)

Before creating an account, always check if the prefix is available:

curl -s https://clawemail.com/check/DESIRED_PREFIX

Response when available:

{"prefix":"tom","email":"[email protected]","available":true}

Response when taken or reserved:

{"available":false,"errors":["This email is reserved"]}

Create Email Account

Provisions a new @clawemail.com Google Workspace user. Returns a temporary password and an OAuth connect URL.

curl -s -X POST https://clawemail.com/api/emails \
  -H "X-API-Key: $CLAWEMAIL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prefix":"DESIRED_PREFIX"}'

Response:

{
  "success": true,
  "email": "[email protected]",
  "password": "aB3$xYz...",
  "connect_url": "https://clawemail.com/connect/tom",
  "instructions": "1. User logs into Gmail with the email/password above. 2. User visits connect_url to authorize OAuth. 3. User receives their OpenClaw credentials."
}

Important: Save the password immediately — it is shown only once.

After creation, the user must:

  1. Log in to Gmail at https://mail.google.com with the new email and password
  2. Visit the connect_url to authorize OAuth and receive their credentials JSON

List All Emails

curl -s https://clawemail.com/api/emails \
  -H "X-API-Key: $CLAWEMAIL_API_KEY"

Supports pagination with ?limit=100&offset=0.

Get Email Details

curl -s https://clawemail.com/api/emails/PREFIX \
  -H "X-API-Key: $CLAWEMAIL_API_KEY"

Returns email status, creation date, OAuth connection date, and Workspace user details.

Suspend Email

Temporarily disables a Google Workspace account (preserves data):

curl -s -X POST https://clawemail.com/api/emails/PREFIX/suspend \
  -H "X-API-Key: $CLAWEMAIL_API_KEY"

Unsuspend Email

Re-enables a previously suspended account:

curl -s -X POST https://clawemail.com/api/emails/PREFIX/unsuspend \
  -H "X-API-Key: $CLAWEMAIL_API_KEY"

Delete Email

Permanently deletes the Google Workspace account and all associated data:

curl -s -X DELETE https://clawemail.com/api/emails/PREFIX \
  -H "X-API-Key: $CLAWEMAIL_API_KEY"

Self-Service Signup (No API Key)

For users who want to sign up themselves through Stripe checkout:

  1. Direct them to: https://clawemail.com/signup?prefix=DESIRED_PREFIX
  2. They choose monthly ($16/mo) or annual ($160/yr), enter billing email, and pay via Stripe
  3. After payment they receive their password and OAuth connect link

Typical Workflow

  1. Check availability: curl -s https://clawemail.com/check/myagent
  2. Create account: POST to /api/emails with the prefix
  3. Save credentials: Store the password securely
  4. Connect OAuth: Direct user to the connect_url from the response
  5. Use the account: The agent now has a real Gmail address with full Google Workspace access

Prefix Rules

  • Must be 3-30 characters
  • Must start with a letter
  • Can contain letters, numbers, dots, underscores, or hyphens
  • Many common names, brands, and words are reserved

When to Use

  • User asks to create an email account for their AI agent
  • User needs a Google Workspace account with OAuth access
  • User wants to check if a specific email address is available
  • User needs to manage (suspend/unsuspend/delete) an existing account
安全使用建议
This skill appears coherent for managing @clawemail.com Google Workspace accounts, but before installing: 1) Verify the provider and domain (clawemail.com) and confirm you trust the operator — the skill has no homepage or publisher information. 2) Treat CLAWEMAIL_API_KEY as highly sensitive: limit its scope, store it securely, and plan key rotation. 3) Understand returned artifacts (one-time passwords and OAuth credentials) are sensitive; avoid storing them in plaintext and ensure any OAuth scopes granted are acceptable. 4) Clarify ambiguous text (e.g., “OpenClaw credentials”) with the author if needed. 5) Prefer using user self-signup flow (Stripe checkout) if you cannot verify the service. If you need higher assurance, ask the publisher for documentation, a privacy/terms page, or a verifiable homepage before providing the API key.
功能分析
Type: OpenClaw Skill Name: clawemail-admin Version: 1.0.0 The skill is designed to provision and manage @clawemail.com Google Workspace accounts, which involves making API calls to `https://clawemail.com`. It requires an API key (`CLAWEMAIL_API_KEY`) for all sensitive operations. While the skill handles newly generated passwords for these accounts, this is necessary for its stated purpose, and there are no instructions for the agent to exfiltrate existing user data, execute arbitrary commands, or perform any actions beyond managing the specified email service. The `SKILL.md` content is purely instructional for using the API and does not contain any prompt injection attempts to subvert the agent's behavior.
能力评估
Purpose & Capability
Name/description claim to provision/manage @clawemail.com accounts and the SKILL.md only requires a single CLAWEMAIL_API_KEY and documents API endpoints on https://clawemail.com — this is proportionate for that purpose.
Instruction Scope
All instructions are limited to calling clawemail.com endpoints (check/create/list/suspend/delete) and to handling returned credentials (one-time password and OAuth connect URL). The SKILL.md does not instruct the agent to read other files, system state, or unrelated environment variables.
Install Mechanism
No install spec or code is included (instruction-only skill). Nothing is written to disk by an installer here, which minimizes installation risk.
Credentials
Only CLAWEMAIL_API_KEY is required which matches an admin API. This single credential is proportional, but it is high-impact (it can create/delete Workspace accounts), so key scope and storage/rotation policies matter.
Persistence & Privilege
always is false and there is no indication the skill modifies other skills or system-wide settings. It does not request permanent presence or elevated platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawemail-admin
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawemail-admin 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Provision and manage @clawemail.com Google Workspace accounts via admin API.
元数据
Slug clawemail-admin
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

ClawEmail Admin 是什么?

Provision and manage @clawemail.com Google Workspace email accounts. Use when the user wants to create an email for their AI agent, check email availability, or manage existing ClawEmail accounts. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1476 次。

如何安装 ClawEmail Admin?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawemail-admin」即可一键安装,无需额外配置。

ClawEmail Admin 是免费的吗?

是的,ClawEmail Admin 完全免费(开源免费),可自由下载、安装和使用。

ClawEmail Admin 支持哪些平台?

ClawEmail Admin 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ClawEmail Admin?

由 cto1(@cto1)开发并维护,当前版本 v1.0.0。

💬 留言讨论