Install
openclaw skills install horse-sticker-makerCreate 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-themed blessing stickers, deploy a sticker generator H5 page, or create WeChat-compatible animated GIF stickers with gold horse animation on red background. Supports custom text input, 6-frame gold horse galloping animation, Canvas-based client-side GIF rendering via gif.js, and Vercel deployment.
openclaw skills install horse-sticker-makerGenerate a web app that creates custom animated GIF stickers for Chinese New Year (Year of the Horse 2026).
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
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.js loaded via CDN (Script from next/script)Image elements, drawn via drawImagepublic/horse-frame-[1-6].pngsharp'立马加薪' in sticker/page.tsxconst size = 240 (keep ≤240 for WeChat)const frames = 18public/horse-frame-*.png{
"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)