跳至主要内容
小龙虾小龙虾AI
🤖

GIPHY

Search GIFs, stickers, emojis, trending media, and upload assets to GIPHY via the GIPHY API. Use this skill when users want to search for GIFs and stickers,...

下载2.1k
星标32
版本1.0.2
营销推广
安全通过

技能说明


name: giphy-media description: Search GIFs, stickers, emojis, trending media, and upload assets to GIPHY via the GIPHY API. Use this skill when users want to search for GIFs and stickers, browse trending content, translate phrases into matching media, fetch specific media by ID, or upload GIF or video assets after confirmation.

GIPHY

GIPHY

Access GIPHY via the GIPHY API with API key authentication. Search GIFs, stickers, emojis, trending media, and upload assets.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure GIPHY API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect GIPHY
InstallPairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect GIPHY

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   GIPHY API      │
│   (User Chat)   │     │   (OAuth)    │     │   (REST)         │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin    │                       │
         │  2. Pair Device       │                       │
         │  3. Connect GIPHY     │                       │
         │                       │  4. Secure Token      │
         │                       │  5. Proxy Requests    │
         │                       │                       │
         ▼                       ▼                       ▼
   ┌──────────┐           ┌──────────┐           ┌──────────┐
   │  SKILL   │           │ Dashboard│           │ GIPHY    │
   │  File    │           │ Auth     │           │ Search   │
   └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for GIPHY again."

Quick Start

# Search GIFs
clawlink_call_tool --tool "giphy_search_gifs" --params '{"query": "laughing"}'

# Get trending GIFs
clawlink_call_tool --tool "giphy_trending_gifs" --params '{}'

# Translate phrase to GIF
clawlink_call_tool --tool "giphy_translate" --params '{"phrase": "thumbs up"}'

Authentication

All GIPHY tool calls are authenticated automatically by ClawLink using the user's connected GIPHY account.

No API key is required in chat. ClawLink stores credentials securely and injects them into every GIPHY API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=giphy and connect GIPHY.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for giphy in the list.

Verify Connection

clawlink_list_tools --integration giphy

Response: Returns the live tool catalog for GIPHY.

Reconnect

If GIPHY tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=giphy
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration giphy

Security & Permissions

  • Access is scoped to GIPHY content searchable and uploadable by the connected account.
  • All write operations require explicit user confirmation. Before executing any create or upload, confirm the target resource and intended effect with the user.
  • Uploading copyrighted material may violate GIPHY terms of service.

Tool Reference

Search & Discovery

ToolDescriptionMode
giphy_search_gifsSearch for GIFs by keyword or phraseRead
giphy_search_stickersSearch for stickers by keyword or phraseRead
giphy_search_emojiSearch for emoji media by keywordRead
giphy_search_channelsSearch for GIPHY channelsRead
giphy_search_tagsSearch for trending tagsRead

Trending

ToolDescriptionMode
giphy_trending_gifsGet trending GIFsRead
giphy_trending_stickersGet trending stickersRead
giphy_trending_searchesGet trending search termsRead

Translate

ToolDescriptionMode
giphy_translateTranslate a phrase into a matching GIF or stickerRead

Media Retrieval

ToolDescriptionMode
giphy_get_gif_by_idFetch a specific GIF by its GIPHY IDRead
giphy_get_sticker_by_idFetch a specific sticker by its GIPHY IDRead

Upload

ToolDescriptionMode
giphy_upload_gifUpload a GIF or video asset to GIPHYWrite

Code Examples

Search for reaction GIFs

clawlink_call_tool --tool "giphy_search_gifs" \
  --params '{
    "query": "thumbs up",
    "limit": 10,
    "rating": "pg-13"
  }'

Get trending stickers

clawlink_call_tool --tool "giphy_trending_stickers" \
  --params '{
    "limit": 20
  }'

Translate a phrase to a GIF

clawlink_call_tool --tool "giphy_translate" \
  --params '{
    "phrase": "facepalm",
    "rating": "pg-13"
  }'

Get a specific GIF by ID

clawlink_call_tool --tool "giphy_get_gif_by_id" \
  --params '{
    "gif_id": "abc123xyz"
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm GIPHY is connected.
  2. Call clawlink_list_tools --integration giphy to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration giphy.
  5. If no GIPHY tools appear, direct the user to https://claw-link.dev/dashboard?add=giphy.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  search → trending → translate → get by ID                  │
│                                                             │
│  Example: Search GIFs → Display results → User picks        │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  describe → preview → confirm → upload                      │
│                                                             │
│  Example: Preview upload → User confirms → Execute upload   │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer search, trending, and content lookup flows before uploads.
  4. For uploads or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • GIPHY content is organized into GIFs, stickers, and emoji categories — use the appropriate tool for each type.
  • Content ratings (g, pg, pg-13, r) filter content appropriateness. Match the rating to your use case.
  • Uploaded media becomes part of the GIPHY library and may be searchable by other users.
  • Trending content updates regularly; results may vary between calls.

Error Handling

Status / ErrorMeaning
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration giphy.
Missing connectionGIPHY is not connected. Direct the user to https://claw-link.dev/dashboard?add=giphy.
404 Not FoundGIF or sticker ID does not exist. Verify the ID.
Write rejectedUser did not confirm an upload action. Always confirm before uploading.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:
    openclaw plugins list
    
  2. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  3. If a fresh chat does not help, run:
    openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
    openclaw gateway restart
    
  4. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly giphy.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

Related Skills

  • Slack — For posting GIFs in channels
  • Discord — For sharing media in servers

Powered by ClawLink — an integration hub for OpenClaw

ClawLink Logo

如何使用「GIPHY」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「GIPHY技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能