🧠Emotionwise OpenClaw Plugin & Skill | ClawHub
Looking to integrate Emotionwise into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate image & video generation tasks instantly, without having to write custom tools from scratch.
What this skill does
Analyze text for emotions and sarcasm using the EmotionWise API (28 labels, EN/ES).
Install
openclaw skills install @timexicali/emotionwisenpx clawhub@latest install emotionwiseFull SKILL.md
Open original| name | description | user invocable |
|---|---|---|
| emotionwise | Analyze text for emotions and sarcasm using the EmotionWise API (28 labels, EN/ES). | true |
SKILL.md content below is scrollable.
EmotionWise Skill
Use this skill when the user asks to:
- detect emotions in text
- detect sarcasm in text
- summarize emotional trends across multiple messages
API
Endpoint:
POST https://api.emotionwise.ai/api/v1/tools/emotion-detector
Headers:
X-API-Key: $EMOTIONWISE_API_KEYContent-Type: application/json
Body:
{ "message": "<text>" }
Response (expected fields)
{
"detected_emotions": ["joy", "admiration"],
"confidence_scores": { "joy": 0.87, "admiration": 0.72 },
"sarcasm_detected": false,
"sarcasm_score": 0.04
}
Output format
Return:
- top emotions with confidence
- sarcasm flag + score
- short practical interpretation for developer use
Error handling
401/403: Tell the user API key is missing/invalid and suggest reconfiguration.429: Tell the user quota/rate limit was hit and suggest retry later.5xx: Tell the user the API is temporarily unavailable and suggest retry.