← Back to Skills Marketplace
442
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install emotionwise
Description
Analyze text for emotions and sarcasm using the EmotionWise API (28 labels, EN/ES).
README (SKILL.md)
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": "\x3Ctext>" }
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.
Usage Guidance
This skill appears to do what it says: it sends user-supplied text to EmotionWise's API and returns emotion/sarcasm results. Before installing: (1) confirm you trust the external service (https://emotionwise.ai) and its privacy policy, because any text you analyze (including sensitive info) will be transmitted offsite; (2) protect the EMOTIONWISE_API_KEY stored in your OpenClaw config (treat it like a secret); (3) consider using a scoped or revocable API key and test with non-sensitive data first; (4) verify the repo/homepage if you need provenance (README references a GitHub repo but the skill source is marked unknown). If you need stricter privacy, do not install or avoid sending PII to the skill.
Capability Analysis
Type: OpenClaw Skill
Name: emotionwise
Version: 0.1.2
The skill bundle is benign. All files consistently describe a skill for emotion and sarcasm detection using the EmotionWise API. The `SKILL.md` provides clear, focused instructions for the AI agent to interact with `https://api.emotionwise.ai` and handle responses/errors, without any prompt injection attempts or instructions for unauthorized actions. The `README.md` contains standard installation and publishing commands for developers, which are not intended for the AI agent's runtime execution and are not inherently malicious. There is no evidence of data exfiltration, malicious execution, persistence, or obfuscation.
Capability Assessment
Purpose & Capability
Name/description, SKILL.md, README, and examples all consistently describe calling EmotionWise's emotion-detector endpoint. The only required credential is EMOTIONWISE_API_KEY, which is appropriate for this purpose.
Instruction Scope
Runtime instructions are focused and only instruct the agent to POST the provided text to https://api.emotionwise.ai with the API key header. They do not instruct reading other files or unrelated environment variables. Important privacy note: whatever text the user supplies will be transmitted to the external service (no built-in redaction or privacy guidance in SKILL.md).
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes on-disk execution risk because nothing is downloaded or executed by the install process.
Credentials
Only a single credential (EMOTIONWISE_API_KEY) is required and it's the declared primary credential. The README instructs storing it in the OpenClaw config (~/.openclaw/openclaw.json), which is expected but means the key will be present on disk and needs to be protected.
Persistence & Privilege
Skill is not forced-always and does not request elevated platform privileges. It only requires enabling in the user's OpenClaw config to provide its API key — standard behavior for an API-based skill.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install emotionwise - After installation, invoke the skill by name or use
/emotionwise - Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.2
Compatibility fixes and packaging cleanup
v0.1.1
Initial public release
Metadata
Frequently Asked Questions
What is Openclaw?
Analyze text for emotions and sarcasm using the EmotionWise API (28 labels, EN/ES). It is an AI Agent Skill for Claude Code / OpenClaw, with 442 downloads so far.
How do I install Openclaw?
Run "/install emotionwise" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openclaw free?
Yes, Openclaw is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Openclaw support?
Openclaw is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openclaw?
It is built and maintained by Daniel (@timexicali); the current version is v0.1.2.
More Skills