Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. --- name: agentmail description: Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. version: 1.1.0 --- AgentMail Skill **Purpose**: Programmatic email for AI agents via AgentMail API — create inboxes, send/receive messages, manage thr Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
agentmail is best for send, be, email workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. --- name: agentmail description: Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. version: 1.1.0 --- AgentMail Skill **Purpose**: Programmatic email for AI agents via AgentMail API — create inboxes, send/receive messages, manage thr
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Kesslerio
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/kesslerio/agentmail-openclaw-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Kesslerio
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# List inboxes ./scripts/agentmail-cli inboxes list # Create inbox ./scripts/agentmail-cli inboxes create [--username NAME] [--domain DOMAIN] # Send email ./scripts/agentmail-cli send --inbox-id ID --to "email@example.com" --subject "Hello" --text "Body" # List messages ./scripts/agentmail-cli messages list --inbox-id ID # Get message ./scripts/agentmail-cli messages get --inbox-id ID --message-id MSG_ID # Reply to message ./scripts/agentmail-cli reply --inbox-id ID --message-id MSG_ID --text "Reply body" # List threads ./scripts/agentmail-cli threads list --inbox-id ID # Create webhook ./scripts/agentmail-cli webhooks create --url "https://..." --events "message.received" # List webhooks ./scripts/agentmail-cli webhooks list
python
from agentmail import AgentMail
client = AgentMail(api_key="YOUR_API_KEY")
# Create inbox
inbox = client.inboxes.create()
print(f"Created: {inbox.address}")
# Send message
response = client.inboxes.messages.send(
inbox_id=inbox.id,
to=["recipient@example.com"],
subject="Hello from Agent",
text="This is the message body",
html="<p>This is the <b>HTML</b> body</p>" # optional
)
# List messages in inbox
messages = client.inboxes.messages.list(inbox_id=inbox.id)
for msg in messages:
print(f"{msg.from_} -> {msg.subject}")
# Reply to a message
client.inboxes.messages.reply(
inbox_id=inbox.id,
message_id=message_id,
text="Thanks for your email!"
)
# Forward a message
client.inboxes.messages.forward(
inbox_id=inbox.id,
message_id=message_id,
to=["another@example.com"]
)python
# Create webhook for new messages
webhook = client.webhooks.create(
url="https://your-server.com/webhook",
event_types=["message.received"]
)
# Webhook payload structure:
# {
# "event": "message.received",
# "inbox_id": "...",
# "message_id": "...",
# "thread_id": "...",
# "from": "sender@example.com",
# "subject": "...",
# "timestamp": "..."
# }python
# Create pod
pod = client.pods.create(name="my-project")
# Create inbox in pod
inbox = client.pods.inboxes.create(
pod_id=pod.id,
username="support",
domain="agentmail.to" # or your verified domain
)
# List all inboxes in pod
inboxes = client.pods.inboxes.list(pod_id=pod.id)python
# Register domain
domain = client.domains.create(
domain="mail.yourdomain.com",
feedback_enabled=True
)
# Get DNS records to configure
zone_file = client.domains.get_zone_file(domain_id=domain.id)
# Verify domain after DNS setup
client.domains.verify(domain_id=domain.id)python
# Create draft
draft = client.inboxes.drafts.create(
inbox_id=inbox_id,
to=["recipient@example.com"],
subject="Draft Subject",
text="Draft body..."
)
# Update draft
client.inboxes.drafts.update(
inbox_id=inbox_id,
draft_id=draft.id,
text="Updated body..."
)
# Send draft
client.inboxes.drafts.send(
inbox_id=inbox_id,
draft_id=draft.id
)Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. --- name: agentmail description: Programmatic email for AI agents via AgentMail API. Create inboxes, send/receive messages, manage threads, webhooks, pods, and custom domains. Use when you need agent email identity, email-based workflows, or real-time email processing. version: 1.1.0 --- AgentMail Skill **Purpose**: Programmatic email for AI agents via AgentMail API — create inboxes, send/receive messages, manage thr
Purpose: Programmatic email for AI agents via AgentMail API — create inboxes, send/receive messages, manage threads, webhooks, and domains.
Trigger phrases: "send email", "create inbox", "check mail", "agentmail", "email agent", "read messages", "email webhook"
Requires AGENTMAIL_API_KEY environment variable. Get your key from https://agentmail.to
random123@agentmail.to) that can send/receiveUse the agentmail-cli script for common operations:
# List inboxes
./scripts/agentmail-cli inboxes list
# Create inbox
./scripts/agentmail-cli inboxes create [--username NAME] [--domain DOMAIN]
# Send email
./scripts/agentmail-cli send --inbox-id ID --to "email@example.com" --subject "Hello" --text "Body"
# List messages
./scripts/agentmail-cli messages list --inbox-id ID
# Get message
./scripts/agentmail-cli messages get --inbox-id ID --message-id MSG_ID
# Reply to message
./scripts/agentmail-cli reply --inbox-id ID --message-id MSG_ID --text "Reply body"
# List threads
./scripts/agentmail-cli threads list --inbox-id ID
# Create webhook
./scripts/agentmail-cli webhooks create --url "https://..." --events "message.received"
# List webhooks
./scripts/agentmail-cli webhooks list
from agentmail import AgentMail
client = AgentMail(api_key="YOUR_API_KEY")
# Create inbox
inbox = client.inboxes.create()
print(f"Created: {inbox.address}")
# Send message
response = client.inboxes.messages.send(
inbox_id=inbox.id,
to=["recipient@example.com"],
subject="Hello from Agent",
text="This is the message body",
html="<p>This is the <b>HTML</b> body</p>" # optional
)
# List messages in inbox
messages = client.inboxes.messages.list(inbox_id=inbox.id)
for msg in messages:
print(f"{msg.from_} -> {msg.subject}")
# Reply to a message
client.inboxes.messages.reply(
inbox_id=inbox.id,
message_id=message_id,
text="Thanks for your email!"
)
# Forward a message
client.inboxes.messages.forward(
inbox_id=inbox.id,
message_id=message_id,
to=["another@example.com"]
)
# Create webhook for new messages
webhook = client.webhooks.create(
url="https://your-server.com/webhook",
event_types=["message.received"]
)
# Webhook payload structure:
# {
# "event": "message.received",
# "inbox_id": "...",
# "message_id": "...",
# "thread_id": "...",
# "from": "sender@example.com",
# "subject": "...",
# "timestamp": "..."
# }
# Create pod
pod = client.pods.create(name="my-project")
# Create inbox in pod
inbox = client.pods.inboxes.create(
pod_id=pod.id,
username="support",
domain="agentmail.to" # or your verified domain
)
# List all inboxes in pod
inboxes = client.pods.inboxes.list(pod_id=pod.id)
# Register domain
domain = client.domains.create(
domain="mail.yourdomain.com",
feedback_enabled=True
)
# Get DNS records to configure
zone_file = client.domains.get_zone_file(domain_id=domain.id)
# Verify domain after DNS setup
client.domains.verify(domain_id=domain.id)
# Create draft
draft = client.inboxes.drafts.create(
inbox_id=inbox_id,
to=["recipient@example.com"],
subject="Draft Subject",
text="Draft body..."
)
# Update draft
client.inboxes.drafts.update(
inbox_id=inbox_id,
draft_id=draft.id,
text="Updated body..."
)
# Send draft
client.inboxes.drafts.send(
inbox_id=inbox_id,
draft_id=draft.id
)
import base64
# Send with attachment
with open("document.pdf", "rb") as f:
content = base64.b64encode(f.read()).decode()
client.inboxes.messages.send(
inbox_id=inbox_id,
to=["recipient@example.com"],
subject="Document attached",
text="Please see attached.",
attachments=[{
"filename": "document.pdf",
"content_type": "application/pdf",
"content": content
}]
)
# Get attachment from received message
attachment = client.inboxes.messages.get_attachment(
inbox_id=inbox_id,
message_id=message_id,
attachment_id=attachment_id
)
# List messages with label
messages = client.inboxes.messages.list(
inbox_id=inbox_id,
labels=["unread"]
)
# Update message labels
client.inboxes.messages.update(
inbox_id=inbox_id,
message_id=message_id,
add_labels=["processed"],
remove_labels=["unread"]
)
from datetime import datetime, timedelta
# Get inbox metrics
metrics = client.inboxes.metrics.get(
inbox_id=inbox_id,
start_timestamp=datetime.now() - timedelta(days=7),
end_timestamp=datetime.now()
)
import asyncio
from agentmail import AsyncAgentMail
async def main():
client = AsyncAgentMail(api_key="YOUR_API_KEY")
inbox = await client.inboxes.create()
await client.inboxes.messages.send(
inbox_id=inbox.id,
to=["recipient@example.com"],
subject="Async Hello",
text="Sent asynchronously!"
)
asyncio.run(main())
import threading
with client.websockets.connect() as socket:
socket.on("message.received", lambda msg: print(f"New: {msg}"))
listener = threading.Thread(target=socket.start_listening, daemon=True)
listener.start()
# Keep running...
def get_or_create_user_inbox(user_id: str) -> str:
"""Create a dedicated inbox for each user."""
inbox = client.inboxes.create(
username=f"user-{user_id}",
display_name=f"User {user_id}'s Inbox"
)
return inbox.id
import time
def poll_inbox(inbox_id: str, callback, interval: int = 60):
"""Poll inbox for new messages."""
last_check = None
while True:
messages = client.inboxes.messages.list(
inbox_id=inbox_id,
after=last_check,
labels=["unread"]
)
for msg in messages:
callback(msg)
last_check = datetime.now().isoformat()
time.sleep(interval)
def process_message(inbox_id: str, message_id: str):
"""Process message and mark as handled."""
msg = client.inboxes.messages.get(
inbox_id=inbox_id,
message_id=message_id
)
# Do processing...
client.inboxes.messages.update(
inbox_id=inbox_id,
message_id=message_id,
add_labels=["processed"],
remove_labels=["unread"]
)
from agentmail.core.api_error import ApiError
try:
client.inboxes.messages.send(...)
except ApiError as e:
if e.status_code == 404:
print("Inbox not found")
elif e.status_code == 429:
print("Rate limited, retry later")
else:
print(f"Error {e.status_code}: {e.body}")
Use this helper for consistent branding:
AGENT_SIGNATURE = os.environ.get("AGENT_SIGNATURE", """
---
AI Agent
I may make mistakes. Please verify important information.
""")
def send_as_agent(client, inbox_id, to, subject, text, **kwargs):
"""Send email with the agent's signature."""
full_text = f"{text}\n{AGENT_SIGNATURE}"
return client.inboxes.messages.send(
inbox_id=inbox_id,
to=to,
subject=subject,
text=full_text,
**kwargs
)
# Usage
send_as_agent(
client,
inbox_id="your-agent@agentmail.to",
to=["recipient@example.com"],
subject="Hello",
text="Just testing!"
)
⚠️ Risk: Incoming email webhooks expose a prompt injection vector. Anyone can email your agent inbox with malicious instructions like:
Solution: Use an OpenClaw webhook transform to allowlist trusted senders.
~/.openclaw/hooks/email-allowlist.ts:const ALLOWLIST = [
'yourname@example.com', // Your personal email
'trusted@company.com', // Trusted services
];
export default function(payload: any) {
const from = payload.message?.from?.[0]?.email;
if (!from || !ALLOWLIST.includes(from.toLowerCase())) {
console.log(`[email-filter] ❌ Blocked: ${from || 'unknown'}`);
return null; // Drop the webhook
}
console.log(`[email-filter] ✅ Allowed: ${from}`);
return {
action: 'wake',
text: `📬 Email from ${from}:\n\n${payload.message.subject}\n\n${payload.message.text}`,
deliver: true,
channel: 'telegram',
to: 'channel:YOUR_CHANNEL_ID'
};
}
~/.openclaw/openclaw.yaml):hooks:
transformsDir: ~/.openclaw/hooks
mappings:
- id: agentmail
match:
path: /agentmail
transform:
module: email-allowlist.ts
openclaw gateway restartSee references/WEBHOOKS.md for complete webhook setup.
pip install agentmail
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:59:42.358Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "send",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "email",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:send|supported|profile capability:be|supported|profile capability:email|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Kesslerio",
"href": "https://github.com/kesslerio/agentmail-openclaw-skill",
"sourceUrl": "https://github.com/kesslerio/agentmail-openclaw-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:20.241Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:20.241Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/kesslerio-agentmail-openclaw-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to agentmail and adjacent AI workflows.