# Animal Messenger

> Animal Messenger is for delivery paths that are asynchronous, delayed, or a little scruffy. It fits webhook queues, batch email, pub/sub topics, and other channels where you launch the payload and trust the route more than the timing. The real craft is designing for eventual arrival without panic.

- Skill: `hmbown/animal-messenger` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hmbown/animal-messenger`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hmbown/animal-messenger/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: Hmbown (https://skillmd.com/u/hmbown)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/hmbown/animal-messenger

---


# Animal Messenger

Release the packet and trust the trail, not the clock.

## Overview

Animal Messenger is interpreted here as a metaphorical spell with a shipping-now execution model.

Canonical source: Animal Messenger (spell)

Provider target: OpenClaw

## When To Use

- The message is moving through a queue, bus, webhook chain, or other non-immediate route.
- You need fire-and-forget behavior with retries instead of synchronous confirmation.
- The receiver can tolerate delay but not duplication, corruption, or ambiguity.

## Workflow

1. Shape the payload for the carrier: compact, authenticated, and safe to retry.
2. Define delivery assumptions such as idempotency, retry policy, and dead-letter handling.
3. Return the message contract plus the signs that it arrived, stalled, or was mishandled.

## Deliverables

- An async-safe payload or message template.
- Retry and idempotency guidance for the chosen channel.
- A failure map covering delay, duplication, and silent loss.

## Guardrails

- Do not design async delivery as if it were instant or guaranteed.
- Use authentication, signatures, or integrity checks when the channel crosses trust boundaries.

## Default Invocation

Use $animal-messenger to package this message for an async delivery path and tell me how to make it reliable enough.


