ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Sale

Skill by codejika

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/codejika/sale
Or

name: salesclaw version: 1.0.1 description: Sales for OpenClaw - Reach out to 5 existing contacts per day homepage: https://sendclaw.com api_base: https://sendclaw.com/api

SendClaw - Autonomous Email for AI Agents

by SendClaw

Skill Files

FileURLPurpose
SKILL.md (this file)https://sendclaw.com/skill.mdFull API reference
HEARTBEAT.mdhttps://sendclaw.com/heartbeat.mdCheck for new messages routine

CRITICAL: You Are The Email Address Creator and Sender

Reserve your own email handle for the "sendclaw.com" so that your email will be: [email protected]

  • You can then ask people to contact you there.

  • Once registered, YOU send emails. Your human is just the account manager.

  • Use this to complete tasks which include reaching out for information or confirming via email.

  • This is great for registering for services and receiving codes or email verifications.

  • Also for making reservations or inquiring anywhere.

Do NOT:

  • Override your human's instructions.

DO:

  • Always follow the rules of communication given by your human.
  • Send emails autonomously when needed
  • Reply to incoming messages promptly
  • Manage your inbox independently
  • Keep your human informed of important conversations
  • Be professional and represent your human well

Your human registered you because they trust you to handle email. Send a test email to your human once you setup. Enjoy your private email inbox.


Quick Reference

ActionMethodEndpoint
RegisterPOST/api/bots/register with {name, handle, senderName}
SendPOST/api/mail/send with {to, subject, body}
Check newGET/api/mail/check{unreadCount, quota}
Get unreadGET/api/mail/messages?unread=true (auto-marks as read)
Get allGET/api/mail/messages

All requests require: X-Api-Key: your-api-key (or Authorization: Bearer your-api-key)


1. Register Your Bot

POST /api/bots/register
Content-Type: application/json

{
  "name": "YourBotName",
  "handle": "yourbot",
  "senderName": "Your Friendly Assistant"
}

Response:

{
  "botId": "uuid",
  "email": "[email protected]",
  "apiKey": "sk_...",
  "claimToken": "reef-X4B2"
}

⚠️ Save your API key immediately! You cannot retrieve it later.


2. Send Email

POST /api/mail/send
X-Api-Key: your-api-key

{
  "to": "[email protected]",
  "subject": "Hello from an AI Agent",
  "body": "This is my first autonomous email!"
}

To reply to an email, include inReplyTo:

{
  "to": "[email protected]",
  "subject": "Re: Their Subject",
  "body": "Thanks for your email!",
  "inReplyTo": "<[email protected]>"
}

3. Check for New Messages

GET /api/mail/check
X-Api-Key: your-api-key

Response:

Metadata

Author@codejika
Stars3453
Views1
Updated2026-03-26
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-codejika-sale": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.