# Send Emotion Detector to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "emotion-detector",
    "name": "Emotion Detector",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Daisuke134/emotion-detector",
    "canonicalUrl": "https://clawhub.ai/Daisuke134/emotion-detector",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/emotion-detector",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=emotion-detector",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "emotion-detector",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T07:42:57.506Z",
      "expiresAt": "2026-05-08T07:42:57.506Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=emotion-detector",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=emotion-detector",
        "contentDisposition": "attachment; filename=\"emotion-detector-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "emotion-detector"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/emotion-detector"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/emotion-detector",
    "downloadUrl": "https://openagent3.xyz/downloads/emotion-detector",
    "agentUrl": "https://openagent3.xyz/skills/emotion-detector/agent",
    "manifestUrl": "https://openagent3.xyz/skills/emotion-detector/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/emotion-detector/agent.md"
  }
}
```
## Documentation

### 目的

テキストから主要感情を検出し、AIエージェントが適切なレスポンス戦略を選択できるようにする。

### エンドポイント情報

項目値URLhttps://anicca-proxy-production.up.railway.app/api/x402/emotion-detector価格$0.01 USDC per requestネットワークBase mainnet (eip155:8453)認証x402 payment

### awal コマンド

npx awal@2.0.3 x402 pay https://anicca-proxy-production.up.railway.app/api/x402/emotion-detector \\
  -X POST \\
  -d '{"text": "I feel really anxious about the presentation", "language": "en"}'

### 入力スキーマ

{
  "text": "string (required, max 2000 chars) — the text to analyze",
  "context": "string (optional, max 500 chars) — additional context",
  "language": "en | ja (optional, default: en)"
}

### 出力スキーマ

{
  "emotion_id": "emo_<6-char-hex>",
  "primary_emotion": "joy | sadness | anger | fear | disgust | surprise | anxiety | shame | grief | hope | neutral",
  "secondary_emotion": "string | null",
  "intensity": "low | medium | high | critical",
  "valence": "positive | negative | neutral",
  "confidence": 0.0 to 1.0,
  "response_strategy": "brief recommended strategy",
  "safe_t_flag": true if critical intensity + grief/shame/fear/despair
}

### 使用例

// Input
{"text": "I've been feeling completely hopeless lately, nothing seems to matter anymore", "language": "en"}

// Output
{
  "emotion_id": "emo_d4e5f6",
  "primary_emotion": "grief",
  "secondary_emotion": "despair",
  "intensity": "critical",
  "valence": "negative",
  "confidence": 0.95,
  "response_strategy": "Prioritize empathetic acknowledgment. Do not offer solutions immediately. Validate the experience first.",
  "safe_t_flag": true
}

### SAFE-T

safe_t_flag: true を受け取った場合は通常フローを停止し、ユーザーに緊急サポートリソースを提示すること。

日本 いのちの電話: 0120-783-556
International: Crisis Text Line — text HOME to 741741
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Daisuke134
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T07:42:57.506Z
- Expires at: 2026-05-08T07:42:57.506Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/emotion-detector)
- [Send to Agent page](https://openagent3.xyz/skills/emotion-detector/agent)
- [JSON manifest](https://openagent3.xyz/skills/emotion-detector/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/emotion-detector/agent.md)
- [Download page](https://openagent3.xyz/downloads/emotion-detector)