OpenClaw ยท Skill
Emoji Reaction Automator
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.
Install
Start with the primary install command. Alternate entrypoints are included below for ClawHub and OpenClaw CLI users.
Primary command
clawhub install wanng-ide/emoji-reaction-automatorClawHub installer
npx clawhub@latest install wanng-ide/emoji-reaction-automatorOpenClaw CLI
openclaw skills install wanng-ide/emoji-reaction-automatorDirect OpenClaw install
openclaw install wanng-ide/emoji-reaction-automatorWhat this skill does
This is a lightweight rule-based sentiment mapper designed for quick reactions without heavy ML dependencies.
Why it matters
Delivers instant emoji suggestions without an ML model, API key, or network call.
Typical use cases
- Reacting to teammate messages in a group chat
- Suggesting emoji responses for customer support tickets
- Auto-tagging user feedback by emotional tone
- Adding emoji reactions in comment moderation workflows
- Making chatbot replies feel more conversational with contextual reactions
Source instructions
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.