# Send ClawEmail Admin to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawemail-admin",
    "name": "ClawEmail Admin",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/cto1/clawemail-admin",
    "canonicalUrl": "https://clawhub.ai/cto1/clawemail-admin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawemail-admin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawemail-admin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawemail-admin",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:17:38.146Z",
      "expiresAt": "2026-05-06T10:17:38.146Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawemail-admin",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawemail-admin",
        "contentDisposition": "attachment; filename=\"clawemail-admin-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawemail-admin"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawemail-admin"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawemail-admin",
    "downloadUrl": "https://openagent3.xyz/downloads/clawemail-admin",
    "agentUrl": "https://openagent3.xyz/skills/clawemail-admin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawemail-admin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawemail-admin/agent.md"
  }
}
```
## Documentation

### 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":"tom@clawemail.com","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": "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:

Log in to Gmail at https://mail.google.com with the new email and password
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:

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

### Typical Workflow

Check availability: curl -s https://clawemail.com/check/myagent
Create account: POST to /api/emails with the prefix
Save credentials: Store the password securely
Connect OAuth: Direct user to the connect_url from the response
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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cto1
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T10:17:38.146Z
- Expires at: 2026-05-06T10:17:38.146Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawemail-admin)
- [Send to Agent page](https://openagent3.xyz/skills/clawemail-admin/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawemail-admin/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawemail-admin/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawemail-admin)