โ† All skills
Tencent SkillHub ยท Developer Tools

Horse Sticker Maker

Create and deploy a festive Chinese New Year (Year of the Horse 2026) animated GIF sticker maker web app. Use when the user wants to generate custom horse-th...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Create and deploy a festive Chinese New Year (Year of the Horse 2026) animated GIF sticker maker web app. Use when the user wants to generate custom horse-th...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, assets/horse-blessing-template/app/api/generate/route.ts, assets/horse-blessing-template/app/api/sticker/route.ts, assets/horse-blessing-template/app/globals.css, assets/horse-blessing-template/app/layout.tsx, assets/horse-blessing-template/app/page.tsx

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Horse Sticker Maker

Generate a web app that creates custom animated GIF stickers for Chinese New Year (Year of the Horse 2026).

What It Does

Users input custom blessing text (1-8 chars) Client-side Canvas renders a 240px animated GIF with: Red gradient background with gold sparkle particles 6-frame gold horse galloping animation (transparent PNG) User's custom text in gold calligraphy at top "็ซ‹้ฉฌๅŠ ่–ช" bottom text with color-cycling effect Output is WeChat sticker compatible (โ‰ค500KB, 240px)

Quick Start

Copy the template project: cp -r <skill_dir>/assets/horse-blessing-template ./horse-blessing cd horse-blessing npm install Run locally: npm run dev # Open http://localhost:3000/sticker Deploy to Vercel: vercel --prod --yes

Project Structure

horse-blessing/ โ”œโ”€โ”€ app/ โ”‚ โ”œโ”€โ”€ page.tsx # Main page (AI-generated blessing with poem) โ”‚ โ”œโ”€โ”€ sticker/page.tsx # Sticker maker (Canvas GIF generator) โ”‚ โ”œโ”€โ”€ api/generate/ # AI poem + image generation API โ”‚ โ”œโ”€โ”€ api/sticker/ # Sticker API โ”‚ โ””โ”€โ”€ layout.tsx # Root layout (red theme) โ”œโ”€โ”€ public/ โ”‚ โ”œโ”€โ”€ horse-frame-[1-6].png # 6-frame transparent gold horse โ”‚ โ”œโ”€โ”€ horse-transparent.png # Static horse fallback โ”‚ โ””โ”€โ”€ gif.worker.js # gif.js web worker โ”œโ”€โ”€ package.json โ””โ”€โ”€ tailwind.config.ts

GIF Generation (Client-Side)

Uses gif.js loaded via CDN (Script from next/script) 18 frames (6 horse frames ร— 3 cycles), 85ms delay per frame Canvas size: 240ร—240px for WeChat sticker compatibility Horse frames loaded as Image elements, drawn via drawImage

Horse Frame Assets

6 transparent PNG frames in public/horse-frame-[1-6].png Generated via AI image model, backgrounds removed with sharp Removal technique: pixels with R>210, G>210, B>210 โ†’ alpha=0

Customization Points

Bottom text: Edit '็ซ‹้ฉฌๅŠ ่–ช' in sticker/page.tsx GIF size: Change const size = 240 (keep โ‰ค240 for WeChat) Frame count: Change const frames = 18 Horse images: Replace public/horse-frame-*.png Background: Modify the radial gradient colors Sparkle count: Adjust sparkle array size (default 30)

WeChat Sticker Compatibility

Max 500KB file size Max 240px recommended dimension GIF format required Save โ†’ WeChat chat โ†’ emoji panel โ†’ "+" โ†’ select from gallery

Dependencies

{ "next": "^14.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "sharp": "latest", "gif-encoder-2": "^1.0.5", "html2canvas-pro": "^1.6.7" } External CDN: gif.js@0.2.0 (loaded at runtime for client-side GIF encoding)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Assets2 Scripts1 Docs
  • SKILL.md Primary doc
  • assets/horse-blessing-template/app/api/generate/route.ts Scripts
  • assets/horse-blessing-template/app/api/sticker/route.ts Scripts
  • assets/horse-blessing-template/app/globals.css Assets
  • assets/horse-blessing-template/app/layout.tsx Assets
  • assets/horse-blessing-template/app/page.tsx Assets