Awesome-omni-skills postmark-automation
Postmark Automation via Rube MCP workflow skill. Use this skill when the user needs Automate Postmark email delivery tasks via Rube MCP (Composio): send templated emails, manage templates, monitor delivery stats and bounces. Always search tools first for current schemas and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
git clone https://github.com/diegosouzapw/awesome-omni-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/postmark-automation" ~/.claude/skills/diegosouzapw-awesome-omni-skills-postmark-automation && rm -rf "$T"
skills/postmark-automation/SKILL.mdPostmark Automation via Rube MCP
Overview
This public intake copy packages
plugins/antigravity-awesome-skills-claude/skills/postmark-automation from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses
metadata.json plus ORIGIN.md as the provenance anchor for review.
Postmark Automation via Rube MCP Automate Postmark transactional email operations through Composio's Postmark toolkit via Rube MCP.
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- This skill is applicable to execute the workflow or actions described in the overview.
- Use when the request clearly matches the imported source intent: Automate Postmark email delivery tasks via Rube MCP (Composio): send templated emails, manage templates, monitor delivery stats and bounces. Always search tools first for current schemas.
- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.
- Use when provenance needs to stay visible in the answer, PR, or review packet.
- Use when copied upstream references, examples, or scripts materially improve the answer.
- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.
Operating Table
| Situation | Start here | Why it matters |
|---|---|---|
| First-time use | | Confirms repository, branch, commit, and imported path before touching the copied workflow |
| Provenance review | | Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution | | Starts with the smallest copied file that materially changes execution |
| Supporting context | | Adds the next most relevant copied source file without loading the entire package |
| Handoff decision | | Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
- Call RUBEMANAGECONNECTIONS with toolkit postmark
- If connection is not ACTIVE, follow the returned auth link to complete Postmark authentication
- Confirm connection status shows ACTIVE before running any workflows
- POSTMARKLISTTEMPLATES - Find available templates and their IDs [Prerequisite]
- POSTMARKVALIDATETEMPLATE - Validate template with model data before sending [Optional]
- POSTMARKSENDBATCHWITHTEMPLATES - Send batch emails using a template [Required]
Imported Workflow Notes
Imported: Setup
Get Rube MCP: Add
https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONSpostmark - If connection is not ACTIVE, follow the returned auth link to complete Postmark authentication
- Confirm connection status shows ACTIVE before running any workflows
Imported: Core Workflows
1. Send Templated Batch Emails
When to use: User wants to send templated emails to multiple recipients in one call
Tool sequence:
- Find available templates and their IDs [Prerequisite]POSTMARK_LIST_TEMPLATES
- Validate template with model data before sending [Optional]POSTMARK_VALIDATE_TEMPLATE
- Send batch emails using a template [Required]POSTMARK_SEND_BATCH_WITH_TEMPLATES
Key parameters:
orTemplateId
: Identifier for the template to useTemplateAlias
: Array of message objects withMessages
,From
,ToTemplateModel
: Key-value pairs matching template variablesTemplateModel
Pitfalls:
- Maximum 500 messages per batch call
- Either
orTemplateId
is required, not bothTemplateAlias
keys must match template variable names exactly (case-sensitive)TemplateModel- Sender address must be a verified Sender Signature or from a verified domain
2. Manage Email Templates
When to use: User wants to create, edit, or inspect email templates
Tool sequence:
- List all templates with IDs and names [Required]POSTMARK_LIST_TEMPLATES
- Get full template details including HTML/text body [Optional]POSTMARK_GET_TEMPLATE
- Update template content or settings [Optional]POSTMARK_EDIT_TEMPLATE
- Test template rendering with sample data [Optional]POSTMARK_VALIDATE_TEMPLATE
Key parameters:
: Numeric template ID for GET/EDIT operationsTemplateId
: Template display nameName
: Email subject line (supports template variables)Subject
: HTML content of the templateHtmlBody
: Plain text fallback contentTextBody
: 'Standard' or 'Layout'TemplateType
Pitfalls:
- Template IDs are numeric integers, not strings
- Editing a template replaces the entire content; include all fields you want to keep
- Layout templates wrap Standard templates; changing a layout affects all linked templates
- Validate before sending to catch missing variables early
3. Monitor Delivery Statistics
When to use: User wants to check email delivery health, open/click rates, or outbound overview
Tool sequence:
- Get bounce counts by type [Required]POSTMARK_GET_DELIVERY_STATS
- Get sent/opened/clicked/bounced summary [Required]POSTMARK_GET_OUTBOUND_OVERVIEW
- Get tracked email volume over time [Optional]POSTMARK_GET_TRACKED_EMAIL_COUNTS
Key parameters:
: Start date for filtering stats (YYYY-MM-DD)fromdate
: End date for filtering stats (YYYY-MM-DD)todate
: Filter stats by message tagtag
: Filter by message stream (e.g., 'outbound', 'broadcast')messagestreamid
Pitfalls:
- Date parameters use YYYY-MM-DD format without time component
- Stats are aggregated; individual message tracking requires separate API calls
defaults to all streams if not specifiedmessagestreamid
4. Manage Bounces and Complaints
When to use: User wants to review bounced emails or spam complaints
Tool sequence:
- List bounced messages with details [Required]POSTMARK_GET_BOUNCES
- List spam complaint records [Optional]POSTMARK_GET_SPAM_COMPLAINTS
- Get bounce summary counts [Optional]POSTMARK_GET_DELIVERY_STATS
Key parameters:
: Number of records to return per pagecount
: Pagination offset for resultsoffset
: Bounce type filter (e.g., 'HardBounce', 'SoftBounce', 'SpamNotification')type
/fromdate
: Date range filterstodate
: Filter by recipient email addressemailFilter
Pitfalls:
- Bounce types include: HardBounce, SoftBounce, SpamNotification, SpamComplaint, Transient, and others
- Hard bounces indicate permanent delivery failures; these addresses should be removed
- Spam complaints affect sender reputation; monitor regularly
- Pagination uses
andcount
, not page tokensoffset
5. Configure Server Settings
When to use: User wants to view or modify Postmark server configuration
Tool sequence:
- Retrieve current server settings [Required]POSTMARK_GET_SERVER
- Update server configuration [Optional]POSTMARK_EDIT_SERVER
Key parameters:
: Server display nameName
: Enable/disable SMTP API accessSmtpApiActivated
: Webhook URL for bounce notificationsBounceHookUrl
: Webhook URL for inbound email processingInboundHookUrl
: Enable/disable open trackingTrackOpens
: Link tracking mode ('None', 'HtmlAndText', 'HtmlOnly', 'TextOnly')TrackLinks
Pitfalls:
- Server edits affect all messages sent through that server
- Webhook URLs must be publicly accessible HTTPS endpoints
- Changing
affects SMTP relay access immediatelySmtpApiActivated - Track settings apply to future messages only, not retroactively
Imported: Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Postmark connection via
with toolkitRUBE_MANAGE_CONNECTIONSpostmark - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS
Examples
Example 1: Ask for the upstream workflow directly
Use @postmark-automation to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @postmark-automation against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @postmark-automation for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @postmark-automation using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.
- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.
- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.
- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.
- Treat generated examples as scaffolding; adapt them to the concrete task before execution.
- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in
plugins/antigravity-awesome-skills-claude/skills/postmark-automation, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Load only the files that materially change the answer, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated
SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better. Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
- Use when the work is better handled by that native specialization after this imported skill establishes context.@00-andruia-consultant-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@10-andruia-skill-smith-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@20-andruia-niche-intelligence-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@2d-games
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family | What it gives the reviewer | Example path |
|---|---|---|
| copied reference notes, guides, or background material from upstream | |
| worked examples or reusable prompts copied from upstream | |
| upstream helper scripts that change execution or validation | |
| routing or delegation notes that are genuinely part of the imported package | |
| supporting assets or schemas copied from the source package | |
Imported Reference Notes
Imported: Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| Send batch templated emails | POSTMARK_SEND_BATCH_WITH_TEMPLATES | Messages, TemplateId/TemplateAlias |
| List templates | POSTMARK_LIST_TEMPLATES | Count, Offset, TemplateType |
| Get template details | POSTMARK_GET_TEMPLATE | TemplateId |
| Edit template | POSTMARK_EDIT_TEMPLATE | TemplateId, Name, Subject, HtmlBody |
| Validate template | POSTMARK_VALIDATE_TEMPLATE | TemplateId, TemplateModel |
| Delivery stats | POSTMARK_GET_DELIVERY_STATS | (none or date filters) |
| Outbound overview | POSTMARK_GET_OUTBOUND_OVERVIEW | fromdate, todate, tag |
| Get bounces | POSTMARK_GET_BOUNCES | count, offset, type, emailFilter |
| Get spam complaints | POSTMARK_GET_SPAM_COMPLAINTS | count, offset, fromdate, todate |
| Tracked email counts | POSTMARK_GET_TRACKED_EMAIL_COUNTS | fromdate, todate, tag |
| Get server config | POSTMARK_GET_SERVER | (none) |
| Edit server config | POSTMARK_EDIT_SERVER | Name, TrackOpens, TrackLinks |
Imported: Common Patterns
Template Variable Resolution
1. Call POSTMARK_GET_TEMPLATE with TemplateId 2. Inspect HtmlBody/TextBody for {{variable}} placeholders 3. Build TemplateModel dict with matching keys 4. Call POSTMARK_VALIDATE_TEMPLATE to verify rendering
Pagination
- Set
for results per page (varies by endpoint)count - Use
to skip previously fetched resultsoffset - Increment offset by count each page until results returned < count
- Total records may be returned in response metadata
Imported: Known Pitfalls
Authentication:
- Postmark uses server-level API tokens, not account-level
- Each server has its own token; ensure correct server context
- Sender addresses must be verified Sender Signatures or from verified domains
Rate Limits:
- Batch send limited to 500 messages per call
- API rate limits vary by endpoint; implement backoff on 429 responses
Response Parsing:
- Response data may be nested under
ordatadata.data - Parse defensively with fallback patterns
- Template IDs are always numeric integers
Imported: Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.