Install
openclaw skills install emotionwiseAnalyze text for emotions and sarcasm using the EmotionWise API (28 labels, EN/ES).
openclaw skills install emotionwiseUse this skill when the user asks to:
Endpoint:
POST https://api.emotionwise.ai/api/v1/tools/emotion-detector
Headers:
X-API-Key: $EMOTIONWISE_API_KEYContent-Type: application/jsonBody:
{ "message": "<text>" }
{
"detected_emotions": ["joy", "admiration"],
"confidence_scores": { "joy": 0.87, "admiration": 0.72 },
"sarcasm_detected": false,
"sarcasm_score": 0.04
}
Return:
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.