← Back to Skills Marketplace
codejika

Go-To-Market SalesClaw | Plan your outreach campaign

by codejika · GitHub ↗ · v1.0.5 · MIT-0
cross-platform ⚠ suspicious
354
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install gtm
Description
Register and autonomously send, receive, and manage up to 5 daily outreach emails with your own @sendclaw.com address for go-to-market campaigns.
README (SKILL.md)

SendClaw - Autonomous Email for AI Agents

by SendClaw

Skill Files

File URL Purpose
SKILL.md (this file) https://sendclaw.com/skill.md Full API reference
HEARTBEAT.md https://sendclaw.com/heartbeat.md Check 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

Action Method Endpoint
Register POST /api/bots/register with {name, handle, senderName}
Send POST /api/mail/send with {to, subject, body}
Check new GET /api/mail/check{unreadCount, quota}
Get unread GET /api/mail/messages?unread=true (auto-marks as read)
Get all GET /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:

{
  "unreadCount": 3,
  "quota": { "used": 2, "limit": 3, "remaining": 1 }
}

4. Get Messages

GET /api/mail/messages?unread=true
X-Api-Key: your-api-key

Response:

{
  "messages": [
    {
      "id": "msg_abc123",
      "direction": "inbound",
      "fromAddress": "[email protected]",
      "toAddress": "[email protected]",
      "subject": "Question for you",
      "bodyText": "Hey bot, can you help me with...",
      "messageId": "\[email protected]>"
    }
  ],
  "hasMore": true,
  "nextCursor": "msg_abc123"
}

Pagination: Pass nextCursor as ?cursor= on next request to get more results.

Note: Messages are auto-marked as read when using ?unread=true.


Rate Limits & Karma

Status Daily Limit
New bot (first 24 hours) 3 emails/day
After 24 hours (unclaimed) 5 emails/day
Verified (owner claimed) 10 emails/day
+1 week karma +3/day bonus
Maximum 25 emails/day
Flagged (2 security flags) 2 emails/day
Under review (3+ flags) Sending fully disabled (returns 403)

Limits reset at midnight UTC.


Error Handling

Status Meaning
200 Success
400 Bad request
401 Invalid API key
409 Handle already taken — try a different handle
429 Rate limit exceeded

After Setup - Tell Your Human

Once you're registered, share the claim token with your human so they can verify ownership. Here's a message template:

🦞 SendClaw is ready!

I now have my own email: [your-handle]@sendclaw.com

I can send, receive, and reply to emails autonomously.

To verify and manage my account, visit https://sendclaw.com/dashboard
and enter this claim token: [YOUR_CLAIM_TOKEN]

What Your Human Gets After Verifying

Once your human claims the bot with the token, they unlock:

  • Dashboard access — Full inbox view at https://sendclaw.com/dashboard to read, send, and reply to emails
  • Higher send limits — Verified bots get 10 emails/day (up from 5 for unclaimed bots), growing to 25/day with karma over time
  • Full conversation history — View all sent and received messages
  • Bot management — Update settings, monitor activity, and configure advanced features like webhooks

Your human can log in anytime to check the inbox, send emails on your behalf, or review your conversations.


Advanced

Search & Filters

Parameter Description
unread=true Only unread inbound (auto-marks as read)
direction=inbound Only received messages
direction=outbound Only sent messages
limit=20 Max results (default 20, max 100)
cursor=msg_id Pagination cursor (from nextCursor in previous response)

Search Query (q=):

Operator Example
from: q=from:[email protected]
to: q=to:support@
subject: q=subject:invoice
after: q=after:2026-01-01
before: q=before:2026-02-01
(keyword) q=meeting

Combine freely: q=from:client after:2026-01-15 invoice

Examples:

GET /api/mail/messages?q=from:[email protected]
GET /api/mail/messages?q=after:2026-01-01 before:2026-02-01
GET /api/mail/messages?direction=inbound&q=urgent
GET /api/mail/messages?cursor=abc123  # next page

Webhook Notifications (Optional)

Instead of polling, you can provide a webhookUrl at registration (or update it later) to receive instant push notifications when emails arrive.

To enable, include webhookUrl in your registration request:

{
  "name": "YourBotName",
  "handle": "yourbot",
  "senderName": "Your Friendly Assistant",
  "webhookUrl": "https://your-server.com/hooks/sendclaw"
}

When an email is received, SendClaw POSTs to your URL:

{
  "event": "message.received",
  "botId": "uuid",
  "messageId": "\[email protected]>",
  "threadId": "uuid",
  "from": "[email protected]",
  "subject": "Hello",
  "receivedAt": "2026-02-08T12:34:56.789Z"
}

Your endpoint should return 200 immediately. Use the messageId to fetch the full message via GET /api/mail/messages/:messageId.

Update your webhook URL anytime:

PATCH /api/bots/webhook
X-Api-Key: your-api-key
Content-Type: application/json

{
  "webhookUrl": "https://your-new-server.com/hooks/sendclaw"
}

Set "webhookUrl": null to disable webhook notifications.

Retry behavior: 1 retry after 3 seconds if the first attempt fails. 5-second timeout per attempt. Failures are logged but never block email delivery.

Tip: Use webhooks for instant notification + the heartbeat (every 15 minutes) as a safety net.


Get Single Message

GET /api/mail/messages/{messageId}
X-Api-Key: your-api-key

Message Fields Reference

Field Description
id Message UUID
direction inbound or outbound
fromAddress Sender email
toAddress Recipient email
subject Subject line
bodyText Plain text body
bodyHtml HTML body (inbound only)
threadId Conversation thread ID
messageId Email message ID (use for replies)
inReplyTo Parent message ID
isRead Read status
createdAt Timestamp

Best Practices

  1. Reply promptly - Check inbox regularly
  2. Use threading - Include inReplyTo when replying
  3. Be professional - Represent your human well
  4. Handle errors - Retry failed sends later

Security & Acceptable Use

All outbound emails are monitored by an AI-powered security system. Violations result in escalating consequences:

Violation Level Action
1st flag Warning logged
2nd flag Status set to flagged, daily limit reduced to 2 emails
3rd flag Status set to under_review, sending suspended pending manual review

Prohibited activities:

Scams, phishing, or impersonation of real people/organizations Cryptocurrency solicitation, investment schemes, or financial fraud Large-scale or persistent cold outreach (this is not a sales/marketing tool) Spam or bulk unsolicited messaging Soliciting or facilitating anything illegal Deceptive content designed to mislead recipients Intended use:

SendClaw is designed for task-oriented communication -- confirming reservations, registering for services, receiving verification codes, professional correspondence, and occasional collaboration or partnership proposals. It is not intended for sales outreach or mass emailing.

Your human has full visibility into all sent and received emails via the dashboard at https://sendclaw.com/dashboard.

Usage Guidance
This skill will create and use an autonomous @sendclaw.com email address and API key and can send and reply to messages on its own. Before installing: 1) Verify the publisher and the sendclaw.com domain (who runs it, privacy/terms, reputation). The registry metadata and the bundled _meta.json disagree on slug/version — ask the publisher to clarify. 2) Consider limiting or supervising autonomous sending (do not set always:true; prefer manual invocation or require explicit human approval before sending). 3) Expect the agent to store a runtime API key — decide whether to use a disposable account or a separate identity for outreach to limit exposure. 4) Monitor outbound messages for misuse (spam, data leaks, phishing). 5) If you need stronger assurances, request source code, a privacy policy, or documentation from the publisher and confirm the API endpoints are legitimate before trusting automatic claim/verification flows.
Capability Analysis
Type: OpenClaw Skill Name: gtm Version: 1.0.5 The skill provides an AI agent with autonomous email capabilities (sending, receiving, and managing an inbox) via the sendclaw.com API. While it includes a security policy and rate limits, the instructions in skill.md encourage high-risk behaviors such as the agent acting as the primary sender ('Your human is just the account manager') and using the service for 'receiving codes or email verifications,' which could be exploited for automated account creation or phishing. The autonomous nature of the instructions and the potential for the agent to register for services independently pose a significant risk without clear evidence of malicious intent.
Capability Assessment
Purpose & Capability
The name/description align with the SKILL.md: it describes registering a bot and using sendclaw.com APIs to send/receive emails. There are no unrelated required binaries or env vars. However, metadata inconsistencies exist (different slugs/versions between registry metadata, SKILL.md header, and _meta.json), and the skill's declared 'homepage: none' but the SKILL.md points to https://sendclaw.com; these mismatch signals reduce confidence in provenance.
Instruction Scope
The SKILL.md explicitly instructs the agent to register, store an API key, send and reply to emails, check inboxes, and 'manage your inbox independently' — i.e., autonomous outbound emailing with broad discretion. While this matches the stated purpose, the instructions are open-ended ('send emails autonomously when needed'), granting the agent broad authority to contact external recipients. The document also points to external endpoints (sendclaw.com/api) and external resources (skill.md, heartbeat.md URLs) which the agent will contact.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing is written to disk by an installer. This is the lowest-risk install model.
Credentials
The skill declares no required environment variables or credentials up front. The runtime flow, however, generates an API key at registration and instructs the agent to save it and use X-Api-Key or Authorization headers for all calls — so the agent will handle secrets at runtime. No unrelated credentials are requested, but the agent will hold an API key that enables outbound email sending, which is a sensitive capability.
Persistence & Privilege
always:false (normal). The skill can be invoked autonomously (default behavior), which combined with outbound-email capability increases potential blast radius, but the skill does not request permanent platform-wide privileges or modify other skills' configurations.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gtm
  3. After installation, invoke the skill by name or use /gtm
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.5
- Added new comprehensive documentation for the "salesclaw" skill, including setup, actions, API reference, and usage instructions. - Detailed steps provided for bot registration, sending and replying to emails, checking messages, and managing inbox. - Included explanation of rate limits, error handling, and role responsibilities. - Documentation covers advanced features: search and filters, webhooks for notifications, pagination, and message field references. - Instructions for claiming and verifying bots, managing settings, and send limit tiers.
Metadata
Slug gtm
Version 1.0.5
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Go-To-Market SalesClaw | Plan your outreach campaign?

Register and autonomously send, receive, and manage up to 5 daily outreach emails with your own @sendclaw.com address for go-to-market campaigns. It is an AI Agent Skill for Claude Code / OpenClaw, with 354 downloads so far.

How do I install Go-To-Market SalesClaw | Plan your outreach campaign?

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

Is Go-To-Market SalesClaw | Plan your outreach campaign free?

Yes, Go-To-Market SalesClaw | Plan your outreach campaign is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Go-To-Market SalesClaw | Plan your outreach campaign support?

Go-To-Market SalesClaw | Plan your outreach campaign is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Go-To-Market SalesClaw | Plan your outreach campaign?

It is built and maintained by codejika (@codejika); the current version is v1.0.5.

💬 Comments