π¦ ClawHub
Emoji Reaction Automator
by @wanng-ide
Suggests emoji reactions for text messages based on sentiment analysis (positive, negative, funny, neutral). Use to increase social engagement and human-like...
TERMINAL
clawhub install emoji-reaction-automatorπ About This Skill
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
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
Notes
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.
π‘ Examples
const { suggestReaction } = require('./index.js');const text = "This is awesome! Great job.";
const suggestion = suggestReaction(text);
// Returns: { category: "positive", emoji: "π", confidence: 0.9 }
π Tips & Best Practices
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.