emoji-reaction-automator
v1.0.0Suggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-likeness in conversations.
Installation
Please help me install the skill `emoji-reaction-automator` from SkillHub official store.
npx skills add wanng-ide/emoji-reaction-automator
Usage
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.