Suggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-likeness in conversations.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill emoji-reaction-automator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Emoji Reaction Automator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-emoji-reaction-automator)More formats (shields.io, HTML) on the badges page.
---
name: emoji-reaction-automator
description: Suggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-likeness in conversations.
---
## Usage
```javascript
const { suggestReaction } = require('./index.js');
const text = "This is awesome! Great job.";
const suggestion = suggestReaction(text);
// Returns: { category: "positive", emoji: "👍", confidence: 0.9 }
```
## Supported Categories
- **Positive:** 👍, ❤️, 🙌, ✅
- **Negative:** 👎, 💔, ❌, ⚠️
- **Funny:** 😂, 🤣, 💀
- **Curious:** 🤔, 🧐, ❓
- **Excited:** 🎉, 🚀, 🔥
- **Neutral:** 👀, 🆗
## Notes
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.