# Send Giphy 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": "giphy",
    "name": "Giphy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/minbang930/giphy",
    "canonicalUrl": "https://clawhub.ai/minbang930/giphy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/giphy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=giphy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "giphy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T15:26:41.215Z",
      "expiresAt": "2026-05-10T15:26:41.215Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=giphy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=giphy",
        "contentDisposition": "attachment; filename=\"giphy-1.0.7.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "giphy"
      },
      "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/giphy"
    },
    "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/giphy",
    "downloadUrl": "https://openagent3.xyz/downloads/giphy",
    "agentUrl": "https://openagent3.xyz/skills/giphy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/giphy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/giphy/agent.md"
  }
}
```
## Documentation

### Giphy GIF Search

Find a relevant GIF from Giphy and send it naturally in Discord.

### Behavior Rules

Send GIFs when explicitly requested.
Also allow proactive GIFs (without explicit request) when the moment clearly fits: celebration, shared humor, or strong emotional beats.
Keep proactive usage occasional (at most one GIF for a moment, avoid back-to-back GIF-only replies).
Prefer text-only in serious or information-dense conversation.
Keep results safe-for-work (rating=g).

### API Key (Easy Setup)

This skill reads only one variable: GIPHY_API_KEY.

### Option A: Temporary (current shell session)

export GIPHY_API_KEY="your-api-key"

### Option B: Persistent for OpenClaw (recommended)

Add to ~/.openclaw/.env:

GIPHY_API_KEY=your-api-key

Then restart OpenClaw so the environment is reloaded.

### Validation

If GIPHY_API_KEY is present, the skill works.
If missing, ask the user to set it and retry.

### Workflow

Build a Giphy Search API URL with user intent as query.
URL-encode the query text.
Request one result from Giphy.
Extract the first GIF page URL from data[0].url.
Send that URL to Discord.

### API Request Template

Use this endpoint shape:

https://api.giphy.com/v1/gifs/search?api_key=<KEY>&q=<ENCODED_QUERY>&limit=1&rating=g&lang=en

### Output Rule

If a GIF URL is found: send only the URL (Discord auto-embeds).
If no result is found: send a short fallback text and ask for a better keyword.

### Good Query Examples

happy dance
facepalm reaction
mind blown
awkward silence

### Fallback Message

"I couldn’t find a GIF with the vibe you’re looking for. Could you give me a bit more specific keywords?"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: minbang930
- Version: 1.0.7
## 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-03T15:26:41.215Z
- Expires at: 2026-05-10T15:26:41.215Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/giphy)
- [Send to Agent page](https://openagent3.xyz/skills/giphy/agent)
- [JSON manifest](https://openagent3.xyz/skills/giphy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/giphy/agent.md)
- [Download page](https://openagent3.xyz/downloads/giphy)