← 返回
未分类 中文

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,...
通过GIPHY API搜索GIF、贴纸、表情包和热门媒体,并上传素材。当用户需要搜索GIF和贴纸时使用此技能。
hith3sh hith3sh 来源
未分类 clawhub v1.0.2 2 版本 99860.5 Key: 无需
★ 6
Stars
📥 1,312
下载
💾 1
安装
2
版本
#latest

概述

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
:---::---::---:
!Install!PairApp-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:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. 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

版本历史

共 2 个版本

  • v1.0.2 当前
    2026-06-09 16:25
  • v0.1.0
    2026-05-26 18:19 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

design-media

UI/UX Pro Max

xobi667
提供 UI/UX 设计智能与实现指导,帮助打造精美界面。适用于 UI 设计、UX 流程、信息架构、视觉风格、设计系统/标记、组件规格、文案/微文案、无障碍及前端 UI(HTML/CSS/JS、React、Next.js、Vue、Svelte
★ 216 📥 46,999
design-media

Nano Banana Pro

steipete
使用 Nano Banana Pro (Gemini 3 Pro Image) 生成或编辑图像。支持文生图、图生图及 1K/2K/4K 分辨率,适用于图像创建、修改及编辑请求,使用 --input-image 指定输入图像。
★ 427 📥 116,542
office-efficiency

Microsoft Excel

hith3sh
通过托管 OAuth 集成 Microsoft Excel API,实现对 OneDrive 中 Excel 工作簿、工作表、区域、表格和图表的读写。使用此技能...
★ 6 📥 1,942