Emoji reactions and thinking indicators for XMTP agents. Use when adding reactions to messages or showing processing state with thinking emoji. Triggers on emoji reactions, thinking indicator, or message acknowledgment.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add xmtplabs/xmtp-agent-examples --skill sending-reactions --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sending Reactions?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/xmtplabs-sending-reactions)More formats (shields.io, HTML) on the badges page.
---
name: sending-reactions
description: Emoji reactions and thinking indicators for XMTP agents. Use when adding reactions to messages or showing processing state with thinking emoji. Triggers on emoji reactions, thinking indicator, or message acknowledgment.
license: MIT
metadata:
author: xmtp
version: "1.0.0"
---
# XMTP reactions
Send and receive emoji reactions, including thinking indicator patterns.
## When to apply
Reference these guidelines when:
- Reacting to user messages with emoji
- Showing processing/thinking state
- Receiving and handling reactions
- Implementing acknowledgment patterns
## Rule categories by priority
| Priority | Category | Impact | Prefix |
|----------|----------|--------|--------|
| 1 | Send | HIGH | `send-` |
| 2 | Receive | HIGH | `receive-` |
| 3 | Patterns | MEDIUM | `patterns-` |
## Quick reference
### Send (HIGH)
- `send-reaction` - Send emoji reactions to messages
### Receive (HIGH)
- `receive-reaction` - Handle incoming reactions
### Patterns (MEDIUM)
- `patterns-thinking` - Thinking indicator pattern
## Quick start
```typescript
// Send a reaction
await ctx.conversation.sendReaction({
reference: ctx.message.id,
action: "added",
content: "👍",
schema: "unicode",
});
// Thinking indicator pattern
await ctx.conversation.sendReaction({
reference: ctx.message.id,
action: "added",
content: "⏳",
schema: "unicode",
});
// Process...
await ctx.conversation.sendReaction({
reference: ctx.message.id,
action: "removed",
content: "⏳",
schema: "unicode",
});
```
## How to use
Read individual rule files for detailed explanations:
```
rules/send-reaction.md
rules/receive-reaction.md
rules/patterns-thinking.md
```
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!