← Back to Skills Marketplace
cto1

ClawEmail Admin

by cto1 · GitHub ↗ · v1.0.1
cross-platform ✓ Security Clean
1529
Downloads
1
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install claw-admin
Description
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.
README (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
Usage Guidance
This skill is internally coherent, but it talks to an external provider (https://clawemail.com) whose source/homepage is not included in the registry metadata. Before installing or exporting your CLAWEMAIL_API_KEY: 1) Verify the ClawEmail service and its owner (privacy, terms, support contact). 2) Treat CLAWEMAIL_API_KEY like a high-privilege credential — only store it in a trusted secrets manager, and avoid placing it in shared shells or logs. 3) Expect the skill (and anyone with the key) can create, suspend, or delete Workspace accounts; consider using a scoped/limited API key and rotate/revoke it when not needed. 4) The workflow returns temporary passwords and OAuth credentials — store/revoke those securely and audit created accounts. 5) If you cannot verify the provider, prefer the documented self-service signup flow (Stripe checkout) or manually create accounts rather than giving the API key to an agent. If you want higher confidence about this skill, ask the publisher for a homepage, documentation, or proof of ownership and a privacy/security policy.
Capability Analysis
Type: OpenClaw Skill Name: claw-admin Version: 1.0.1 The skill bundle provides an API for managing Google Workspace email accounts on `clawemail.com`. All API calls are standard `curl` commands targeting `https://clawemail.com` and require an API key (`CLAWEMAIL_API_KEY`) for administrative actions, as specified in `SKILL.md`. There is no evidence of data exfiltration, malicious execution (e.g., `curl|bash`), persistence mechanisms, obfuscation, or prompt injection attempts against the agent to perform actions beyond the stated purpose. The instructions are clear and align with the described functionality of an email administration tool.
Capability Assessment
Purpose & Capability
The skill requests a single CLAWEMAIL_API_KEY which is exactly the credential required to call the documented ClawEmail admin endpoints (create/list/suspend/delete). There are no unrelated env vars, binaries, or config paths requested.
Instruction Scope
SKILL.md is instruction-only and confines actions to HTTPS calls to https://clawemail.com and to user-driven OAuth flows. However the instructions explicitly tell operators to capture and store temporary passwords and to exchange OAuth credentials — these are sensitive artifacts the agent will handle if used. The instructions do not ask the agent to read system files or other unrelated secrets.
Install Mechanism
No install spec or code is included (instruction-only), so nothing is written to disk or downloaded during install — lowest-risk install mechanism.
Credentials
Only one environment variable (CLAWEMAIL_API_KEY) is required and that is the expected admin credential for the documented REST endpoints. This is proportionate to the described functionality. Be aware this key grants account provisioning/deletion privileges on the provider side.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system-wide configuration. It does not attempt to modify other skills or agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install claw-admin
  3. After installation, invoke the skill by name or use /claw-admin
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Rename to ClawEmail Admin
v1.0.0
Initial release — provision and manage @clawemail.com Google Workspace accounts via admin API
Metadata
Slug claw-admin
Version 1.0.1
License
All-time Installs 3
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 1529 downloads so far.

How do I install ClawEmail Admin?

Run "/install claw-admin" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is ClawEmail Admin free?

Yes, ClawEmail Admin is completely free (open-source). You can download, install and use it at no cost.

Which platforms does ClawEmail Admin support?

ClawEmail Admin is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ClawEmail Admin?

It is built and maintained by cto1 (@cto1); the current version is v1.0.1.

💬 Comments