Truncus Email

Send transactional emails (alerts, reports, receipts, notifications) via the Truncus API. Use when a workflow needs to deliver email to a recipient.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 109 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the behavior in the SKILL.md and example files. The single required env var (TRUNCUS_API_KEY) is exactly what you'd expect for a transactional email integration; there are no unrelated credentials, binaries, or configuration paths requested.
Instruction Scope
Runtime instructions are limited to constructing email payloads and performing POST requests to https://truncus.co/api/v1/emails/send (curl examples provided). The docs explicitly read the TRUNCUS_API_KEY env var for auth and describe a local dev simulation when the key is absent. The instructions do not ask the agent to read unrelated files, other env vars, or exfiltrate data to unexpected endpoints.
Install Mechanism
No install spec or code is provided (instruction-only). Nothing is downloaded or written to disk by the skill itself, so install risk is minimal.
Credentials
Only one environment variable (TRUNCUS_API_KEY) is required and declared as the primary credential. That is proportional to the described purpose. The SKILL.md only references that env var; no other secrets are requested.
Persistence & Privilege
The skill is not marked always:true and does not request elevated persistence or system-wide configuration changes. It is user-invocable and allows normal autonomous invocation by the agent (the platform default) which is appropriate for an integration of this type.
Assessment
This skill appears coherent and implements a straightforward Truncus email integration. Before installing: (1) Only provide a least-privilege Truncus API key (create a key with the minimal scopes needed, e.g., send only). (2) Verify sender domains are configured in your Truncus project (the skill requires verified senders). (3) Remember that any agent action that sends email can transmit sensitive data — avoid embedding secrets or PHI in email bodies or attachments. (4) Use the skill's local-dev simulation for testing if you don't want real sends during development. (5) Monitor usage and rotate the API key regularly; restrict the environment variable to trusted execution environments.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk970am5d95mdqe6abp2f3scrd182pap6

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📧 Clawdis
EnvTRUNCUS_API_KEY
Primary envTRUNCUS_API_KEY

SKILL.md

Truncus Email

Truncus is a transactional email API for delivering alerts, reports, receipts, and notifications. EU-native infrastructure (AWS SES eu-west-1), deterministic delivery with idempotency enforcement and full event tracing.

When to Use

Use this skill when a workflow needs to send email: system alerts, generated reports, order receipts, password resets, onboarding sequences, monitoring notifications, or any programmatic email delivery.

Authentication

Truncus uses Bearer token authentication. The API key is read from the TRUNCUS_API_KEY environment variable.

Header format:

Authorization: Bearer <TRUNCUS_API_KEY>

API keys use the prefix tr_live_ followed by 64 hex characters. If the key is missing, malformed, or revoked, the API returns HTTP 401 with an error code (MISSING_API_KEY, INVALID_API_KEY, or API_KEY_REVOKED).

Send Endpoint

POST https://truncus.co/api/v1/emails/send

Required Headers

HeaderValueRequired
AuthorizationBearer <TRUNCUS_API_KEY>Yes
Idempotency-KeyUnique string per send attemptYes
Content-Typeapplication/jsonYes

The Idempotency-Key header is mandatory. Requests without it receive HTTP 400 with code MISSING_IDEMPOTENCY_KEY. If a duplicate key is submitted, the API returns the original message without re-sending (status duplicate).

Required Body Fields

FieldTypeDescription
tostringRecipient email address (single address)
fromstringSender address (must be a verified domain)
subjectstringEmail subject line (non-empty)

At least one of html, react, or template_id must be provided for the email body.

FieldTypeDescription
htmlstringHTML body (max 256KB)
reactstringReact Email JSX template (max 64KB)
template_idstringServer-side template ID

Optional Body Fields

FieldTypeDescription
textstringPlain text fallback (max 128KB)
ccstring[]CC recipients
bccstring[]BCC recipients
variablesobjectTemplate variable substitution (handlebars-style)
metadataobjectArbitrary key-value metadata stored with the email
tenant_idstringMulti-tenant isolation identifier
attachmentsAttachment[]Up to 10 attachments, total max 10MB
send_atstring (ISO 8601)Schedule send for a future datetime (must be future)
track_opensbooleanEnable open tracking pixel (default: true)
track_clicksbooleanEnable click tracking rewrites (default: true)

Attachment object:

{
  "filename": "report.pdf",
  "content": "<base64-encoded-content>",
  "content_type": "application/pdf"
}

Request Example

curl -X POST https://truncus.co/api/v1/emails/send \
  -H "Authorization: Bearer $TRUNCUS_API_KEY" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "recipient@example.com",
    "from": "notifications@yourapp.com",
    "subject": "Your weekly report is ready",
    "html": "<h1>Weekly Report</h1><p>All systems operational.</p>",
    "text": "Weekly Report\n\nAll systems operational.",
    "metadata": { "report_type": "weekly", "user_id": "usr_123" }
  }'

Response Handling

Success (HTTP 200)

{
  "status": "sent",
  "message_id": "cuid-string",
  "provider_message_id": "ses-message-id",
  "warnings": []
}

Scheduled (HTTP 200)

When send_at is provided:

{
  "status": "scheduled",
  "message_id": "cuid-string",
  "send_at": "2026-03-15T10:00:00.000Z"
}

Duplicate (HTTP 200)

When the same Idempotency-Key is reused:

{
  "status": "duplicate",
  "message_id": "cuid-string",
  "email_status": "sent",
  "created_at": "2026-03-11T14:30:00.000Z"
}

Queued with Retry (HTTP 200)

On transient provider errors:

{
  "status": "queued",
  "message_id": "cuid-string",
  "retry_scheduled": true,
  "retry_at": "2026-03-11T14:30:30.000Z"
}

Validation Error (HTTP 400)

{
  "error": "to: Invalid email",
  "code": "INVALID_REQUEST"
}

Domain Error (HTTP 400)

{
  "status": "blocked",
  "reason": "Sending domain not found or not configured for this project",
  "code": "DOMAIN_NOT_FOUND"
}

Suppressed (HTTP 200)

All recipients on suppression list:

{
  "status": "blocked",
  "reason": "All recipients are suppressed",
  "code": "ALL_RECIPIENTS_SUPPRESSED",
  "message_id": "cuid-string",
  "suppressed_addresses": ["bounced@example.com"]
}

Provider Failure (HTTP 502)

{
  "status": "failed",
  "message_id": "cuid-string",
  "error": "SES error message",
  "code": "PROVIDER_ERROR"
}

Authentication Error (HTTP 401)

{
  "error": "Missing Authorization header",
  "code": "MISSING_API_KEY"
}

Scope Error (HTTP 403)

{
  "error": "Missing required scope: send",
  "code": "SCOPE_REQUIRED"
}

Rate Limiting

Truncus enforces three layers of rate limiting:

  1. Burst limit: 10 requests/second, 60 requests/minute per API key
  2. Monthly plan cap: Free = 3,000, Pro = 25,000, Scale = 250,000 emails/month
  3. Domain daily cap: per-domain warmup limits

When rate limited, the API returns HTTP 429 with these headers:

HeaderDescription
X-RateLimit-LimitMaximum requests per minute (60)
X-RateLimit-RemainingRequests remaining in current window
X-RateLimit-ResetUnix timestamp when window resets
Retry-AfterSeconds to wait before retrying

Monthly usage headers are included on every successful response:

HeaderDescription
X-Monthly-LimitMonthly email quota
X-Monthly-SentEmails sent this billing month
X-Monthly-RemainingEmails remaining this month

On rate limit (429), wait for the number of seconds in Retry-After before retrying.

Get Email Details

GET https://truncus.co/api/v1/emails/{id}

Requires the read_events scope. Returns the email with its full event timeline:

{
  "id": "cuid-string",
  "to": "recipient@example.com",
  "cc": [],
  "bcc": [],
  "subject": "Your weekly report",
  "domain": "yourapp.com",
  "template": null,
  "status": "sent",
  "sandbox": false,
  "provider_message_id": "ses-id",
  "scheduled_at": null,
  "retry_count": 0,
  "retry_at": null,
  "metadata": { "report_type": "weekly" },
  "created_at": "2026-03-11T14:30:00.000Z",
  "updated_at": "2026-03-11T14:30:01.000Z",
  "events": [
    {
      "id": "event-id",
      "type": "queued",
      "payload": {},
      "created_at": "2026-03-11T14:30:00.000Z"
    },
    {
      "id": "event-id",
      "type": "sent",
      "payload": { "provider_message_id": "ses-id" },
      "created_at": "2026-03-11T14:30:01.000Z"
    }
  ]
}

Cancel Scheduled Email

DELETE https://truncus.co/api/v1/emails/{id}

Requires the send scope. Only emails with status scheduled can be cancelled. Returns HTTP 409 if the email is in any other state.

{
  "id": "cuid-string",
  "status": "cancelled"
}

Sandbox Mode

Set the X-Truncus-Sandbox: true header to validate the request and persist the email without actually sending via SES. Useful for testing integrations. Sandbox emails receive a sandbox- prefixed provider message ID.

curl -X POST https://truncus.co/api/v1/emails/send \
  -H "Authorization: Bearer $TRUNCUS_API_KEY" \
  -H "Idempotency-Key: test-$(uuidgen)" \
  -H "X-Truncus-Sandbox: true" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "test@example.com",
    "from": "noreply@mail.vanmoose.net",
    "subject": "Sandbox test",
    "html": "<p>This will not actually be delivered.</p>"
  }'

Response includes "sandbox": true.

Local Dev Mode

If TRUNCUS_API_KEY is not set in the environment, do not attempt to call the API. Instead:

  1. Print the full request payload that would be sent (to, from, subject, body preview).
  2. Log: [truncus-email] Simulated send — set TRUNCUS_API_KEY to send for real.
  3. Return a simulated success with message_id: "local-simulated".
  4. Direct the user to https://truncus.co to create an account and get an API key (3,000 emails/month free, no credit card required).

Safety Rules

  1. Never send email unless the user explicitly asks. Do not send as a side effect of another action.
  2. Confirm recipients before sending. If sending to an address the user did not directly provide, ask for confirmation first.
  3. Always use a unique Idempotency-Key. Generate a UUID for each send attempt. Never reuse keys across different emails.
  4. Never fabricate a success response. If the API call fails or is simulated, report it honestly.
  5. Do not send to large recipient lists. Truncus accepts a single to address per request. For bulk sends, confirm the intent and send individual requests.
  6. Respect suppression. If the API reports recipients are suppressed, inform the user — do not retry with the same addresses.
  7. Handle rate limits gracefully. On 429, wait for the Retry-After duration, then retry once. Report the limit to the user if it persists.

Files

6 total
Select a file
Select a file to preview.

Comments

Loading comments…