🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ 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...

Versionv1.0.0
Downloads1,139
Installs3
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

  • Positive: πŸ‘, ❀️, πŸ™Œ, βœ…
  • Negative: πŸ‘Ž, πŸ’”, ❌, ⚠️
  • Funny: πŸ˜‚, 🀣, πŸ’€
  • Curious: πŸ€”, 🧐, ❓
  • Excited: πŸŽ‰, πŸš€, πŸ”₯
  • Neutral: πŸ‘€, πŸ†—
  • 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.