Install
openclaw skills install emoji-reaction-automatorSuggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-likeness in conversations.
openclaw skills install emoji-reaction-automatorconst { suggestReaction } = require('./index.js');
const text = "This is awesome! Great job.";
const suggestion = suggestReaction(text);
// Returns: { category: "positive", emoji: "👍", confidence: 0.9 }
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.