Emoji Reaction Automator

Suggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-likeness in conversations.

Audits

Pass

Install

openclaw skills install 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.