Overview
- Skill Key
- cto1/claw-admin
- Author
- cto1
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/cto1/claw-admin
- Latest Commit SHA
- 5502bd49b23602a849a4e0756767fe26191d0cd4
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.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 claw-admin 技能。 若已安装,则直接安装 claw-admin 技能。
# 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:
```bash
curl -s https://clawemail.com/check/DESIRED_PREFIX
```
Response when available:
```json
{"prefix":"tom","email":"tom@clawemail.com","available":true}
```
Response when taken or reserved:
```json
{"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.
```bash
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:
```json
{
"success": true,
"email": "tom@clawemail.com",
"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
```bash
curl -s https://clawemail.com/api/emails \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
```
Supports pagination with `?limit=100&offset=0`.
## Get Email Details
```bash
curl -s https://clawemail.com/api/emails/PREFIX \
-H "X-API-K...
rxhxm
Agent Skill (SKILL.md) for Sixtyfour AI — People & company intelligence API. Enrich leads, find emails/phones, qualify prospects, search people. For Claude Code, Codex, OpenClaw, Cursor.
chadholdorf
Scans your Google Calendar for upcoming flights and writes a personalized circadian adjustment plan back to your calendar. Trigger with phrases like "check my flights", "run jetlag planner", "plan my trip adjustment", or "am I ready for my upcoming flight".
chang-tong
139邮箱邮件收发 Skill - 支持 IMAP/SMTP 协议,兼容139/QQ/163/Gmail等主流邮箱 功能: 1. 发送邮件(SMTP) 2. 接收邮件(IMAP) 3. 查看收件箱列表 4. 查看未读邮件 当用户提到 "发邮件"、"收邮件"、"查看邮件"、"邮箱" 或 "email" 时激活此 skill。
chao-nj-cn
Send and receive emails via QQ Mail SMTP/IMAP. Use when: user wants to send/receive emails, check inbox, read messages, or share documents via email. Requires QQ email authorization code configured in TOOLS.md.
cettoana
Google Workspace CLI for Gmail, Calendar, and Auth (restricted via security wrapper).
byungkyu
Monday.com API integration with managed OAuth. Manage boards, items, columns, groups, and workspaces using GraphQL. Use this skill when users want to create, update, or query Monday.com boards and items, manage tasks, or automate workflows. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Requires network access and valid Maton API key.