emoji-reaction-automator

TotalClaw 作者 totalclaw

根据情绪分析(积极、消极、有趣、中性)建议短信的表情符号反应。用于增加对话中的社交参与度和人性化。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~wanng-ide-emoji-reaction-automator
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~wanng-ide-emoji-reaction-automator/file -o wanng-ide-emoji-reaction-automator.md
## 概述(中文)

根据情绪分析(积极、消极、有趣、中性)建议短信的表情符号反应。用于增加对话中的社交参与度和人性化。

## 原文

## Usage

```javascript
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.